skills/vibe/SKILL.md
Fully autonomous development workflow from prompt to commit. Chains spec → develop → review → commit. Triggers: /vibe, 'vibe this', 'autonomous workflow', 'just do it all', 'build this end-to-end', 'full pipeline', 'handle everything'.
npx skillsauth add luan/dot-claude vibeInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Full pipeline (spec → develop → review → commit) from a single prompt.
<prompt> — what to build (required)--no-review — skip review stage--dry-run — spec only, stop before developNo prompt → tell user: /vibe <what to build>, stop.
Stage numbering [N/M]: M = total stages that will run. Base: 5 (spec, develop, review, commit, report). --no-review → 4. --dry-run → 1.
Output [1/M] Spec.
Skill("spec", args="<prompt> --auto")
Spec runs silently with --auto and returns both spec and plan file paths. Read the plan file path from the output or find via ct plan latest.
Verify the plan file exists and has content. Immediately proceed to develop.
Output [2/M] Develop.
If --dry-run → stop here. Report the plan file path, suggest /develop <path>.
Skill("develop", args="<plan-file-path> --auto")
Verify all workers completed. If some failed, report per-worker status and stop.
Bugfix detection: If the spec mentions "bug", "fix", "regression", or includes reproduction steps — after develop completes, re-run the reproduction scenario to confirm the fix works. If reproduction still fails, report and stop (do not proceed to review with a broken fix).
Immediately proceed to review.
Output [3/M] Review.
Skip if --no-review.
Skill("crit")
Fix any critical issues inline. Immediately proceed to commit.
Output [4/M] Commit.
If git diff --stat is empty → skip.
Skill("commit")
Output [M/M] Report.
Skill("report")
Generates a post-implementation summary in ~/blueprints/. Runs silently — failure here doesn't block the pipeline.
Report: one line per stage (completed / skipped / failed).
If a stage fails with zero progress:
/<failed-skill> [args] to retry the failed stagetools
Tree-sitter indexed code navigator (ct sym CLI). Use INSTEAD OF Read/Grep/Glob/Bash when exploring existing code, understanding how something works, locating a symbol, tracing the call graph up (impact) or down (trace), finding implementations of an interface, scoping a diff to one symbol, or preparing to edit code you have not read yet. Triggers: 'how does X work', 'explain this class/file/symbol', 'walk me through X', 'what does X do', 'where is X defined', 'who calls X', 'what does X call', 'find implementations of', 'what breaks if I change X', 'outline this file', 'map imports', 'show me this symbol', exploring unfamiliar repo, tracing call graph, scoping diff to a symbol, preparing to edit code I haven't read, about to Read a file over ~500 lines to understand it. Do NOT use for: writing new code from scratch, editing prose or config, running tests, or when a stack trace already names the file and line.
development
Comprehensive vault maintenance — cross-references blueprints against codebase state to produce a maintenance plan: archive consumed artifacts, audit docs for staleness, propose new docs for undocumented stable systems. Triggers: 'vault sweep', 'sweep the vault', 'clean up vault', 'vault maintenance', 'what can we archive', 'audit blueprints', 'vault hygiene', 'blueprint cleanup'. Use whenever the user wants a holistic view of vault health rather than archiving a single artifact (that's /archive). Also use when the user asks what's stale, what needs docs, or whether artifacts can be cleaned up.
development
Analyze current diff, classify changes by risk, and produce structured manual test plan. Triggers: 'test plan', 'what should I test', 'manual testing', 'verification steps', 'QA checklist'. Exits early for trivial changes. Do NOT use when: writing automated tests — use /develop with TDD. Do NOT use when: reviewing code quality — use /crit instead.
development
Goal-directed autonomous development — reads the spec, breaks it into chunks, runs each as a vibe cycle. Triggers: /supervibe, 'super vibe', 'multi-phase', 'keep going until done'.