piv-run-full-loop

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

End-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
prime-codebase
skill (
.claude/skills/prime-codebase/SKILL.md
).

执行准备工作流以了解代码库。
运行
prime-codebase
技能(
.claude/skills/prime-codebase/SKILL.md
)。

Step 2: Planning - Create Implementation Plan

步骤2:规划 - 创建实现方案

Create a detailed implementation plan for the feature.
Run the
piv-plan-implementation
skill (
.claude/skills/piv-plan-implementation/SKILL.md
) with the feature description: $ARGUMENTS.
IMPORTANT: Note the feature name (and plan file path) that the planning step creates. You'll need it for the next step.

为功能创建详细的实现方案。
运行
piv-plan-implementation
技能(
.claude/skills/piv-plan-implementation/SKILL.md
),传入功能描述:$ARGUMENTS
重要提示:记录规划步骤生成的功能名称(以及方案文件路径),下一步会用到。

Step 3: Execute - Implement the Feature

步骤3:执行 - 实现功能

Implement the feature from the plan document.
Run the
piv-implement
skill (
.claude/skills/piv-implement/SKILL.md
) with the plan file path:
.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
piv-commit
skill (
.claude/skills/piv-commit/SKILL.md
).

为所有更改创建git提交。
运行
piv-commit
技能(
.claude/skills/piv-commit/SKILL.md
)。

Final Summary

最终总结

After completing all 4 steps, provide:
完成所有4个步骤后,提供以下内容:

Feature Implementation Complete

功能实现完成

Original Request: $ARGUMENTS
Feature Name: [feature-name from planning step]
Steps Executed:
  1. ✅ Prime - Codebase context loaded
  2. ✅ Planning - Plan created at
    .claude/plans/[feature-name].md
  3. ✅ Execute - Feature implemented and validated
  4. ✅ 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]
已执行步骤
  1. ✅ 准备 - 代码库上下文已加载
  2. ✅ 规划 - 方案已创建于
    .claude/plans/[feature-name].md
  3. ✅ 执行 - 功能已实现并验证
  4. ✅ 提交 - 更改已提交至git
输出内容
  • 方案文档:
    .claude/plans/[feature-name].md
  • 创建/修改的文件:[列表]
  • 添加的测试:[列表]
  • 提交哈希:[hash]
后续步骤
  • 推送到远程仓库:
    git push
  • 创建拉取请求(如适用)
  • 继续开发下一个功能