🐛 fix(templates): enforce main loop progress tracking
Update Third-party Superpowers / Update thirdparty/skill snapshot (push) Successful in 1m20s

replace the old select/record progress flow with a single main_loop claim/finish CLI.

route template execution through main_loop only, remove the legacy plan_progress entry points, and update tests to enforce the new behavior.
This commit is contained in:
csh
2026-03-12 17:47:33 +08:00
parent 51373d7469
commit 7b84daf3bd
7 changed files with 198 additions and 159 deletions
+2 -2
View File
@@ -36,7 +36,7 @@ prompts/
生成计划 → $writing-plans skill → docs/plans/*.md
执行计划 → AGENT_RULES 主循环(留痕)
执行计划 → AGENT_RULES 主循环(`main_loop.py claim/finish` 留痕)
代码评审(有 MR/PR 时)→ code-review.md
@@ -45,7 +45,7 @@ prompts/
沉淀提示词 → prompt-generator.md(可选)
```
> **核心规则在 `AGENT_RULES.md`**,第三方 skills 负责规划,主循环负责执行留痕。
> **核心规则在 `AGENT_RULES.md`**,第三方 skills 负责规划执行留痕必须走 `main_loop.py claim/finish`
---