commit
Create conventional commit messages without co-author labels. Use when committing code changes or formatting git history.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Create conventional commit messages without co-author labels. Use when committing code changes or formatting git history.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
| name | commit |
| description | Create conventional commit messages without co-author labels. Use when committing code changes or formatting git history. |
| metadata | {"version":"1.0.0"} |
Create conventional commit messages following the Conventional Commits specification. Never add co-author labels.
<type>(<scope>): <subject>
<body>
| Type | Purpose |
|---|---|
feat | New feature |
fix | Bug fix |
refactor | Code restructuring (no behavior change) |
docs | Documentation only |
style | Formatting, whitespace (no code change) |
test | Adding or fixing tests |
chore | Build, CI, tooling, dependencies |
perf | Performance improvement |
Use the affected package or module as scope, matching this repo's conventions. Common scopes:
console-ui, console-server, cloud-router, ai-engineer, sheets-uibilling, scheduler, auth, mcpgit log --oneline -20 to checkCo-Authored-By linesgit status and git diff --cached to see staged changesgit add -A)git commit -m "$(cat <<'EOF'
type(scope): subject line here
Optional body explaining why this change was made.
EOF
)"
git status after to verifyfeat(console-ui): add group chat with realtime subscriptions
fix(console-server): correct next_run calculation for scheduled reports
refactor(cloud-router): merge mcp server into main binary
chore: update ui-kit to v0.15.0 across packages
fix(ai-engineer): handle token limit exceeded in streaming response
perf(billing): batch usage dimension writes to reduce DB round-trips
Run OpenAI Codex code review on current changes or review a plan/design. Use when user asks to review code, review implementation, or run codex review.
Create pull requests with conventional titles using gh CLI. Use when creating PRs, opening pull requests, or pushing branches for review.