conventional-commits
Use when uncommitted changes need to be split into atomic, conventional commits ordered for review. Triggers on "commit this", "make commits", "clean up commits", "commit the changes". In Hedgehog, each Loop step is already meant to be its own commit — this skill matters most whe
Install
npx skills add https://github.com/skyf0xx/hedgehog/tree/master/src/skills/conventional-commits
claude plugin marketplace add https://llmmart.ai/marketplace.json && claude plugin install skyf0xx-hedgehog@llmmart
git clone https://github.com/skyf0xx/hedgehog.git
The skills CLI installs just this skill, for any of its supported agents. Claude Code installs the whole skyf0xx/hedgehog collection as a plugin from our marketplace. Git is the plain clone.
Skill manifest
Conventional Commits
Turn uncommitted changes into a series of atomic, conventional commits
ordered for review, using Hedgehog's commit vocabulary (hedgehog-loop).
When this runs
Normally the Loop commits one step at a time as it goes — schema, then contract, then repository, and so on — so there's nothing to clean up. This skill is for when that didn't happen cleanly:
- A Correction Protocol fix touched an upstream step and several fast-forwarded dependents in one working-tree pass, needing to land as separate commits (one per step, per the Correction Protocol's own rule).
- Work happened outside the Loop's discipline (exploratory changes, a session that didn't commit as it went) and needs reconstructing into the step-shaped history Hedgehog expects.
What "atomic" means here
One commit = one build step, where that applies (one schema, one contract, one repository, etc.) — not one file. A single step may span several files (a Drizzle schema + its migration, a service + its test). If work doesn't map onto a build step (tooling, config, docs), fall back to normal atomic-commit judgment: one logical change per commit.
If a hunk can be removed without breaking the others in its commit, it belongs in its own commit.
Steps
1. Survey the working tree
Run in parallel:
git status(no-uall)git diff(unstaged)git diff --staged(anything pre-staged)git log -10 --onelineto confirm the project's existing commit style- Run
hedgehog statusfor which steps/modules are in flight
Read every changed file's diff fully before grouping — you cannot group changes you haven't read.
2. Group hunks into logical commits
For each hunk, ask: which build step is this part of, for which module?
Group by step first, module second. A hunk in the orders schema and a
hunk in the orders repository are different commits even though both
are "orders" — different steps.
Group together: a schema change with its Drizzle migration; a service with its unit test (tests land with the step they test, not a trailing "add tests" commit); config/tooling changes (lefthook, eslint boundaries, env schema) isolated from any domain step.
Keep separate: different build steps, even for the same module; a Correction Protocol fix from the unrelated new work it landed alongside; different modules' changes.
3. Order the commits for review
- Build-sequence order. Schema before contract, contract before repository, repository before service, service before controller — the same dependency order the Loop builds in.
- Upstream fix before its fast-forwarded dependents, for a Correction Protocol cleanup — the fix commit needs to make sense before the commits that changed because of it.
- Mechanical before novel. Config, generated files, renames first.
4. Propose the plan, then execute
Output the plan as a numbered list using Hedgehog's commit format before committing anything:
feat(orders): schema
feat(orders): contract
fix(orders): correct FK-by-ID reference dropped in schema step
feat(orders): repository
Then execute each commit:
- Stage exactly the hunks for that commit. Use
git add <path>for a whole file; for partial-file staging, write a patch andgit apply --cachedit. - Verify with
git diff --stagedthat only the intended hunks are staged. - Commit with the conventional message.
- Verify clean state with
git statusbefore the next commit.
If a pre-commit hook (lefthook: typecheck/lint/test) fails: fix the issue, re-stage, create a NEW commit — a commit that fails the gate did not happen, so amending would rewrite the wrong thing (see Hard rules).
5. Commit format
<type>(<scope>): <subject>
- type:
featfor build steps; alsofix,chore,docs,refactor,style,test,build,ci,perfas needed. - scope: the domain module name (
orders,users, ...) for a build step, or an infra area (db,contracts,auth,hooks,api,worker,web,mobile,config) for bootstrap/tooling commits. - subject for a build step: the step name itself —
schema,contract,repository,service,api,queue,hooks,screen-web— matchinghedgehog-loop's step tables exactly. For non-step commits, imperative and lowercase, under ~70 chars. - Body only when the why is non-obvious — for a Correction Protocol commit, the body is the explanation ("the commit messages are the explanation").
6. Hard rules
- Never push. Commits only.
- Never
git add -Aorgit add .— specific paths or hunks only. - Never amend. Always new commits.
- Never
--no-verify— a failing gate means the step isn't done, not that the gate is wrong. - Never commit files that look like secrets (
.env,credentials.*,*.pem). Flag and skip. - Never include
Co-Authored-By: Claudeor any AI attribution trailer. - Working tree clean: say so and stop.
- Changes are genuinely one step: one commit is correct, don't split for its own sake.
7. When you're unsure how to split
If two hunks could plausibly belong to the same step or different steps, ask the user once with the proposed plan and an alternative — the full plan, not per-hunk.
Files (hedgehog)
-
SKILL.md 5.6 KB
--- name: conventional-commits description: Use when uncommitted changes need to be split into atomic, conventional commits ordered for review. Triggers on "commit this", "make commits", "clean up commits", "commit the changes". In Hedgehog, each Loop step is already meant to be its own commit — this skill matters most when a Correction Protocol fast-forward touches several steps at once and those fixes need splitting back into per-step commits. --- # Conventional Commits Turn uncommitted changes into a series of atomic, conventional commits ordered for review, using Hedgehog's commit vocabulary (`hedgehog-loop`). ## When this runs Normally the Loop commits one step at a time as it goes — schema, then contract, then repository, and so on — so there's nothing to clean up. This skill is for when that didn't happen cleanly: - A **Correction Protocol** fix touched an upstream step and several fast-forwarded dependents in one working-tree pass, needing to land as separate commits (one per step, per the Correction Protocol's own rule). - Work happened outside the Loop's discipline (exploratory changes, a session that didn't commit as it went) and needs reconstructing into the step-shaped history Hedgehog expects. ## What "atomic" means here One commit = one build step, where that applies (one schema, one contract, one repository, etc.) — not one file. A single step may span several files (a Drizzle schema + its migration, a service + its test). If work doesn't map onto a build step (tooling, config, docs), fall back to normal atomic-commit judgment: one logical change per commit. If a hunk can be removed without breaking the others in its commit, it belongs in its own commit. ## Steps ### 1. Survey the working tree Run in parallel: - `git status` (no `-uall`) - `git diff` (unstaged) - `git diff --staged` (anything pre-staged) - `git log -10 --oneline` to confirm the project's existing commit style - Run `hedgehog status` for which steps/modules are in flight Read every changed file's diff fully before grouping — you cannot group changes you haven't read. ### 2. Group hunks into logical commits For each hunk, ask: *which build step is this part of, for which module?* Group by step first, module second. A hunk in the `orders` schema and a hunk in the `orders` repository are different commits even though both are "orders" — different steps. Group together: a schema change with its Drizzle migration; a service with its unit test (tests land with the step they test, not a trailing "add tests" commit); config/tooling changes (lefthook, eslint boundaries, env schema) isolated from any domain step. Keep separate: different build steps, even for the same module; a Correction Protocol fix from the unrelated new work it landed alongside; different modules' changes. ### 3. Order the commits for review 1. **Build-sequence order.** Schema before contract, contract before repository, repository before service, service before controller — the same dependency order the Loop builds in. 2. **Upstream fix before its fast-forwarded dependents**, for a Correction Protocol cleanup — the fix commit needs to make sense before the commits that changed because of it. 3. **Mechanical before novel.** Config, generated files, renames first. ### 4. Propose the plan, then execute Output the plan as a numbered list using Hedgehog's commit format before committing anything: ``` feat(orders): schema feat(orders): contract fix(orders): correct FK-by-ID reference dropped in schema step feat(orders): repository ``` Then execute each commit: - Stage exactly the hunks for that commit. Use `git add <path>` for a whole file; for partial-file staging, write a patch and `git apply --cached` it. - Verify with `git diff --staged` that only the intended hunks are staged. - Commit with the conventional message. - Verify clean state with `git status` before the next commit. If a pre-commit hook (lefthook: typecheck/lint/test) fails: fix the issue, re-stage, create a NEW commit — a commit that fails the gate did not happen, so amending would rewrite the wrong thing (see Hard rules). ### 5. Commit format ``` <type>(<scope>): <subject> ``` - **type**: `feat` for build steps; also `fix`, `chore`, `docs`, `refactor`, `style`, `test`, `build`, `ci`, `perf` as needed. - **scope**: the domain module name (`orders`, `users`, ...) for a build step, or an infra area (`db`, `contracts`, `auth`, `hooks`, `api`, `worker`, `web`, `mobile`, `config`) for bootstrap/tooling commits. - **subject** for a build step: the step name itself — `schema`, `contract`, `repository`, `service`, `api`, `queue`, `hooks`, `screen-web` — matching `hedgehog-loop`'s step tables exactly. For non-step commits, imperative and lowercase, under ~70 chars. - Body only when the *why* is non-obvious — for a Correction Protocol commit, the body is the explanation ("the commit messages are the explanation"). ### 6. Hard rules - Never push. Commits only. - Never `git add -A` or `git add .` — specific paths or hunks only. - Never amend. Always new commits. - Never `--no-verify` — a failing gate means the step isn't done, not that the gate is wrong. - Never commit files that look like secrets (`.env`, `credentials.*`, `*.pem`). Flag and skip. - Never include `Co-Authored-By: Claude` or any AI attribution trailer. - Working tree clean: say so and stop. - Changes are genuinely one step: one commit is correct, don't split for its own sake. ### 7. When you're unsure how to split If two hunks could plausibly belong to the same step or different steps, ask the user once with the proposed plan and an alternative — the full plan, not per-hunk.
Comments (0)
Sign in to join the conversation.
Reviews (0)
No reviews yet.
No comments yet.