From 0f3679da83cf189271e60cfd7aaba362048d9117 Mon Sep 17 00:00:00 2001 From: mikehasa Date: Thu, 30 Jul 2026 03:30:05 +0800 Subject: [PATCH] chore(release): 0.5.0 --- CHANGELOG.md | 19 ++++++++++++++++++- pyproject.toml | 2 +- 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ba5260b..560a79b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,22 @@ follow [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [0.5.0] - 2026-07-30 + +### Changed +- The MCP tools were renamed from `sentinel_*` to `agentacct_*` (for example + `agentacct_record_section`); the server now exposes only the `agentacct_*` names. + **After upgrading, re-run `agentacct onboard` (or `agentacct setup instructions`)** + so your `CLAUDE.md` / `AGENTS.md` instruction block uses the new tool names, then + restart your coding-agent client. Your recorded history is unaffected: the + pre-rename `sentinel_*` names stay recognized in historical logs, and stored + event data is unchanged. (#22) +- The internal Python package was renamed `agent_chronicle` → `agentacct`, and the + MCP server now advertises the name `agentacct`. Instruction-block markers now + write `agentacct`; the pre-rename `agent-chronicle` / `agent-sentinel` markers + stay recognized, so an existing managed block migrates in place on the next + setup run. (#22) + ## [0.4.0] - 2026-07-29 ### Changed @@ -102,7 +118,8 @@ follow [Semantic Versioning](https://semver.org/spec/v2.0.0.html). `agentacct-claude`, and `agentacct-codex` console scripts. Local-first, observe-only, no telemetry, no provider API keys. Python ≥ 3.11 on macOS / Linux. -[Unreleased]: https://github.com/mikehasa/agentacct/compare/v0.4.0...HEAD +[Unreleased]: https://github.com/mikehasa/agentacct/compare/v0.5.0...HEAD +[0.5.0]: https://github.com/mikehasa/agentacct/releases/tag/v0.5.0 [0.4.0]: https://github.com/mikehasa/agentacct/releases/tag/v0.4.0 [0.3.0]: https://github.com/mikehasa/agentacct/releases/tag/v0.3.0 [0.2.0]: https://github.com/mikehasa/agentacct/releases/tag/v0.2.0 diff --git a/pyproject.toml b/pyproject.toml index 6307afd..32f553e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "agentacct" -version = "0.4.0" +version = "0.5.0" description = "Local-first Agent Work Intelligence for coding agents: usage truth, recorded work, and honest joins" readme = "README.md" requires-python = ">=3.11"