원클릭으로
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