x-bug-triage-plugin
v0.3.0Closed-loop bug triage: X complaints → clusters → repo evidence → owner routing → terminal review → filed issues
by Jeremy LongshoreMIT2.6kupdated 10 hours ago
Source
git clone https://github.com/jeremylongshore/claude-code-plugins-plus-skillsClone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/mcp/x-bug-triage/ inside the repository.
Layout
├── .claude-plugin/plugin.json├── skills/bug-clustering/SKILL.md├── skills/owner-routing/SKILL.md├── skills/repo-scanning/SKILL.md├── skills/triage-display/SKILL.md├── skills/x-bug-triage/SKILL.md└── .mcp.json
Skills5
Internal process for the bug-clusterer agent. Defines the step-by-step procedure for parsing, classifying, redacting, scoring, and clustering bug candidates from raw X/Twitter posts. Not user-invocable — loaded by the bug-clusterer agent through its skills frontmatter.
Internal process for the owner-router agent. Defines the step-by-step procedure for determining likely bug owners using strict 6-level routing precedence with staleness detection. Not user-invocable — loaded by the owner-router agent through its skills frontmatter.
Internal process for the repo-scanner agent. Defines the step-by-step procedure for scanning GitHub repos for evidence that supports or explains bug clusters. Not user-invocable — loaded by the repo-scanner agent through its skills frontmatter.
Internal process for the triage-summarizer agent. Defines the step-by-step procedure for formatting triage results as terminal markdown and parsing review commands. Not user-invocable — loaded by the triage-summarizer agent through its skills frontmatter.
Analyzes public X/Twitter complaints to detect, cluster, and triage bugs with repo evidence and owner routing. Use when monitoring product health from social signals. Trigger with "/x-bug-triage" or "triage X bugs for @account". Make sure to use this skill whenever triaging bugs from X/Twitter mentions.
MCP servers1
- command
- bun
- args
- run --cwd ${CLAUDE_PLUGIN_ROOT}/mcp/triage-server --silent start
MCP configuration uses runtime-provided plugin path placeholders such as ${PLUGIN_ROOT} or ${CLAUDE_PLUGIN_ROOT}. Review the manifest for the runtime-specific expansion rules.
Manifests1
{
"name": "x-bug-triage-plugin",
"version": "0.3.0",
"description": "Closed-loop bug triage: X complaints → clusters → repo evidence → owner routing → terminal review → filed issues",
"author": {
"name": "Jeremy Longshore",
"email": "jeremy@intentsolutions.io"
},
"repository": "https://github.com/jeremylongshore/x-bug-triage-plugin",
"homepage": "https://github.com/jeremylongshore/x-bug-triage-plugin",
"license": "MIT",
"keywords": [
"mcp",
"triage",
"x-api",
"bug-tracking",
"clustering"
],
"hooks": "./hooks/hooks.json"
}