piv-run-full-loop
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseEnd-to-End Feature Development
端到端功能开发
Feature Description: $ARGUMENTS
This skill chains the 4 core PIV-loop skills for autonomous feature development.
功能描述:$ARGUMENTS
本技能串联4项核心PIV-loop技能,实现自主功能开发。
Step 1: Prime - Load Codebase Context
步骤1:准备(Prime)- 加载代码库上下文
Execute the priming workflow to understand the codebase.
Run the skill ().
prime-codebase.claude/skills/prime-codebase/SKILL.md执行准备工作流以了解代码库。
运行技能()。
prime-codebase.claude/skills/prime-codebase/SKILL.mdStep 2: Planning - Create Implementation Plan
步骤2:规划 - 创建实现方案
Create a detailed implementation plan for the feature.
Run the skill () with the feature description: $ARGUMENTS.
piv-plan-implementation.claude/skills/piv-plan-implementation/SKILL.mdIMPORTANT: Note the feature name (and plan file path) that the planning step creates. You'll need it for the next step.
为功能创建详细的实现方案。
运行技能(),传入功能描述:$ARGUMENTS。
piv-plan-implementation.claude/skills/piv-plan-implementation/SKILL.md重要提示:记录规划步骤生成的功能名称(以及方案文件路径),下一步会用到。
Step 3: Execute - Implement the Feature
步骤3:执行 - 实现功能
Implement the feature from the plan document.
Run the skill () with the plan file path: .
piv-implement.claude/skills/piv-implement/SKILL.md.claude/plans/[feature-name].md(Use the feature name from Step 2.)
根据方案文档实现功能。
运行技能(),传入方案文件路径:。
piv-implement.claude/skills/piv-implement/SKILL.md.claude/plans/[feature-name].md(使用步骤2中的功能名称。)
Step 4: Commit - Save Changes
步骤4:提交 - 保存更改
Create a git commit for all changes.
Run the skill ().
piv-commit.claude/skills/piv-commit/SKILL.md为所有更改创建git提交。
运行技能()。
piv-commit.claude/skills/piv-commit/SKILL.mdFinal Summary
最终总结
After completing all 4 steps, provide:
完成所有4个步骤后,提供以下内容:
Feature Implementation Complete
功能实现完成
Original Request: $ARGUMENTS
Feature Name: [feature-name from planning step]
Steps Executed:
- ✅ Prime - Codebase context loaded
- ✅ Planning - Plan created at
.claude/plans/[feature-name].md - ✅ Execute - Feature implemented and validated
- ✅ Commit - Changes committed to git
Outputs:
- Plan document:
.claude/plans/[feature-name].md - Files created/modified: [list]
- Tests added: [list]
- Commit hash: [hash]
Next Steps:
- Push to remote:
git push - Create pull request (if applicable)
- Continue with next feature
原始请求:$ARGUMENTS
功能名称:[来自规划步骤的feature-name]
已执行步骤:
- ✅ 准备 - 代码库上下文已加载
- ✅ 规划 - 方案已创建于
.claude/plans/[feature-name].md - ✅ 执行 - 功能已实现并验证
- ✅ 提交 - 更改已提交至git
输出内容:
- 方案文档:
.claude/plans/[feature-name].md - 创建/修改的文件:[列表]
- 添加的测试:[列表]
- 提交哈希:[hash]
后续步骤:
- 推送到远程仓库:
git push - 创建拉取请求(如适用)
- 继续开发下一个功能