원클릭으로
commit
Commit changes following project quality gates and best practices. Run before creating any git commit.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Commit changes following project quality gates and best practices. Run before creating any git commit.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Review and resolve PR review comments interactively. Fetches unresolved comments, proposes fixes or explains why to skip, and replies on GitHub.
Review code changes using Hyperlane Warp UI coding standards. Use when reviewing PRs, checking your own changes, or doing self-review before committing.
Post a single consolidated PR review with summary and inline comments. Use this skill to deliver code review feedback as one unified review per run.
Security-focused review for frontend/Web3 code. Use for XSS, wallet security, CSP, and dependency checks.
SOC 직업 분류 기준
| name | commit |
| description | Commit changes following project quality gates and best practices. Run before creating any git commit. |
Use this skill when committing changes to ensure quality and correctness.
Run these in order. Do not commit if any fail.
pnpm format — Format all source filespnpm lint — Check for ESLint errorspnpm typecheck — Verify TypeScript compilespnpm build — Ensure production build succeeds (optional for small changes, required before PR)git status carefully..monorepo-tarballs/, agent/, etc. should not be committed unless explicitly requested.git add, not git add . or git add -A.git diff --staged before committing to verify only intended changes are included.feat:, fix:, style:, chore:, refactor:, docs:, test:Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>.env, credentials, or API keys.gitignore)pnpm format
pnpm lint
pnpm typecheck
git status # review what changed
git diff # verify changes are correct
git add <specific-files> # only related files
git diff --staged # double-check staged changes
git commit -m "$(cat <<'EOF'
feat: description of change
- Detail 1
- Detail 2
EOF
)"