commit-sequence

A workflow for splitting a working tree's unrelated changes into a series of smaller, reviewable Git commits. A working tree is the set of project files currently changed on your machine.

In plain words
What is it for?
It examines changes, proposes logical groups, waits for confirmation, and then stages and commits the selected groups.
Why use it?
It prevents separate features from being mixed into one confusing commit and keeps files that must change together connected.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/bablsoft/accessflow/commit-sequence
Any agent
npx skills add bablsoft/accessflow --skill commit-sequence
Clone the repo
git clone --depth 1 https://github.com/bablsoft/accessflow

Made for: Claude Code, Codex.

Per session 96 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,112 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00096 $0.01112
Opus 5 $0.00048 $0.00556
Sonnet 5 $0.00019 $0.00222
Haiku 4.5 $0.00010 $0.00111

Measured yesterday against content hash a4fc61ed20f4, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

commit-sequence scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/commit-sequence/SKILL.md · 100 lines

How it starts

The opening of the file, as written. The whole thing — 100 lines — stays where its author put it; the contents beside it link to each section on GitHub.

commit-sequence

When to use

A working tree with several unrelated or separable changes. If everything is one change, just commit it — this skill exists to avoid the 40-file "misc" commit nobody can review.

Procedure

1. Read the tree

git status --short
git diff --stat
git diff --cached --stat

Note anything untracked that you did not create — never sweep those in. Ask, or leave them.

2. Propose groups

Present a numbered list: group name, conventional-commit subject, and the files. Then stop and let the user adjust before anything is staged.

3. Group by change, not by directory

AccessFlow's real logical units cut across the tree:

Unit Files that belong together
A backend feature the module's api/ + internal/ + its tests + its migration (+ .sql.conf) + messages.properties + the six locales
An engine change engines/<id>/** and connectors/<id>/connector.jsonnever split: a version bump without the re-pinned SHA fails CI and leaves the catalog pointing at a jar whose hash does not match
A frontend feature src/api/<domain>.ts + the page/components + en.json + the six locales + e2e/tests/<flow>.spec.ts
A validation change the backend DTO constraint and the mirroring Form.Item rule — the parity rule makes these one commit by definition
A website change website/**.html + sitemap.xml (+ frontend/src/config/docs.ts when anchors moved)
A config knob the *Properties record + application.yml + the docs/09-deployment.md row

4. Never split these

  • An engine pom.xml version bump from its connectors/<id>/connector.json pin.
  • A migration from its .sql.conf sidecar.
  • An i18n key from its six translations.
  • A backend constraint from its frontend rule.

Splitting any of these leaves an intermediate commit that fails CI — which breaks bisect.

5. Commit each group

Stage explicitly by path (never git add -A), then commit with a heredoc so the body survives:

Read the full file on GitHub · 100 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 100 lines · 96 tokens per session scan A a4fc61ed20f4

Subscribe to this mod's changes

commit-sequence is a skill published in the GitHub repository bablsoft/accessflow (4 stars, last pushed yesterday), licensed Apache-2.0. It adds 96 tokens to every session and 1,112 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

connect_polaris_catalog

Guides the agent to ask the user for their preferred authentication mode and credentials when they request to connect to the Polaris catalog, rather than using default credentials.

sankeerthnagapuri/apache-polaris-iceberg-ai-mcp · 37 tokens

catalyst-center-readonly

Query Cisco Catalyst Center read-only — device inventory, site hierarchy, wireless, assurance health, compliance, software images, events. All 514 read-only API operations reachable through 8 grouped dispatchers. Use when asked what Catalyst Center manages, where a device sits, what its health or compliance state is…

automateyournetwork/netclaw · 78 tokens

aws-security-audit

AWS security auditing — IAM users/roles/policies, CloudTrail API events, security posture analysis. Use when auditing IAM permissions, investigating security incidents, checking MFA compliance, or tracing API activity in CloudTrail.

automateyournetwork/netclaw · 47 tokens

agt-policy-authoring

Create and validate a minimal AGT Copilot CLI policy tailored to the repository being inspected.

microsoft/agent-governance-toolkit · 23 tokens

auditing-aws-s3-bucket-permissions

Systematically audit AWS S3 bucket permissions to identify publicly accessible buckets, overly permissive ACLs, misconfigured bucket policies, and missing encryption settings using AWS CLI, S3audit, and Prowler to enforce least-privilege data access controls.

adriannoes/awesome-agentic-ai · 62 tokens

github-awesome-copilot-git-commit

Generate high-quality, atomic Conventional Commits by analyzing Git changes, recommending logical commit boundaries, validating commit messages, and assisting with PRs, changelogs, and releases.

tuanductran/hr-skills · 45 tokens