From agentic-kit
Use when: /yo classifies task as FIX. Reproduces reported issue, classifies it, assesses severity, and routes to done/craft/sketch. Persists findings as data point for /propose pattern detection.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agentic-kit:diagnoseThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Receives:
Receives:
Reads:
wiki/extensions/diagnose.md for extension investigation agentsProduces:
wiki/diagnoses/<slug>.md (see references/diagnose-template.md)Confirm the issue exists. Pick the fastest path:
If cannot reproduce after 2 attempts with different approaches, state clearly and ask user for more context.
| Classification | Definition | Next action |
|---|---|---|
| Real bug | Code behaves contrary to intent | Continue to step 3 |
| Environmental | Works in code, fails in env (deps, config, OS) | State finding, ask user |
| User error | Misuse of API/feature | State correct usage, done |
| Works as designed | Behavior is intentional | Explain design rationale, done |
| Incomplete info | Cannot determine | Ask user for specifics |
Form directional hypothesis -- not committed, just a starting point.
| Severity | Definition |
|---|---|
| Blocking | Feature unusable, no workaround, data loss risk |
| Degraded | Feature partially works or has workaround |
| Cosmetic | Visual/UX issue, functionality intact |
If wiki/extensions/diagnose.md exists, dispatch investigation agents defined
there. Wait for all extension findings before proceeding — steps 6 and 7
depend on the complete picture (extension findings may change classification,
severity, or routing decision).
Gate: ARTIFACT-BEFORE-HANDOFF -- persist to disk before routing.
Write to wiki/diagnoses/<slug>.md using references/diagnose-template.md.
Slug was generated by yo. Always write, even for non-bugs -- "not a bug" is
a valuable data point.
| Condition | Route |
|---|---|
| Not a bug (env/user error/WAD) | Done -- explain to user |
| Real bug, single file, obvious fix | Craft (lightweight) |
| Real bug, std/deep complexity | Sketch (std/deep) |
Propose upgrade from lightweight to std/deep if any:
User confirms before proceeding.
Produces: wiki/diagnoses/<slug>.md
Passes to: done | craft (lightweight) | sketch (std/deep)
references/diagnose-template.md -- YAML frontmatter schema, section templateyo/references/agent-dispatch.md -- how to compose Agent tool calls (for extension dispatch)wiki/extensions/diagnose.md are optional -- skip gracefully.If you catch yourself thinking any of these, STOP and follow the diagnose procedure:
npx claudepluginhub wolfieleader/agentic-kit --plugin agentic-kitGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.