ask-matt
Installation
SKILL.md
Ask Matt
你不需要记住每个 skill,所以直接问。
Flow 是穿过 skills 的一条路径。大多数路径沿着一条 main flow 前进,两个 on-ramps 会并入它。其他内容要么是 standalone,要么是在下层运行的 vocabulary layer。
The main flow: idea -> ship
这是大多数工作的路线:你有一个想法,并希望把它构建出来。
/grill-with-docs- 通过访谈打磨想法。有 codebase 时从这里开始:它是 stateful 的,会把学到的内容保存在CONTEXT.md和 ADRs 中。(没有 codebase?用/grill-me,见 Standalone。两者都运行同一个/grillingprimitive;grill-with-docs是会留下文档痕迹的版本。)- 分支 - 能否在对话中解决所有问题? 如果某个问题需要可运行的答案(state、business logic,或必须亲眼看到的 UI),就通过 prototype 绕行,并用
/handoff在两个方向桥接(见 Crossing sessions):/handoff导出,然后基于该文件打开 fresh session;/prototype用 throwaway code 回答问题;/handoff把学到的内容带回来,并在原始 idea thread 中引用它。
- 分支 - 这是 multi-session build 吗?
- 是 ->
/to-prd(把 thread 变成 PRD)->/to-issues(把 PRD 拆成可独立领取的 issues)。因为 issues 彼此独立,每个 issue 之间都要清空 context:每个 issue 启动一个 fresh session,把 PRD 和单个 issue 传给/implement。 - 否 -> 在当前 context window 里直接运行
/implement。
- 是 ->