Getting it into your agent
This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.
/plugin marketplace add YoungjaeDev/my-claude-plugins/plugin install devWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/youngjaedev/my-claude-plugins/decompose-issue)<a href="https://agentmods.dev/skills/youngjaedev/my-claude-plugins/decompose-issue"><img src="https://agentmods.dev/badge/skills/youngjaedev/my-claude-plugins/decompose-issue.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00192 | $0.03805 |
| Opus 5 | $0.00096 | $0.01903 |
| Sonnet 5 | $0.00038 | $0.00761 |
| Haiku 4.5 | $0.00019 | $0.00380 |
Grade B, and why
decompose-issue scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured today.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Reads agent configuration directoriesmediumAgent snooping
.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.
cat > .claude/state/project-tracking-${SLUG}.json << 'STATEEOF' How it starts
The opening of the file, as written. The whole thing — 326 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Decompose Work
Cross-runtime interactive input
Every confirmation below runs through a capability-aware interactive-input gate, not one hardcoded tool. Read each AskUserQuestion mention as this gate:
- Claude Code — use
AskUserQuestion. - Codex — use
request_user_inputwhen that tool is exposed. When it is not, ask ONE concise blocking question only where a wrong assumption would be costly (e.g. creating GitHub issues); otherwise proceed on a documented safe default and state the assumption.
Full policy: AGENTS.md → "Cross-runtime interactive input policy".
Break down large work items into manageable, independent issues. Follow project guidelines in @CLAUDE.md.
Workflow
- Check issue numbers: Run
gh issue listto view current issue numbers - Discover available components:
- Scan
.claude/agents/for custom agents (read YAML frontmatter) - Detect test frameworks (jest.config., pytest.ini, vitest.config., pyproject.toml, etc.)
- Scan
- Check TDD applicability (if user hasn't specified):
- Analyze work type: code implementation vs docs/infra/config
- If test framework detected + code work → Ask: "Create issues with TDD approach?"
- If no test framework → Inform: "TDD not required. (Reason: No test framework detected)"
- If non-code work (docs/infra) → Inform: "TDD not required. (Reason: Non-code work)"
- If TDD selected: Add
<!-- TDD: enabled -->marker to each issue body
- Analyze work: Understand core requirements and objectives
- Decompose work: Split major tasks into context-completable units - each issue should be completable in a single Claude session without context switching. Group related features together rather than splitting by individual functions
- Analyze dependencies: Identify prerequisite tasks
- Suggest milestone name: Propose a milestone to group decomposed tasks
- Check related PRs (optional): Run
gh pr list --state closed --limit 20for similar work references (skip if none) - Output decomposed issues: Display issues with proposed milestone name
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- today Changed · +4 lines · +63 tokens per session b5a1881ae34a
- 5d ago First seen · 322 lines · 129 tokens per session scan B bb784eca8c81
decompose-issue is a skill published in the GitHub repository YoungjaeDev/my-claude-plugins (2 stars, last pushed yesterday), licensed MIT. It adds 192 tokens to every session and 3,805 once invoked, about $0.0010 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
local-ai-agents
Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…
next-partial-prefetching-adoption
Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…
chronicle
Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…
imagegen
Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output…