원클릭으로
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>"