一键导入
feature-pipeline
This skill defines the process for implementing project features. Load this skill when changing runtime behavior, tests, or behavior-facing docs.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
This skill defines the process for implementing project features. Load this skill when changing runtime behavior, tests, or behavior-facing docs.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Load this skill when creating a GitHub project backlog issue or drafting an issue title, body, type, or labels.
Backlog and project-management instructions using GitHub Issues. Load this skill when reading, listing, searching, understanding, or modifying project backlog issues.
Load this skill if you need to work with the backlog or meeting minutes
Load this skill if you need to review meeting minutes with the user
Load this skill if you need to prepare or review meeting minutes.
Load this skill if you need to create meeting minutes from transcript files.
| name | Feature Pipeline |
| description | This skill defines the process for implementing project features. Load this skill when changing runtime behavior, tests, or behavior-facing docs. |
Follow these steps in order.
Check the current branch.
If you are on main, ask the user to create a feature branch before proceeding.
First read docs/application_interface.md to understand the current
black-box contract.
Then confirm the requested behavior change:
Update docs/application_interface.md to reflect the intended contract.
Review the changes with the user before moving on.
When this step is complete, commit changes before continuing.
The goal is to produce a decision-complete implementation design before coding.
Load framework-oriented-design and inspect existing patterns in src/.
Decide whether framework refactoring is needed before adding behavior. Prefer the simplest design that fits existing project conventions.
Create a plan document at:
docs/plans/<branch_name>.mdPlan sections:
Get user approval before continuing.
When this step is complete, commit changes before continuing.
Apply planned framework refactors without introducing new feature behavior. Existing tests should still pass.
Review refactor changes with the user. When this step is complete, commit changes before continuing.
Load testing skill.
Update tests/ so coverage matches the interface document.
Prioritize black-box behavior validation.
Review test updates with the user. When this step is complete, commit changes before continuing.
Implement feature behavior using the planned approach and updated framework. Tests should pass.
Review implementation changes with the user. When this step is complete, commit changes before continuing.
Follow the conclusion subskill instructions.
Notify the user when the feature is ready to push and merge.