create-spec-driven-app v0.7.0

Troubleshooting#

When something does not behave the way the guides say it should.


Troubleshooting#

SymptomCauseFix
validate says "missing traceability.md row" for a .feature you just addedThe matrix needs every feature file registered.Add a row pointing to the relative path of the .feature.
validate --strict-tdd fails on a half-baked REQA REQ-NNN exists in spec.md without a .feature or executable test.Either add the test, or mark the row in traceability.md as Deferred.
expand leaves {{VARS}} in generated filesA required --var was not provided.Re-run with the missing variable. Check pack.yaml > variables.required.
specops sync rewrites your edits to a generated fileGenerated files are meant to be regenerable.Customise the pack template, not the generated output.
pack lint rejects a pack that worked beforeA new schema version added required fields.Run npx create-spec-driven-app@latest pack lint … against the latest CLI to see the actual error.
npx create-spec-driven-app … hangs the first timenpm is resolving the package.Subsequent runs are cached; pin the version (e.g. @0.1.0-beta.3) in CI.
specops sync complains "no lockfile and no specops.config.yaml"Neither source of truth is present.Run expand once, or create specops.config.yaml (see §9).

Still stuck? Open an issue with the output of npx create-spec-driven-app@latest validate --help plus the failing command. The Comparisons doc lists migration paths from spec-kit, Cursor rules, Aider conventions, and plain READMEs if the answer is "this tool isn't the right fit".


Next#