원클릭으로
conventional-commits
Reference for Conventional Commits format and branch naming. Use this when writing commit messages or creating branches.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Reference for Conventional Commits format and branch naming. Use this when writing commit messages or creating branches.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
E2E test skill that confirms plugin loading works.
Templates and process for creating devcontainer configurations. Use this when setting up a new project, adding devcontainer support, or creating devcontainers for worktrees.
Procedure for creating a git worktree and devcontainer for a new task. Use this when starting a new development task.
Cross-model code review before every PR. Use this after code is written and before pushing.
Mandatory checklist before starting implementation. Use this before writing code for any non-trivial task.
Production Dockerfile and container runtime security checklist. Use this when building Docker/Podman images or configuring container deployments.
| name | conventional-commits |
| description | Reference for Conventional Commits format and branch naming. Use this when writing commit messages or creating branches. |
<type>(<scope>): <short summary>
<optional body: what and why>
<optional footer: breaking changes, issue refs>
| Type | Use for |
|---|---|
feat | New feature |
fix | Bug fix |
docs | Documentation only |
style | Formatting, whitespace (no logic change) |
refactor | Code restructuring (no behavior change) |
test | Adding or updating tests |
chore | Maintenance (deps, config, tooling) |
ci | CI/CD pipeline changes |
perf | Performance improvement |
build | Build system changes |
feat(auth): add OAuth2 PKCE flow
Implements the PKCE extension for the OAuth2 authorization code flow
to support public clients (SPA, mobile).
Closes #123
fix(api): prevent SQL injection in user query
User-supplied sort parameter was concatenated directly into the query.
Now uses parameterized queries.
refactor(payments): extract billing calculator
Moves billing logic from the order handler into a dedicated module
to improve testability and reuse.
Add ! after the type and a BREAKING CHANGE footer:
feat(api)!: change user endpoint response format
BREAKING CHANGE: The /users endpoint now returns a paginated response
instead of an array. Clients must update to handle the new format.
Format: <type>/<ticket-id>-<short-description>
| Type | Use for |
|---|---|
feature/ | New features |
fix/ | Bug fixes |
chore/ | Maintenance |
docs/ | Documentation |
refactor/ | Code restructuring |
test/ | Test additions |
Examples:
feature/PROJ-123-add-oauth-loginfix/PROJ-456-null-pointer-in-parserrefactor/PROJ-789-extract-payment-service