一键导入
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
)"