From draft
Routes investigation, debugging, code review, coverage, and pattern-learning requests to specialized sub-skills. Entry point for 'find out', 'check', 'review', or 'investigate' prompts.
How this skill is triggered — by the user, by Claude, or both
Slash command
/draft:discoverThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
`/draft:discover` is the single front door for all investigation, auditing, pattern learning, and quality exploration activities.
/draft:discover is the single front door for all investigation, auditing, pattern learning, and quality exploration activities.
Strong keyword and phrase matching with fallback to a menu when intent is broad or compound. Several quality commands auto-chain (e.g. review may call bughunt).
| User Intent Keywords | Dispatches To | Purpose |
|---|---|---|
| debug, investigate bug, reproduce, isolate, diagnose | /draft:debug | Structured 4-phase debugging |
| hunt bugs, find bugs, exhaustive sweep, regression hunt | /draft:bughunt | 14-dimension bug hunt + regression tests |
| quick review, fast review, sanity check, lightweight review | /draft:quick-review | 4-dimension review (~2 min) |
| deep review, production audit, module audit, ACID compliance | /draft:deep-review | Full module lifecycle + architecture audit |
| coverage, code coverage, test coverage report | /draft:coverage | Coverage measurement and gap report |
| test strategy, testing plan, coverage targets, pyramid | /draft:testing-strategy | Test approach design |
| learn patterns, discover conventions, update guardrails, anti-patterns | /draft:learn | Pattern mining + guardrail evolution |
| tour, walkthrough, onboard me, getting started tour | /draft:tour | Guided interactive project tour |
| blast radius, code impact, affected modules, downstream callers | /draft:review or scripts/tools/graph-impact.sh | Graph-derived blast-radius before merge |
| impact, delivery telemetry, track analytics, CDD effectiveness | /draft:impact | Project-wide track delivery telemetry |
| assist review, help reviewer, PR architectural audit | /draft:assist-review | Risk audit to support human reviewers |
User: "debug the flaky test in CI"
→ dispatches to /draft:debug "flaky test in CI"
User: "quick review the PR diff"
→ dispatches to /draft:quick-review [pr context]
User: "run a deep production audit on the auth service"
→ dispatches to /draft:deep-review auth
User: "learn the coding patterns in this repo and tighten guardrails"
→ dispatches to /draft:learn
User: "index the monorepo so agents see all services"
→ Monorepo context is a foundation task, not a discover route: run /draft:init at the repo root (it builds the whole-repo code graph + a sparse root map linking each module). Running /draft:init inside a sub-module links that module up to the same root graph.
/draft:implement and /draft:review (primary) frequently call into discover skills at phase boundaries./draft:discover "full quality" may suggest or chain review + bughunt + coverage./draft:discover learn is recommended to keep guardrails current.Direct specialist commands are preserved as shims for existing workflows and scripts.
npx claudepluginhub drafthq/draft --plugin draftRuns modular quality probes adapted to the project's tech stack. Discovers issues via /discovery or session-end, then creates VCS tickets for confirmed problems.
Orchestrates multi-wave parallel code exploration for deep investigation of large codebases and cross-domain systems. Outputs unified report with completeness scoring.
Performs repo-wide or PR diff readiness sweeps dispatching parallel agents across security (shieldkit), tests (testkit), codebase (lenskit), evolution (timewarp), and instructions (alignkit) for synthesized reports.