From 27c26d040ebde655d14b3cb75bff329136a6ee91 Mon Sep 17 00:00:00 2001 From: Yoshiyuki Kinjo Date: Fri, 15 May 2026 20:12:48 +0900 Subject: [PATCH 1/3] follow fc3d1244c07c612e146cfad65d9e36542ee1417 agent-file-template.md is removed at fc3d1244c07c612e146cfad65d9e36542ee1417 --- presets/ARCHITECTURE.md | 1 - presets/self-test/preset.yml | 6 ------ presets/self-test/templates/agent-file-template.md | 9 --------- 3 files changed, 16 deletions(-) delete mode 100644 presets/self-test/templates/agent-file-template.md diff --git a/presets/ARCHITECTURE.md b/presets/ARCHITECTURE.md index 85e9dea3c7..ce1c560db3 100644 --- a/presets/ARCHITECTURE.md +++ b/presets/ARCHITECTURE.md @@ -159,7 +159,6 @@ presets/ ├── tasks-template.md ├── checklist-template.md ├── constitution-template.md - └── agent-file-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. From 3432836297b7f4b635a3c7f85261c091dee5930c Mon Sep 17 00:00:00 2001 From: Yoshiyuki Kinjo Date: Sat, 16 May 2026 11:27:47 +0900 Subject: [PATCH 2/3] Fix ruled line for constitution-template.md --- presets/ARCHITECTURE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/presets/ARCHITECTURE.md b/presets/ARCHITECTURE.md index ce1c560db3..c533976b8a 100644 --- a/presets/ARCHITECTURE.md +++ b/presets/ARCHITECTURE.md @@ -158,7 +158,7 @@ presets/ ├── plan-template.md ├── tasks-template.md ├── checklist-template.md - ├── constitution-template.md + └── constitution-template.md ``` ## Module Structure From d6c590c13830de93e03a483d147d6d9a886cf23c Mon Sep 17 00:00:00 2001 From: Yoshiyuki Kinjo Date: Fri, 22 May 2026 11:34:13 +0900 Subject: [PATCH 3/3] fix test --- tests/test_presets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_presets.py b/tests/test_presets.py index 54cb9dd5b3..593731a79f 100644 --- a/tests/test_presets.py +++ b/tests/test_presets.py @@ -2620,7 +2620,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."""