
Oh My Issues
Cluster dozens of duplicate GitHub issues into a few plan-master tickets and ship one architectural PR per root cause instead of closing symptoms one by one.
Install
npx skills add https://github.com/thedotmack/claude-mem --skill oh-my-issuesWhat is this skill?
- Groups symptom issues under shared architectural defects and one plan-master issue each
- Standardized child redirect comments plus atomic PRs that close whole clusters
- Routes new bugs into existing masters as Round N comments instead of new tracked issues
- Target end state: open issues equal open plans (1:1)
- Compounds via CI test matrices from plan docs and cheap residual triage
Adoption & trust: 414 installs on skills.sh; 81.2k GitHub stars.
Recommended Skills
Grill Memattpocock/skills
Grill With Docsmattpocock/skills
Brainstormingobra/superpowers
Lark Tasklarksuite/cli
Lark Workflow Standup Reportlarksuite/cli
Cavemanjuliusbrussee/blueprint
Journey fit
Primary fit
Backlog clustering and roadmap design are canonical project-management work while you are still building and maintaining the product. The skill turns open issues into `plans/*.md` masters and 1:1 issue-to-plan tracking, which is core PM backlog hygiene on active repos.
SKILL.md
READMESKILL.md - Oh My Issues
# oh-my-issues Turn an issue backlog into a roadmap. Issues are symptom data, not units of work — the unit of work is the architectural defect that produces them. The end state is `open issues == open plans`, 1:1. ## Core principle Stop closing issues one at a time. Group symptoms that share a single architectural fix into a cluster, give the cluster one canonical home (a plan-master issue + a `plans/0X-*.md` design doc), close every child with a standardized redirect, and ship one PR per cluster that closes all children atomically. New incoming bugs get appended to the matching master as a "Round N" comment, not opened as new tracked issues. This compounds three ways: architectural fixes retire whole symptom families, the plan's test matrix institutionalizes prevention in CI, and standardized triage makes residual inflow cheap. ## When to use - The repo has 20+ open issues and many feel like duplicates or platform-specific symptoms of the same defect. - The user asks to "triage", "consolidate", "cluster", "dedupe", "group", or "make a plan from" the issue list. - A new bug is filed and the user wants to know whether it belongs to existing work. - The user wants to ship a focused PR that resolves a cluster of related issues. ## When NOT to use - Fewer than ~15 open issues: just close them. - Issues are genuinely independent (no shared root causes): one fix per issue is correct. - The repo lacks `plans/` discipline and the user does not want to introduce one — propose first, do not impose. ## Three modes ### Mode 1: Cluster pass (initial reduction) Use when the backlog has never been consolidated. Goal: go from N issues to N_plans masters in one operation. 1. **Read everything in full.** Fetch every open issue's body *and* its comment thread — not just titles. Surface-level grouping fails without full text, and reproduction steps, linked duplicates, and diagnostic output often live in comments rather than the original body. See "GitHub CLI primitives" below for the correct paginated listing + per-issue comment fetch (a single `gh issue list` call does **not** return comment bodies). 2. **Cluster by root cause, not by surface.** The clustering question is *would one architectural change retire all of these?* — not *do these mention the same word?*. "Windows" is a surface; "spawn contract violated by host shells" is a root cause. Two issues with different surfaces can share a cluster (e.g. an env-var leak in two different code paths sharing one missing env-isolation boundary). 3. **Name each cluster as an architectural problem.** Title format: `[plan-XX] <Architectural Defect> — <one-line scope>`. Example: `[plan-02] Spawn-Contract Templating — canonical ${CLAUDE_PLUGIN_ROOT} resolution across all hosts`. The title must imply a fix, not a topic. 4. **Open one master issue per cluster** with a body that lists: the architectural defect, the children (by issue number), the fix sequence, and a required test matrix (host × IDE × shell, etc.) that prevents regression. 5. **Mirror each master as `plans/0X-<slug>.md`** in the repo. The issue is the public tracker; the doc is the design. They reference each other. 6. **Close every child** with the standardized redirect comment (see below) and state `not planned`. 7. **Verify end state:** `gh issue list --state open` returns exactly the masters and nothing else. Target shape for ~100 issues: 4–8 masters. More than 10 means you're clustering by surface; fewer than 3 means clu