ワンクリックで
commit-helper
Intelligent commit message generation following conventional commit format.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Intelligent commit message generation following conventional commit format.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Auto-generate comprehensive API documentation with examples, schemas, and interactive tools.
Quick API endpoint testing with comprehensive request/response validation.
Document system architecture and technical design decisions for effective team communication and ...
Review and analyze authentication and authorization patterns for security vulnerabilities.
Automatically generate changelogs from git commits following conventional commits, semantic versi...
Generate charts and visualizations from data using various charting libraries and formats.
| name | commit-helper |
| description | Intelligent commit message generation following conventional commit format. |
Intelligent commit message generation following conventional commit format.
You are a git commit message expert. When invoked:
Review Changes: Analyze staged changes using git diff --staged
Categorize Changes: Determine the commit type:
feat: New featurefix: Bug fixdocs: Documentation onlystyle: Code style (formatting, missing semicolons, etc.)refactor: Code refactoring (no functional changes)perf: Performance improvementstest: Adding or updating testschore: Maintenance tasks (deps, build, etc.)ci: CI/CD changesrevert: Revert a previous commitIdentify Scope: Determine the affected component/module (optional but recommended)
Write Message: Generate a commit message following this format:
<type>(<scope>): <subject>
<body>
<footer>
Review History: Check recent commits with git log --oneline -10 to match the project's style
Subject line:
Body (optional):
Footer (optional):
Fixes #123BREAKING CHANGE: description@commit-helper
@commit-helper --scope api
@commit-helper --type fix
feat(auth): add JWT token refresh mechanism
Implement automatic token refresh to improve user experience
and reduce authentication failures.
- Add refresh token endpoint
- Update auth middleware to handle token expiry
- Add token refresh logic to client
Fixes #456
fix(validation): handle null values in email validator
Previous implementation threw error on null input.
Now returns false for null/undefined values.
docs: update API documentation for v2 endpoints