بنقرة واحدة
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 ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
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.
| 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
)"