一键导入
implement
Create a feature branch and implement changes based on a GitHub issue or text instruction
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create a feature branch and implement changes based on a GitHub issue or text instruction
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Set up the development environment with all required tools and dependencies
Conventional Commits message generation rules. Referenced by other skills.
Stage changes and create a Conventional Commits compliant commit
Linter and formatter command reference table by file extension. Referenced by other skills.
Run all linters and formatters with auto-fix, then report results
Push committed changes and create or update a pull request
| name | implement |
| description | Create a feature branch and implement changes based on a GitHub issue or text instruction |
Parse a GitHub issue or direct instruction, create a feature branch, plan the implementation, and execute code changes.
Parse $ARGUMENTS to determine what to implement.
If an issue number is provided (#N or a plain number):
gh issue view <N> to fetch the issue contentIf a text instruction is provided:
If no arguments are provided:
On gh CLI errors:
gh auth login and abortgit status and git branch --show-current to check the current state<type>/<slug> format based on the requirements
feat/add-auth, fix/cdk-synth-errorgit checkout -b <branch-name> to create the branchIf already on a feature branch:
## Implementation Plan
### Changes
1. `src/index.ts` - Add routing to entry point
2. `infra/lib/app-stack.ts` - Define Lambda function resource
3. `tests/test_handler.py` - Add handler tests
### Impact
- Adds resources to existing AppStack (no impact on existing functionality)
Approve?
Important: Do not begin code changes without plan approval.
Execute code changes according to the approved plan:
If the plan needs to change during implementation, consult the user.
Report implementation completion:
Implementation complete:
Branch: feat/add-auth
Changed files:
M src/index.ts
A infra/lib/auth-stack.ts
A tests/test_auth.py
Then ask the user which action to take next:
.agents/skills/ship/SKILL.md and follow its workflow.agents/skills/lint/SKILL.md and follow its workflow.env filesgh CLI is not authenticated, display the error and abortdocs/adding-tools.md