@335g/pi-autocommit
v0.1.19
Published
Auto-commit extension for pi-coding-agent (checkpoint-then-reorganise strategy)
Maintainers
Readme
@335g/pi-autocommit
A pi-coding-agent extension that automatically commits your changes so you never have to write a commit message. It uses a checkpoint-then-reorganise strategy: lightweight checkpoint commits are created at the end of each turn that mutates files, then at the end of the agent loop they are soft-reset and reorganised into logical Conventional Commits by the LLM.
Migrated from
@335g/pi-git? See Migration below. The/git-commitand/git-statuscommands were removed; auto-commit is now the sole feature.
Features
- Automatic checkpoints — commits changes at the end of every turn that mutates files, so intermediate state is never lost.
- LLM-powered reorganisation — at the end of the agent loop, checkpoints are soft-reset and split into coherent Conventional Commits using the assistant's own reasoning as context.
- Heuristic fallback — when the LLM is unavailable, a single Conventional Commit is produced from diff analysis.
- Uncommitted-changes footer indicator — a footer cue shows whether the working tree has changes, so you can spot unintended files before a checkpoint captures them.
- Language support — commit messages follow the conversation's language automatically (English, Japanese, Korean, Chinese, Russian by script), or a fixed language of your choice via
lang. - Merge conflict detection — skips committing when a merge is in progress.
Installation
pi install @335g/pi-autocommitOr add it to your pi package config:
{
"packages": {
"@335g/pi-autocommit": "latest"
}
}How it works
Auto-commit is disabled by default. Enable it by setting "enable": true in .pi/pi-autocommit.json or running /autocommit-enable true; the extension then:
turn_end— After each turn that ran a file-mutating tool (write,edit,bash), if the working tree has changes, it stages everything (git add -A) and creates a checkpoint commit:wip(checkpoint): auto-commit at turn Nagent_end— At the end of the agent loop, it counts the checkpoint commits at HEAD, soft-resets them, and asks the LLM to split the combined diff into logical Conventional Commits (using the assistant's own messages as context). Each logical group is then staged and committed separately.
The footer indicator ([has changes]) reminds you when there are uncommitted changes — check it before writing your next prompt to catch unintended files.
While enabled, agent-initiated destructive or history-interleaving git commands in the bash tool are blocked: git commit (including --amend), git push, git reset --hard, git merge, git cherry-pick, and git rebase. Commits and pushes are blocked so history stays under pi-autocommit's checkpoint-then-reorganise control — a push before agent_end would ship raw checkpoint commits to the remote; reset --hard is blocked because it destroys the index and working tree; merge, cherry-pick, and rebase are blocked because they interleave a foreign commit into the checkpoint run, breaking automatic reorganisation.
Two exceptions make branch integration practical when delegating work to another agent via a separate worktree:
git merge --squashis always allowed — it stages the merged changes without creating a commit, so it cannot break the checkpoint run. This is the recommended way to integrate a worktree branch, and it is immune to the case where the other agent crashed beforeagent_endand leftwip(checkpoint)commits at its branch tip.- Plain
git merge/git cherry-pickare allowed when HEAD holds no checkpoint commits — with a clean HEAD there is no checkpoint run to strand below the foreign commit, so merging a finished worktree branch (whose commits were already reorganised by the other agent) works directly. They are still blocked when checkpoints sit at HEAD; the block reason then suggests/autocommit-organiseor--squash.
If a merge does pull in un-reorganised checkpoint commits from another session (the other agent crashed), both session_start and agent_end report them — the changes are already in the tree, but the wip(checkpoint) entries stay in history, so re-integrate with --squash next time. The reported checkpoints carry the origin worktree branch (Checkpoint-Branch trailer), which is also shown in the commit picker and the /autocommit-organise session completions so you can tell which delegated branch each checkpoint came from.
The block reason follows the configured commit-message language (Japanese when lang is Japanese, otherwise English) and notes that the guard can be disabled with /autocommit-enable false. When disabled, the agent is free to use git on its own.
This runs silently in the background. Notifications appear for progress and errors, but no interactive confirmation is required.
Configuration
Create .pi/pi-autocommit.json in your project root:
{
"lang": "ja",
"enable": true,
"model": "anthropic/claude-sonnet-4"
}| Key | Type | Default | Description |
|-----|------|---------|-------------|
| lang | string | "auto" | Commit message language. "auto" (default) detects it from the conversation (Japanese, Korean, Chinese, Russian by script); Latin-script conversations fall back to English. Any other value — a code ("ja", "ko") or a language name in any language ("Korean", "한국어") — fixes that language |
| enable | boolean | false | Whether auto-commit is active |
| model | string | — | LLM model for commit message generation, in "provider/modelId" format (e.g. "anthropic/claude-sonnet-4"). When omitted, the session's current model is used. |
| scope | object | — | Path-to-scope mapping that fixes the Conventional Commits scope deterministically. When set, the LLM no longer infers the scope; it is resolved from the changed file paths instead. See Scope mapping below. |
| ignoreSubmodules | boolean | false | Keep submodule-related parent-side changes out of auto-commits: gitlink updates (mode 160000 index entries, including absorbed embedded repositories) and .gitmodules. Checkpoint commits and the reorganiser never record these paths, so pin updates are left to you. Detached-orphan detection stays active as an informational notice at session start. See Submodules below. |
The lang resolution priority: the configured value when set (a fixed language wins over detection), else auto-detection from the conversation's user messages, else English. Auto-detection inspects character scripts; the heuristic fallback (used when the LLM is unavailable) only writes Japanese or English.
Disabling auto-commit
{
"enable": false
}Outside a git repository, the extension does nothing regardless of config.
Scope mapping
By default, the commit scope is inferred by the LLM from the changed file paths. When you want the scope to stay fixed — for example, while working on a feature, or when a sub-project lives under a specific directory — set scope to a path-to-scope mapping:
{
"scope": {
"packages/frontend/**": "frontend",
"packages/backend/**": "backend",
"**": "app"
}
}Keys are picomatch globs evaluated against the changed file paths. When a commit touches files that all resolve to the same scope, that scope is used; if files resolve to different scopes (or none match), the scope is omitted (type: subject). The most specific (longest literal) glob wins on conflict.
Once scope is set, the LLM is instructed to write type: subject (no scope) and the scope is injected deterministically — so the scope never drifts. When scope is unset, the previous LLM-driven behaviour is preserved.
The ** glob is a handy way to set a single fixed scope for the whole repo:
{ "scope": { "**": "auth" } }Submodules
By default (manual submodule mode), pi-autocommit never commits inside a submodule. The user commits there; the parent records the resulting gitlink update like any other changed file, and detached-orphan submodule commits are warned about.
When your workflow keeps submodule pin updates out of pi-autocommit's hands entirely, enable:
{ "ignoreSubmodules": true }Checkpoint commits and reorganisation then never record gitlink updates or .gitmodules changes — commits piling up inside a submodule produce no parent-side auto-commits. The pin drift stays visible as an uncommitted change in the footer indicator; commit it manually when you want to move the pin. Detection of detached-orphan submodule commits stays active, shown as an informational notice at session start.
Commit Message Convention
Generated messages follow the Conventional Commits specification:
type(scope): subject
body
footerTypes
| Type | Description |
|------------|-----------------------------------------------------|
| feat | New feature, command, option, or API |
| fix | Bug fix or correction of unintended behavior |
| refactor | Code structure improvement without behavior change |
| chore | Build config, dependencies, CI, repository setup |
| docs | Documentation-only changes |
| test | Adding or modifying tests |
| style | Code formatting (no behavioral impact) |
| perf | Performance improvements |
Migration from @335g/pi-git
@335g/pi-git has been renamed and narrowed in scope to become @335g/pi-autocommit:
- The
/git-commitand/git-statuscommands were removed. Use!git commit/!git statusin pi for manual operations. - The config file moved from
.pi/pi-git.jsonto.pi/pi-autocommit.json. The old file is not read. commitEveryTurnwas renamed toenableand now defaults totrue(installing an autocommit package and getting nothing would be surprising).noBodywas removed — commit messages now always include a body.
To migrate:
pi uninstall @335g/pi-git
pi install @335g/pi-autocommitThen rename your config and adjust keys:
// .pi/pi-autocommit.json
{
"lang": "ja",
"enable": true
}The old @335g/pi-git package is marked deprecated on npm but remains installable.
Development
# Install dependencies
npm install
# Build
npm run build
# Run tests
npm testRequirements
- pi-coding-agent (peer dependency)
- pi-ai (peer dependency)
- pi-tui (optional peer dependency — enables the footer status indicator)
License
MIT © Yoshiki Kudo
