소스 정보
- 저장소
- gittower/git-flow-next
- 최근 소스 활동
- 2026년 7월 15일 10:38
- 감지된 SKILL.md 언어
- 영어
- 스타
- 431
- 포크
- 28
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/gittower/git-flow-next --skill implement명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Run the full release process end-to-end - prep, tag, CI verification, Homebrew tap, WinGet verification, and website sync
Handle a small fix or maintenance task locally end-to-end — no PR, but full review gates and a confirmed local merge into main
Fully solve a small issue end-to-end — resolve, publish the PR, run two Copilot review rounds, address them, and merge when confident. Escalates to the user on anything uncertain.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | implement |
| description | Execute an implementation plan, making changes and committing properly |
| allowed-tools | Read, Grep, Glob, Edit, Write, Bash |
Execute an implementation plan or review fixes, making code changes and committing according to guidelines.
/implement [target]
Specifies what to implement. Can be:
.ai/ (e.g., issue-59-add-no-verify-option).ai/ folder (e.g., .ai/my-feature).ai/my-feature/review.md)When given a directory (or auto-detecting):
review.md exists → implement fixes from the reviewplan.md exists → implement the plan/create-plan or /code-review first# Auto-detect from branch, prefer review.md over plan.md
/implement
# Use specific folder in .ai/
/implement issue-59-add-no-verify-option
# Use relative path
/implement .ai/my-feature
# Use specific file directly
/implement .ai/my-feature/plan.md
/implement .ai/my-feature/review.md
Parse Arguments and Find Source
If a file path was provided (ends with .md):
If a directory/folder was provided:
.ai/, use it directly.ai/review.md first, then plan.mdIf no argument provided:
feature/59-... → 59).ai/issue-<number>-* folderreview.md first, then plan.mdIf no source file found:
/create-plan for new work/code-review if code exists but needs reviewVerify Prerequisites
git status)go test ./...Load Guidelines
Execute Work
Tests come first. The plan's Test Plan section was gated by
/validate-tests and is authoritative:
.ai/<folder>/codex-test-plan.md exists.
If not, stop and run /validate-tests firstFor each task in the plan:
Before Each Task:
For Plan Mode:
/code-review before PRFor Review Mode:
Code Changes:
After Each Task:
go build ./...go test ./...git diffTests MUST NOT be changed to make the implementation pass. If the implementation and a test disagree, the test plan is challenged — not quietly edited:
/validate-tests Codex gate on the revised plan, and append an
entry to the plan's Test Plan Revisions section: what changed,
why, revision countAbort rule: if this happens more than 3 times in one implementation, error out — stop all work, leave the branch as-is, and report to the user that the plan and implementation are fundamentally at odds and need human review. Do not attempt a fourth revision.
For each issue found in the review:
Must fix:
Should fix:
Nit:
After Fixes:
go build ./...go test ./...git diffCommit Strategy
/commit skill for proper formattingCheckpoint Verification
At each checkpoint:
go build ./...go test ./...Track Progress
For plan mode - update plan.md checkboxes:
- [x] Completed task
- [ ] Pending task
For review mode - update review.md checkboxes:
- [x] Fixed: <issue description>
- [ ] Pending: <issue description>
Handle Issues
If problems arise: