一键导入
commit
Create a git commit following the Conventional Commits specification. Use when the user asks to commit staged changes or create a commit message.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create a git commit following the Conventional Commits specification. Use when the user asks to commit staged changes or create a commit message.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Create or update a pull request for the current branch with a summary of all changes. Use when the user asks to open, create, update, or refresh a PR/pull request.
Read the Redis Patterns for Coding Agents documentation before answering Redis questions or making Redis changes.
Reply to unresolved PR review comments that clearly relate to the current conversation. Use when the user asks to respond to PR review feedback without resolving threads or editing code.
Run code review tools in parallel, validate findings with a second-opinion agent, and aggregate a comprehensive review report.
Organize and update code-related issues in a consistent table with stable issue IDs, type, concise file-and-line-aware descriptions, and current status. Use when code review findings, bugs, risks, or suggestions need to be listed, summarized, tracked, or updated during a conversation.
基于 SOC 职业分类
| name | commit |
| description | Create a git commit following the Conventional Commits specification. Use when the user asks to commit staged changes or create a commit message. |
| disable-model-invocation | false |
| user-invocable | true |
| allowed-tools | Bash(git diff:*) Bash(git branch:*) Bash(git log:*) |
git diff --stagedgit branch --show-currentgit log --oneline -5Create a single git commit from the staged changes only.
git add. Never run git push. Only commit what is already staged.Follow Conventional Commits (https://www.conventionalcommits.org/en/v1.0.0/):
<type>(<optional scope>): <description>
[optional body]
Types:
Append ! after the type/scope for breaking changes (e.g. feat!: change API response format).
git commit -F -.