diff --git a/presets/ARCHITECTURE.md b/presets/ARCHITECTURE.md index 3a119cbd5f..b64d61ef60 100644 --- a/presets/ARCHITECTURE.md +++ b/presets/ARCHITECTURE.md @@ -158,8 +158,7 @@ presets/ ├── plan-template.md ├── tasks-template.md ├── checklist-template.md - ├── constitution-template.md - └── agent-file-template.md + └── constitution-template.md ``` ## Module Structure diff --git a/presets/self-test/preset.yml b/presets/self-test/preset.yml index 8e718430aa..7a9db93b0a 100644 --- a/presets/self-test/preset.yml +++ b/presets/self-test/preset.yml @@ -44,12 +44,6 @@ provides: description: "Self-test constitution template" replaces: "constitution-template" - - type: "template" - name: "agent-file-template" - file: "templates/agent-file-template.md" - description: "Self-test agent file template" - replaces: "agent-file-template" - - type: "command" name: "speckit.specify" file: "commands/speckit.specify.md" diff --git a/presets/self-test/templates/agent-file-template.md b/presets/self-test/templates/agent-file-template.md deleted file mode 100644 index 7b9267bade..0000000000 --- a/presets/self-test/templates/agent-file-template.md +++ /dev/null @@ -1,9 +0,0 @@ -# Agent File (Self-Test Preset) - - - -> This template is provided by the self-test preset. - -## Agent Instructions - -Follow these guidelines when working on this project. diff --git a/tests/test_presets.py b/tests/test_presets.py index 8fa700fa77..6a22f15ec6 100644 --- a/tests/test_presets.py +++ b/tests/test_presets.py @@ -1971,7 +1971,7 @@ def test_self_test_manifest_valid(self): assert manifest.id == "self-test" assert manifest.name == "Self-Test Preset" assert manifest.version == "1.0.0" - assert len(manifest.templates) == 8 # 6 templates + 2 commands + assert len(manifest.templates) == 7 # 5 templates + 2 commands def test_self_test_provides_all_core_templates(self): """Verify the self-test preset provides an override for every core template."""