ワンクリックで
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