원클릭으로
commit-message
Generate conventional commit messages - use when creating commits, writing commit messages, or asking for git commit help
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Generate conventional commit messages - use when creating commits, writing commit messages, or asking for git commit help
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Firecrawl gives AI agents and apps fast, reliable web context with strong search, scraping, and interaction tools. One install command sets up three skill segments: live CLI tools, app-integration build skills, and outcome-focused workflow skills. Route the reader to the right usage path after install.
Generate conventional commit messages - use when creating commits, writing commit messages, or asking for git commit help.
Create a decision history record in the history/ directory. Use before writing any implementation code for a new feature, architecture change, or significant technical decision.
Full development workflow from planning through deployment for AI Agent features. Use when developing new features, making significant architecture changes, or starting work on any non-trivial implementation.
Test execution workflow - run unit tests, linting, and type checking. Use when verifying code quality, running the full test suite, or checking before a commit.
Code review checklist - use for checking Python code quality, bugs, security issues, and best practices. Use when a user asks for a code review, needs to assess whether a change is safe to merge, or needs to review AI-agent code for production risk.
SOC 직업 분류 기준
| name | commit-message |
| description | Generate conventional commit messages - use when creating commits, writing commit messages, or asking for git commit help |
Generate commit messages following the Conventional Commits specification.
<type>(<scope>): <description>
[optional body]
[optional footer]
| Type | Description | When to Use |
|---|---|---|
feat | New feature | Adding new functionality |
fix | Bug fix | Fixing existing bugs |
docs | Documentation | README, docs, comments only |
style | Formatting | Code style (no logic change) |
refactor | Refactoring | Code change without new features/fixes |
perf | Performance | Performance improvements |
test | Testing | Adding or updating tests |
build | Build system | Dependencies, build tools |
ci | CI/CD | GitHub Actions, pipeline changes |
chore | Maintenance | Maintenance tasks |
BREAKING CHANGE: descriptionfix(auth): prevent redirect loop on expired sessions
feat(api): add rate limiting to public endpoints
- Limits requests to 100/minute per IP
- Returns 429 status with retry-after header
- Configurable via RATE_LIMIT_MAX env variable
feat(api)!: change response format to JSON
BREAKING CHANGE: API now returns JSON instead of XML