원클릭으로
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 페이지를 검토하고 설치를 진행할 수 있습니다.
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.
SOC 직업 분류 기준
| 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