Replies: 1 comment
-
|
Hi @aki59, thanks for the question! The issue is a YAML formatting bug in your What you have (incorrect): provides:
templates:
- type: "template"
- name: "constitution-template"
- file: "templates/comptest-constitution.md"
- strategy: "prepend"YAML reads this as four separate objects, each with a single key — so none of them have What you need: provides:
templates:
- type: "template"
name: "constitution-template"
file: "templates/comptest-constitution.md"
strategy: "prepend"Once that's fixed, your constitution content will prepend correctly to the core template. Regarding the folder structure not appearing in the plan: the |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I have created a custom component testing based preset and in that I have written a constitution template that will use prepend strategy on the core template
My comptest-constitution.md looks something like this:
There are much more to it. But when I am running speckit.plab command it never take into account the folder structure and shows in plan some random folder name to be created.
I am using gpt-5-mini for this, so not sure if that can be the issue.
Beta Was this translation helpful? Give feedback.
All reactions