Keeps implementation and specs in sync. Use when working on a feature that has a spec in .agents/specs/, when the user says /spec, or when starting implementati
复制下面这句话,粘贴给 Claude Code、Codex、Cursor 等 AI 编程工具,它会读取安装说明并在你确认后完成安装。
请阅读 https://ai.atlankj.com/install/asset/gh-spec-driven-development-c0a897b9e198 ,按照其中的说明把「n8n:spec-driven-development」安装到你(当前 AI 工具)中。执行前先告诉我将运行的命令和写入的位置,等我确认。
查看 AI 将读取的安装说明正在读取 GitHub 原文…
内容来自 GitHub 原始文件,由原作者维护。在 GitHub 查看
Specs live in .agents/specs/. They are the source of truth for architectural
decisions, API contracts, and implementation scope. Implementation and specs
must stay in sync — neither leads exclusively.
Read spec → Implement → Verify alignment → Update spec or code → Repeat
.agents/specs/ for files matching the feature:ls .agents/specs/
Read the full spec. Understand scope, decisions, API contracts, and open questions before writing code.
If no spec exists and the task is non-trivial (new module, new API, architectural change), ask the user whether to create one first.
- [ ] → - [x]) as items are completed.- [x] ~~OpenRouter proxy~~ → Direct execution: nodes call OpenRouter directly
Run a spec verification pass:
@n8n/api-types?.agents/specs/.## Implementation TODO with checkboxes to track progress.