ワンクリックで
commit
Conventional Commits 1.0 generator. Stages relevant files, infers type(scope): description, never uses --no-verify.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Conventional Commits 1.0 generator. Stages relevant files, infers type(scope): description, never uses --no-verify.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Ring 3 evolution engine. Analyzes session observations, generates and improves evolved skills, shows metrics dashboard. Subcommands: status, history, rollback, reset. Use for post-session review and skill improvement.
State-persisted autonomous pipeline: spec → go → audit → eval → ship → evolve in one command. Auto-detects direct/council/interactive mode. Crash-recoverable via PIPELINE-*.json. Hands-off until PR.
Core router. Always active. Auto-invokes matching skill before every response. Runs confusion protocol on high-risk ambiguity.
Loop-breaking self-diagnosis. Use when 3+ consecutive failures occur, circular retries persist, or context overwhelms the session.
Audit phase. Parallel review: code quality + security + tests. Semantic dedup of cross-mode findings. Outputs PASS/WARN/FAIL per dimension. Validates spec coverage.
Context window manager. Snapshots session state, compacts conversation, and resumes via hook. Use when context exceeds 70% or a large new task begins.
| name | commit |
| description | Conventional Commits 1.0 generator. Stages relevant files, infers type(scope): description, never uses --no-verify. |
Gather context — run in parallel:
git status — see what changedgit diff HEAD — see the actual diffgit log --oneline -5 — match existing commit styleDetermine type:
| Type | When |
|---|---|
feat | New feature or capability |
fix | Bug fix |
refactor | Code change, no behavior change |
docs | Documentation only |
test | Adding or correcting tests |
build | Build system or dependencies |
chore | Maintenance task |
ci | CI/CD configuration |
style | Formatting, whitespace |
perf | Performance improvement |
Generate message: type(scope): description
! before :Stage and commit:
git add <specific files> — prefer explicit files over git add -Agit commit -m "type(scope): description"| Excuse | Rebuttal | What to do instead |
|---|---|---|
| "I'll just use a generic message" | Generic messages make git history useless. | Spend 5 seconds analyzing the diff — the type and scope are obvious from the changes. |
| "The user didn't specify a format" | Conventional Commits is the project standard — guard will block non-CC messages anyway. | Always generate CC format. |
| "I'll commit everything together" | Unrelated changes in one commit make bisect and revert impossible. | If changes span multiple concerns, suggest splitting first. |
git status checked before staginggit add -A blindly)type(scope): description formatfeat for a bug fix, fix for a new feature--no-verify to bypass hooks