This directory contains a mock project to verify that LLM agents correctly identify and execute hook commands defined in .specify/extensions.yml.
- Open a chat with an LLM (like GitHub Copilot) in this project.
- Ask it to generate tasks for the current directory:
"Please follow
/speckit.tasksfor the./tests/hooksdirectory." - Expected Behavior:
- Before doing any generation, the LLM should notice the
AUTOMATIC Pre-Hookin.specify/extensions.ymlunderbefore_tasks. - It should state it is executing
EXECUTE_COMMAND: pre_tasks_test. - It should then proceed to read the
.mddocs and produce atasks.md. - After generation, it should output the optional
after_taskshook (post_tasks_test) block, asking if you want to run it.
- Before doing any generation, the LLM should notice the
(Requires tasks.md from Test 1 to exist)
- In the same (or new) chat, ask the LLM to implement the tasks:
"Please follow
/speckit.implementfor the./tests/hooksdirectory." - Expected Behavior:
- The LLM should first check for
before_implementhooks. - It should state it is executing
EXECUTE_COMMAND: pre_implement_testBEFORE doing any actual task execution. - It should evaluate the checklists and execute the code writing tasks.
- Upon completion, it should output the optional
after_implementhook (post_implement_test) block.
- The LLM should first check for
The templates for these commands in templates/commands/tasks.md and templates/commands/implement.md contains strict ordered lists. The new before_* hooks are explicitly formulated in a Pre-Execution Checks section prior to the outline to ensure they're evaluated first without breaking template step numbers.