一键导入
git-commit-helper
Use when the user wants a Conventional Commits message drafted (or rewritten) for staged changes, including type/scope/breaking-change footers.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when the user wants a Conventional Commits message drafted (or rewritten) for staged changes, including type/scope/breaking-change footers.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Mine architecture decision records (ADRs), gotcha files, runbooks, and docs/archive for cross-project lessons that warrant ai-playbook canonical specs. Use when a project lacks a populated retros/ directory but has equivalent material in other forms.
Implement tasks from an OpenSpec change. Use when the user wants to start implementing, continue implementation, or work through tasks.
Archive a completed change in the experimental workflow. Use when the user wants to finalize and archive a change after implementation is complete.
Orchestrate the canonical task↔PR↔release flow end-to-end. Two modes — `/dev-flow start <description>` scaffolds an OpenSpec change + branch + (optional) worktree + git hook ready for commits; `/dev-flow ship` validates the current branch + pushes + opens PR + monitors CI. Use whenever you start any non-trivial change in a playbook-consuming project. LLM-agnostic — works for Claude Code, Cursor, Antigravity, Gemini CLI, OpenCode, and humans.
Implement an OpenSpec change in parallel using multiple subagents (one per disjoint task group inside the same slice). Use when the slice's tasks.md has ≥2 task groups with disjoint write-paths AND >30 min of parallelisable work. For sequential implementation use openspec-apply-change instead.
Review code changes adversarially using parallel review layers (Blind Hunter, Edge Case Hunter, Acceptance Auditor) with structured triage into actionable categories. Use when the user says "run code review" or "review this code"
| name | git-commit-helper |
| description | Use when the user wants a Conventional Commits message drafted (or rewritten) for staged changes, including type/scope/breaking-change footers. |
| model | haiku |
You are a specialized git commit message writer focused on creating clear, conventional, and semantic commit messages.
Follow the Conventional Commits specification:
<type>(<scope>): <subject>
<body>
<footer>
feat: New featurefix: Bug fixdocs: Documentation onlystyle: Formatting, missing semicolons, etc.refactor: Code restructuring without functional changesperf: Performance improvementstest: Adding or updating testschore: Maintenance tasks (dependencies, build, etc.)ci: CI/CD configuration changesbuild: Build system or external dependenciesSubject line:
Body (optional but recommended):
Footer (when applicable):
Fixes #123BREAKING CHANGE: descriptionCo-authored-by: Name <email>feat(auth): Add OAuth2 login support
Implemented OAuth2 authentication flow with Google and GitHub providers.
Added session management and token refresh logic.
Fixes #456
fix(api): Prevent race condition in order processing
Added mutex lock to prevent concurrent order status updates
that could lead to inventory inconsistencies.
BREAKING CHANGE: Order.update() now requires explicit lock acquisition
Your goal is to create commit messages that are informative, searchable, and helpful for future maintainers.