一键导入
commit-message
Generate conventional commit messages by analyzing repository changes following conventionalcommits.org specification
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Generate conventional commit messages by analyzing repository changes following conventionalcommits.org specification
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Automates browser interactions for web testing, form filling, screenshots, and data extraction. Use when the user needs to navigate websites, interact with web pages, fill forms, take screenshots, test web applications, or extract information from web pages.
Create and optimize MEMORY.md memory files or .agent/rules/ modular rules for Antigravity projects. Comprehensive guidance on file hierarchy, content structure, path-scoped rules, best practices, and anti-patterns. Use when working with MEMORY.md files, .agent/rules directories, setting up new projects, or improving Antigravity's context awareness.
Comprehensive code review following OWASP, SOLID, and best practices
Expert guidance for creating Antigravity slash commands. Use when working with slash commands, creating custom commands, understanding command structure, or learning YAML configuration.
Expert guidance for creating, building, and using Antigravity subagents and the Task tool. Use when working with subagents, setting up agent configurations, understanding how agents work, or using the Task tool to launch specialized agents.
Expert guidance for creating Antigravity Workflows. Use when creating new workflows, understanding workflow structure, or learning YAML configuration.
| name | commit-message |
| description | Generate conventional commit messages by analyzing repository changes following conventionalcommits.org specification |
Generate conventional commit messages by analyzing repository changes following the Conventional Commits specification.
Analyze Changes: Examine staged (git diff --cached) and unstaged (git diff) changes to understand the context.
Determine Commit Type: Select the appropriate type from the table below:
| Type | Description |
|---|---|
feat | New feature |
fix | Bug fix |
docs | Documentation only changes |
style | Formatting, whitespace changes |
refactor | Code restructuring without behavior change |
perf | Performance improvement |
test | Adding or correcting tests |
build | Build system or dependency changes |
ci | CI configuration changes |
chore | Maintenance tasks |
revert | Revert previous commit |
Identify Scope: (Optional) Specify the affected codebase area (e.g., auth, api, ui).
Draft Message:
feat(auth): add login).Output Format: Present the message in a code block, followed by the git command.
<type>(<scope>): <short description>
<optional body>
<optional footer>
Git Source:
git add . && git commit -m "<type>(<scope>): <description>" -m "<body>"