feat(workflow): adopt Matt Pocock ticket workflow

Replace the Superpowers plan pipeline with grill-with-docs, specs, local tickets, and ticket-native execution.

BREAKING CHANGE: Remove the legacy Plan CLI, prompt templates, and Superpowers skills.
This commit is contained in:
csh
2026-08-10 16:55:46 +08:00
parent 29d110110b
commit 699b431cac
164 changed files with 9039 additions and 12273 deletions
+6 -7
View File
@@ -29,14 +29,15 @@ Playbook:工程规范与智能体规则合集,当前覆盖:
`templates/` 目录除了语言配置模板外,还包含 AI 智能体工作环境的项目架构模板:
- `templates/memory-bank/`项目上下文文档模板(project-brief、tech-context、system-patterns、active-context、progress、decisions
- `templates/prompts/`:任务入口模板(agent-behavior、clarify、verify-change、close-task、update-memory、code-review),不是流程权威
- `templates/memory-bank/`稳定项目知识模板(project-brief、tech-context、system-patterns
- `templates/AGENTS.template.md`:入口导航模板(项目主入口)
- `templates/AGENT_RULES.template.md`superpowers-first 执行规则模板
- `templates/AGENT_RULES.template.md`Matt Pocock ticket-native 执行规则模板
### 快速部署
统一入口(配置驱动,示例见 `playbook.toml.example`):
要求 Python 3.11 或更高版本。
统一入口(配置驱动,示例见 `playbook.example.toml`):
```bash
python scripts/playbook.py -config playbook.toml
@@ -55,8 +56,6 @@ install_mode = "snapshot"
[sync_memory_bank]
project_name = "MyProject"
[sync_prompts]
```
**部署行为**
@@ -200,7 +199,7 @@ skills = ["tsl-syntax-reference", "tsl-api-reference"]
python docs/standards/playbook/scripts/playbook.py -config playbook.toml
```
配置参数说明见 [playbook.toml.example](playbook.toml.example)。
配置参数说明见 [playbook.example.toml](playbook.example.toml)。
---