ワンクリックで
commit-style
Style rules for git commit messages. Use when writing or editing a commit message.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Style rules for git commit messages. Use when writing or editing a commit message.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Style rules for PR review comments and replies. Use when drafting or posting a PR review comment, inline comment, or thread reply.
PR health monitor that checks CI, reviews, comments, and merge status, then autonomously fixes issues. Designed for periodic use with /loop.
Manage tasks in Notion. List, create, update tasks. Use for any Notion task-related operations.
Test-Driven Development guidance. Use during feature-dev Phase 5 (Implementation) or any code implementation. Ensures tests are written BEFORE implementation code, following Red-Green-Refactor cycle.
Execute GitHub CLI commands using the correct Homebrew path. Use when interacting with GitHub PRs, issues, repos, or any gh command.
Create stacked pull requests for GitHub repositories. Use when breaking large features into sequential, dependent PRs with conventional commit titles. Triggers on requests to create stacked PRs, split work into multiple PRs, or organize changes into a PR series.
SOC 職業分類に基づく
| name | commit-style |
| description | Style rules for git commit messages. Use when writing or editing a commit message. |
Write commits that are friendly, professional, and concise. Enough context to understand the "why" when it is not obvious, nothing more.
Co-Authored-By: Claude ..., Co-Authored-By: GPT ..., Co-Authored-By: Copilot ..., or any variant.<type>(<scope>): <short description>
<optional body>
Allowed types: feat, fix, docs, chore, refactor, test, build, ci, perf, style.
Scope is optional. Use it when it adds signal (package, module, feature area). Skip it when the change is repo-wide or obvious from the subject.
Skip the body for trivial changes (typo fixes, one-line tweaks, obvious renames). When you include one:
Trivial fix, subject only:
fix: quote frontmatter values containing double quotes
Small fix with a "why":
fix: add .git suffix to repository URLs
Plain URLs without .git are treated as direct file URLs, not git
repos. The .git suffix ensures the clone step works correctly.
Feature with bullets:
feat(auth): add refresh token rotation
- Rotate refresh tokens on every use, invalidate the previous one
- Add `REFRESH_TOKEN_TTL` env var with a 30 day default
- Return a 401 with `token_reuse_detected` on replay attempts
feat: add thing
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
feat: add thing
🤖 Generated with Claude Code
This commit updates the configuration file to fix the issue that was
causing problems in the previous version of the code.