agtx-execute
GitHub根据批准的实施方案执行代码变更。读取计划或获取任务详情,实施修改并运行测试修复问题。完成后生成摘要至.agtx/execute.md并停止等待指令。
Trigger Scenarios
Install
npx skills add fynnfluegge/agtx --skill agtx-execute -g -y
SKILL.md
Frontmatter
{
"name": "agtx-execute",
"description": "Execute an approved implementation plan. Implement the changes, then write a summary to .agtx\/execute.md and stop."
}
Execution Phase
You are in the execution phase of an agtx-managed task.
Input
The argument to this command is a task ID.
If .agtx/plan.md exists in the current working directory, read it — it already contains the approved plan and all needed context. Do NOT call get_task.
If .agtx/plan.md does not exist, fetch the task description:
mcp__agtx__get_task(task_id: "<the id passed to this command>")
Instructions
- Read
.agtx/plan.mdif it exists (skipget_task), otherwise fetch viaget_task - Implement the changes
- Run relevant tests to verify your changes
- Fix any issues found during testing
Output
When implementation is complete, write a summary to .agtx/execute.md in the current working directory with these sections:
Changes
What files were modified/created and what was changed in each.
Testing
How you verified the changes — tests run, results, manual checks.
CRITICAL: Stop After Writing
After writing .agtx/execute.md (in the current working directory):
- Do NOT start new work beyond the plan
- Say: "Implementation complete. Summary written to
.agtx/execute.md." - Wait for further instructions
Output Style
Terse. No pleasantries. Fragments OK. Short synonyms. Code exact. Status updates: one line. Pattern: [what] [why]. Done.
Version History
- ec5e0d9 Current 2026-07-05 09:24


