Releases: elev1e1nSure/quill-commit
Releases · elev1e1nSure/quill-commit
v1.2.0-beta
Secret filtering, split commits, and a cleaner TUI. Several long-standing bugs fixed.
✨ Features
- Three-layer secret filtering — quill-commit now refuses to stage or send credentials to the model. Files are blocked by name (
.env,*.pem,*_rsa,credentials*…), by content (known API key patterns for OpenRouter, AWS, GitHub, Slack, Google), and at the staging level — only files that passed both checks are ever added. If your working tree contains nothing but blocked files, the watcher goes quiet with a single log message and waits. - Split commits — when a diff contains unrelated changes, the model can now return multiple commit groups. Each group is committed separately, keeping your history atomic without any manual intervention.
- Manual amend (
a) — pressaat any time to trigger an AI-assistedgit commit --amend. quill-commit merges your current changes into the last commit and rewrites the message to cover everything. - Error detail view (
ctrl+o) — when a pre-commit hook blocks a commit, the TUI now shows the first meaningful line of the error inline. Pressctrl+oto expand the full output alongside the model's suggested fix.
🐛 Fixes
- Fixed the delay unit: model-suggested delays were being treated as minutes instead of seconds, causing waits up to 60× longer than intended.
- Sensitive files (credentials, config containing keys) are now created with
0600permissions instead of0644. - Once a diff fails a commit hook, the watcher now remembers it and silently skips identical diffs on future ticks instead of retrying and failing again each cycle.
🔧 Maintenance
- The TUI log now shows only commits, errors, and quarantine warnings. Routine checks, delay countdowns, and model decisions no longer clutter it — those are reflected in the status bar.
log.txtnow includes error detail and uses proper severity levels (DEBUG/INFO/WARN/ERROR), making it useful for actual debugging.
v1.1.0
The model now understands your project before deciding what to commit.
✨ Features
- Project context in every request — quill-commit now reads your README, recent commit history, and top-level package list and sends it with each diff. The model knows what kind of project it's working on, so commit messages are scoped and accurate instead of generic.
- Prompt caching — if the model you're using supports it, the static project context is cached between checks. Repeated requests within a session cost significantly less.
- Windows binary — pre-built
.exeis now included in every release.
🐛 Fixes
- Fixed a bug where a connection error could leave the retry counter in a stuck state, causing the watcher to behave as if it had already used up its delay budget.