Marker insights
AI assistant skills for the Marker.io MCP. Triage feedback, spot patterns, ship fixes.
npx -y skills add marker-io/mcp-skills --skill marker-insightsAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 7 stars7 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Aggregate Marker.io website feedback into recurring patterns. Use when asked to find the most common issues on a site, which pages get the most feedback, recurring content problems, or the content-vs-bug split across many Marker.io reports, and produce a prioritized brief for a website team or agency. Read-only: it analyzes and reports, it does not change issues.
SKILL.md
4.3 KB, as published. Nobody here has run it
marker-insights
Aggregate Marker.io website feedback into recurring patterns and a prioritized brief: what keeps coming back, which pages attract the most reports, and how much is content versus functional. Built for digital agencies and in-house website teams, where most feedback is content (typos, copy, images, links) and the rest is functional bugs.
When to use
"What are the most common issues on the site", "which pages get the most feedback", "are there recurring
content problems", "what's our content-vs-bug split", "feedback health of <site>". This is pattern
analysis across many reports, not per-issue triage (marker-triage) or fixing one report
(marker-bug-to-fix).
Steps
- Resolve the project(s) and read
project_getfor the site'swebsiteUrls(used to turn each issue URL into a page). For a multi-site view, repeat and pool the results. - Pull a wide window with
issues_list(paginatelimit/offsetfully; usually weeks to months). Keep fields lean:markerId,title,status,url,createdAt. Drill intoissue_get/issue_get_context/issue_get_screenshotonly on a sample per cluster. - Classify every report as content (typo, copy/wording, wrong number or fact, image/media, broken link, layout/spacing, translation) or functional (form, navigation, JavaScript error, responsive break, performance). Marker does not expose an issue's type to read, so infer it from the title, page URL, and — when unclear — the screenshot.
- Cluster within each class by page (from the URL) and by theme. Count frequency and note severity, weighing how prominent the page is (a homepage typo is low-severity but high-visibility).
- Identify: the highest-feedback pages, recurring content problems (the same fix showing up again and
again), the content-vs-functional ratio, the trend over time (bucket by
createdAt), and any single root cause behind many reports (e.g. one stale data source feeding several pages).
Output
A prioritized brief (markdown): the content-vs-functional split, a per-page hotspot list, the top recurring themes with frequency, severity, and representative examples (Marker links), trend direction, and a suggested action per theme (fix now / batch / watch). Rank by impact x frequency.
This skill is read-only. It does not change any issue.
Operating rules
This skill drives the Marker.io MCP. Read tools: projects_list, project_get, project_list_users,
list_issue_types, issues_list, issue_get, issue_get_context, issue_get_screenshot,
issue_get_attachments, issue_get_console_log, issue_get_network_request. Write tools:
issue_update_status, issue_update_assignee, issue_update_priority, issue_update_type,
comment_create.
- Resolve the project first. Call
projects_list(filter withsearchText). If more than one could match, show the candidates and ask which one. Never guess aprojectId. - Discover before you write. Status and issue-type strings are project-specific. Call
list_issue_typesandproject_getfor valid values before anyissue_update_*. Get user IDs fromproject_list_usersbefore assigning or @mentioning. - Read cheap, drill deep only when it matters. Start from
issue_get_contextsummaries; fetch a specificissue_get_console_log(logIndex)/issue_get_network_request(requestIndex)orissue_get_screenshotonly when it changes a decision. - Propose, then apply. Before any write, print a table of the planned changes (issue, field,
old to new). Apply via the
*_update_*/comment_createtools only after the user confirms. Default comment visibility toMember-onlyunless the reporter should see it. - Respect the limits.
issues_listdoes not return assignee (fetch per-issue viaissue_get). The MCP cannot create Marker.io issues. Never embed tokens; rely on the configured MCP auth.