Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .ai/handoff/CURRENT_STATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,3 +153,7 @@ carried a release-gate step that could not run on a CI runner, so the gate
could never pass from that tag, and repository rules correctly refuse both
deletion and update of stable tags. No GitHub Release or PyPI artifact was
ever created for it.

## What `v0.15.4` Targets

`v0.15.4` is the current release candidate. It is not published.
2 changes: 2 additions & 0 deletions ARCHITECTURE.md
Original file line number Diff line number Diff line change
Expand Up @@ -249,3 +249,5 @@ usage justifies a separately reviewed boundary.

`v0.15.3` is the latest published release and remains the install, checksum,
and baseline reference.

`v0.15.4` is the current release candidate. It is not published.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@

## Unreleased

## v0.15.4 — 2026-08-15

- Corrected the MCP write-verb descriptions, which were steering agents into the
review queue. `alice_memory_commit` is now described as the verb for ordinary
memory, to be used whenever the agent learns something worth keeping including
when the user has not asked. `alice_capture` now states that its content is not
returned by `alice_recall` until reviewed. No behaviour changed.
- All eleven core MCP tools accept agent identity fields. Five previously
rejected them (`alice_recall`, `alice_resume`, `alice_recent_decisions`,
`alice_explain`, `alice_memory_correct`), so an agent that stamped `agent_id`
on every call failed on every read.

Additive on the request side. No migration, no schema change, no configuration
change.

## v0.15.3 — 2026-08-15

- First release published from `samrusani/AliceMemory`. Project URLs corrected;
Expand Down
4 changes: 4 additions & 0 deletions CURRENT_STATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,3 +153,7 @@ carried a release-gate step that could not run on a CI runner, so the gate
could never pass from that tag, and repository rules correctly refuse both
deletion and update of stable tags. No GitHub Release or PyPI artifact was
ever created for it.

## What `v0.15.4` Targets

`v0.15.4` is the current release candidate. It is not published.
2 changes: 2 additions & 0 deletions PRODUCT_BRIEF.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,5 @@ Agent developers — people building or operating AI agents who need durable, ex

`v0.15.3` is the latest published release and remains the install, checksum,
and baseline reference.

`v0.15.4` is the current release candidate. It is not published.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -203,3 +203,5 @@ MIT — see [LICENSE](https://github.com/samrusani/AliceMemory/blob/main/LICENSE

`v0.15.3` is the latest published release and remains the install, checksum,
and baseline reference.

`v0.15.4` is the current release candidate. It is not published.
2 changes: 2 additions & 0 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -407,3 +407,5 @@ macOS with `shasum -a 256 -c SHA256SUMS`.

`v0.15.3` is the latest published release and remains the install, checksum,
and baseline reference.

`v0.15.4` is the current release candidate. It is not published.
2 changes: 2 additions & 0 deletions ROADMAP.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,3 +87,5 @@ restore, recorded security disposition) shipped in Phases 4 and 5.

`v0.15.3` is the latest published release and remains the install, checksum,
and baseline reference.

`v0.15.4` is the current release candidate. It is not published.
2 changes: 1 addition & 1 deletion apps/web/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@alicebot/web",
"private": true,
"version": "0.15.3",
"version": "0.15.4",
"packageManager": "pnpm@10.23.0",
"scripts": {
"dev": "next dev",
Expand Down
80 changes: 80 additions & 0 deletions docs/release/v0.15.4-release-notes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
# Alice v0.15.4 Release Notes
<!-- alice-release-state: {"schema_version":"alice_release_document_state_v1","version":"0.15.4","publication_status":"pending","checksums_status":"pending"} -->

**Alice now works the way an agent expects when an agent installs it.**

If you point an MCP-capable agent at Alice and let it record what it learns,
this is the release to take. Two things were making that experience worse than
it needed to be, and both are fixed.

There is no schema change, no migration, and no configuration change.

## The write verbs now point the right way

The tool descriptions were steering agents into a review queue.

`alice_capture` said *"use this whenever you learn something worth keeping"*,
while also being review-gated, so anything an agent recorded through it never
became recallable. `alice_memory_commit` said *"on the user's instruction
('remember this')"*, which told an agent to wait to be asked before recording
anything.

So the tool that invited ambient use was gated, and the tool that works
unattended discouraged unattended use. An agent recording something it had just
learned took the path where the write reports success and `alice_recall` never
returns it.

Both descriptions are corrected. `alice_memory_commit` is now described as the
verb for ordinary memory, to be used whenever the agent learns something worth
keeping, **including when the user has not asked it to remember**.
`alice_capture` now states plainly that its content is not returned by
`alice_recall` until reviewed, and names `alice_memory_commit` as the verb for
immediate recall.

**No behaviour changed.** `alice_capture` is review-gated by design and remains
so. Only the descriptions changed, so that an agent choosing between them
chooses correctly.

## Every core tool accepts an agent identity

Five of the eleven core tools rejected agent identity fields while the other six
accepted them: `alice_recall`, `alice_resume`, `alice_recent_decisions`,
`alice_explain` and `alice_memory_correct`. One of those is a write verb.

An agent that stamps `agent_id` on every call, which the commit tool's own
schema invites it to do, received a hard failure on every read. All eleven now
accept the identity properties.

## Compatibility

Additive on the request side. No property was removed, renamed or made
required, and no response shape changed. Callers that never sent identity are
unaffected; callers that did move from a hard failure to a successful call.

No database migration. No schema change. No configuration change. The core tool
count is unchanged at eleven.

## Known limitations

Unchanged from `v0.15.3`:

- **`/v1` authenticates but does not authorize.** Any valid key can do what any
other valid key can on those routes, and `/v1` writes record no agent, so a
quarantine sweep by key cannot reach them. Keep `/v1` loopback-only.
- **Importers trust the directory you point them at.** A local actor with write
access inside a selected import root can reach content outside it.
- **Archived import evidence is decoded text, not a byte image.** CRLF sources
archive as LF.

One worth stating plainly for anyone integrating an agent: **tool failures
return a single generic code.** Every caller-facing failure reports
`tool_request_failed` with no detail, so an agent cannot distinguish a bad
argument from a missing record from an unbootstrapped database. A wider error
code taxonomy is designed and will land in a later release. Until then, the
server log carries the real reason.

## Install

```bash
pip install alice-memory==0.15.4
```
2 changes: 2 additions & 0 deletions docs/vnext/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,3 +84,5 @@ promotion of generated artifacts into trusted memory.

`v0.15.3` is the latest published release and remains the install, checksum,
and baseline reference.

`v0.15.4` is the current release candidate. It is not published.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "alice-memory"
version = "0.15.3"
version = "0.15.4"
description = "Alice: the continuity layer for AI agents. Local-first memory with provenance, open loops, resumption, and review-governed writes."
readme = "docs/pypi-description.md"
license = "MIT"
Expand Down
Loading