MCAF: Feature Spec
Trigger On
- add or change non-trivial behaviour
- behaviour is under-specified and engineers are guessing
- tests need a stable behavioural source of truth
Value
- produce a concrete project delta: code, docs, config, tests, CI, or review artifact
- reduce ambiguity through explicit planning, verification, and final validation skills
- leave reusable project context so future tasks are faster and safer
Do Not Use For
- architecture decisions that need alternatives and trade-offs
- tiny typo or cosmetic-only changes with no behavioural impact
Inputs
docs/Architecture.md
- the nearest
AGENTS.md
- current user flows, business rules, and acceptance expectations
Quick Start
- Read the nearest
AGENTS.md and confirm scope and constraints.
- Run this skill's
Workflow through the Ralph Loop until outcomes are acceptable.
- Return the
Required Result Format with concrete artifacts and verification evidence.
Workflow
- Define scope first: in scope, out of scope, boundaries touched.
- If the feature doc is missing, scaffold from
references/feature-template.md.
- Keep the spec executable:
- numbered rules
- main flow
- edge and failure flows
- system behaviour
- verification steps
- Definition of Done
- Make the spec concrete enough that tests can be written without guessing.
- If the feature creates a new dependency, boundary, or major policy shift, update an ADR too.
Deliver
docs/Features/feature-name.md
- a feature spec that engineers and agents can implement directly
Validate
- rules are testable, not aspirational
- edge cases are captured where they matter
- verification steps match the intended behaviour
- the doc can drive implementation without hidden tribal knowledge
Ralph Loop
Use the Ralph Loop for every task, including docs, architecture, testing, and tooling work.
- Plan first (mandatory):
- analyze current state
- define target outcome, constraints, and risks
- write a detailed execution plan
- list final validation skills to run at the end, with order and reason
- Execute one planned step and produce a concrete delta.
- Review the result and capture findings with actionable next fixes.
- Apply fixes in small batches and rerun the relevant checks or review steps.
- Update the plan after each iteration.
- Repeat until outcomes are acceptable or only explicit exceptions remain.
- If a dependency is missing, bootstrap it or return
status: not_applicable with explicit reason and fallback path.
Required Result Format
status: complete | clean | improved | configured | not_applicable | blocked
plan: concise plan and current iteration step
actions_taken: concrete changes made
validation_skills: final skills run, or skipped with reasons
verification: commands, checks, or review evidence summary
remaining: top unresolved items or none
For setup-only requests with no execution, return status: configured and exact next commands.
Load References
- use
references/feature-template.md only for scaffolding
Example Requests
- "Write a feature spec for the new checkout retry flow."
- "Document the behaviour before coding this API change."
- "Turn this loose requirement into an executable feature doc."
1---2name: mcaf-feature-spec3description: Create or update a feature spec under `docs/Features/` with business rules, user flows, system behaviour, verification, and Definition of Done. Use when the user asks for a feature spec, executable requirements, acceptance criteria, behaviour documentation, or a pre-implementation plan for non-trivial behaviour changes.4---56# MCAF: Feature Spec78## Trigger On910- add or change non-trivial behaviour11- behaviour is under-specified and engineers are guessing12- tests need a stable behavioural source of truth1314## Value1516- produce a concrete project delta: code, docs, config, tests, CI, or review artifact17- reduce ambiguity through explicit planning, verification, and final validation skills18- leave reusable project context so future tasks are faster and safer1920## Do Not Use For2122- architecture decisions that need alternatives and trade-offs23- tiny typo or cosmetic-only changes with no behavioural impact2425## Inputs2627- `docs/Architecture.md`28- the nearest `AGENTS.md`29- current user flows, business rules, and acceptance expectations3031## Quick Start32331. Read the nearest `AGENTS.md` and confirm scope and constraints.342. Run this skill's `Workflow` through the `Ralph Loop` until outcomes are acceptable.353. Return the `Required Result Format` with concrete artifacts and verification evidence.3637## Workflow38391. Define scope first: in scope, out of scope, boundaries touched.402. If the feature doc is missing, scaffold from `references/feature-template.md`.413. Keep the spec executable:42 - numbered rules43 - main flow44 - edge and failure flows45 - system behaviour46 - verification steps47 - Definition of Done484. Make the spec concrete enough that tests can be written without guessing.495. If the feature creates a new dependency, boundary, or major policy shift, update an ADR too.5051## Deliver5253- `docs/Features/feature-name.md`54- a feature spec that engineers and agents can implement directly5556## Validate5758- rules are testable, not aspirational59- edge cases are captured where they matter60- verification steps match the intended behaviour61- the doc can drive implementation without hidden tribal knowledge6263## Ralph Loop6465Use the Ralph Loop for every task, including docs, architecture, testing, and tooling work.66671. Plan first (mandatory):68 - analyze current state69 - define target outcome, constraints, and risks70 - write a detailed execution plan71 - list final validation skills to run at the end, with order and reason722. Execute one planned step and produce a concrete delta.733. Review the result and capture findings with actionable next fixes.744. Apply fixes in small batches and rerun the relevant checks or review steps.755. Update the plan after each iteration.766. Repeat until outcomes are acceptable or only explicit exceptions remain.777. If a dependency is missing, bootstrap it or return `status: not_applicable` with explicit reason and fallback path.7879### Required Result Format8081- `status`: `complete` | `clean` | `improved` | `configured` | `not_applicable` | `blocked`82- `plan`: concise plan and current iteration step83- `actions_taken`: concrete changes made84- `validation_skills`: final skills run, or skipped with reasons85- `verification`: commands, checks, or review evidence summary86- `remaining`: top unresolved items or `none`8788For setup-only requests with no execution, return `status: configured` and exact next commands.8990## Load References9192- use `references/feature-template.md` only for scaffolding9394## Example Requests9596- "Write a feature spec for the new checkout retry flow."97- "Document the behaviour before coding this API change."98- "Turn this loose requirement into an executable feature doc."