“创建规格”的触发说明最终可进入代码实现并修改仓库
原文依据:6 处元数据将该 Skill 描述为“编码前创建规格”,但工作流包含完整的 Implement 阶段,并要求逐项执行任务。用户仅因需要规格而调用它时,可能未预期其继续改动源代码。虽然阶段需要人工审阅,但文本没有要求在开始实现前取得一项单独、明确的代码修改授权。
批准规格、计划或任务后,代理可能把该批准理解为允许修改多个源文件、运行验证步骤以及完成整个实现。
该 Skill 的确包含会修改源代码的 Implement 阶段,而元数据主要强调“编码前创建规格”。不过工作流明确要求各阶段经人工审阅、当前阶段验证后才能继续;任务清单获批是否也构成实施授权,文本没有说清。因此存在范围超出用户只要规格的可能,但不能断定会自动改代码。用户可要求交付规格和任务后停止,实施前另行确认。
这项判断针对展示的代码和适用条件,不表示风险已经实际发生。---name: spec-driven-developmentdescription: Creates specs before coding. Use when starting a new project, feature, or significant change and no specification exists yet. Use when requirements are unclear, ambiguous, or only exist as a vague idea. Use when a single requirement spans several independently testable capabilities and needs decomposing into a capability map of modules before specifying.---查看另外 5 个位置
Spec-driven development has four phases, preceded by a scope check (Phase 0) that activates only when one request bundles several independently testable capabilities. Do not advance to the next phase until the current one is validated.### Phase 4: ImplementExecute tasks one at a time following `skills/incremental-implementation/SKILL.md` (`incremental-implementation`) and `skills/test-driven-development/SKILL.md` (`test-driven-development`). Use `skills/context-engineering/SKILL.md` (`context-engineering`) to load the right spec sections and source files at each step rather than flooding the agent with the entire spec.name: spec-driven-developmentdescription: Creates specs before coding. Use when starting a new project, feature, or significant change and no specification exists yet. Use when requirements are unclear, ambiguous, or only exist as a vague idea. Use when a single requirement spans several independently testable capabilities and needs decomposing into a capability map of modules before specifying.---## The Gated WorkflowSpec-driven development has four phases, preceded by a scope check (Phase 0) that activates only when one request bundles several independently testable capabilities. Do not advance to the next phase until the current one is validated.```SPECIFY ──→ PLAN ──→ TASKS ──→ IMPLEMENT │ │ │ │ ▼ ▼ ▼ ▼ Human Human Human Human reviews reviews reviews reviews```