spec-coding-skills overview
spec-coding-skills is a small skill suite for making agentic coding work more repeatable.
It focuses on three capabilities:
- Turn ambiguous requests into implementation-ready specs.
- Correct implementation drift using evidence from lint, tests, logs, CI, and review feedback.
- Save reusable project knowledge so later tasks do not repeat the same mistakes.
Skills
spec-plan
Turn fuzzy requests into implementation-ready specs with:
- scope boundaries
- assumptions
- acceptance criteria
- validation plans
- execution guardrails
- implementation steps
spec-crlp
Run a spec-driven correction loop for existing code by combining:
- the current spec
- linter output
- failing tests
- runtime logs
- CI failures
- review feedback
spec-index
Capture, retrieve, and maintain durable project memory:
- decisions
- constraints
- root causes
- fix patterns
- setup and environment gotchas
- validation rules
Default workflow
- Read the target repository root
SPEC.mdwhen present. - Retrieve relevant memory with
spec-index. - Use
spec-planto define scope, acceptance criteria, validation, and execution steps. - Implement.
- Use
spec-crlpif implementation drifts from the spec. - Save reusable findings back into
spec-index.