docs(changelog): daily-memory retention + numeric timestamps#92
Merged
Conversation
Second Jun 12 entry (distinct title per the same-date rule): daily-category memories expire 72h after last update, swept before cap eviction on the next push; the memories API updated_at field is now a JSON number (epoch milliseconds) — breaking for direct API consumers, called out under Upgrading with the migration step. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
|
Preview deployment for your docs. Learn more about Mintlify Previews.
💡 Tip: Enable Workflows to automatically generate PRs for you. |
…diences Greptile P2 on PR #92: the memory_captured line is the operator-side structured log, not a tenant surface — the bullet implied a user-visible signal. Tenants observe expiry through zombiectl memory list; the per-push swept count is scoped to operators running their own runner fleet. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Changelog entry for the daily-memory retention sweep + numeric-millis memory timestamps that merged in agentsfleet/agentsfleet#404 (platform 0.9.0 train).
Jun 12, 2026block with a distinct title, per the template's same-date rule; section order Upgrading → What's new → API reference.updated_attype flip is called out as Breaking with the parse-as-integer migration step (the currentzombiectlalready handles it).memory_capturedlog line.🤖 Generated with Claude Code
Greptile Summary
Adds a second
Jun 12, 2026changelog entry documenting two related platform changes: automatic 72-hour expiry fordaily-category memories and theupdated_atwire-format flip from a decimal-string of epoch seconds to a 64-bit epoch-millisecond integer.Upgradingsection correctly identifies theupdated_attype change, scopes the migration step to direct API consumers, and notes thatzombiectlalready handles it.dailycategory; all other categories (core,conversation, custom) are described as unchanged.Upgrading → What's new → API referencesection order matches the AGENTS.md template; sentence-case headings and second-person voice are consistent throughout.Confidence Score: 5/5
Documentation-only change adding a changelog entry; no code paths, migrations, or API surface are modified by this PR itself.
The entry is a self-contained changelog block. Section order, heading case, terminology, and the breaking-change upgrade notice all conform to the AGENTS.md template. The
updated_attype flip is accurately scoped to direct API consumers, the expiry behaviour is correctly bounded todailycategory only, andzombiectlcompatibility is noted. No factual inconsistencies or style violations were found.No files require special attention.
Important Files Changed
<Update>block documenting daily-memory 72-hour expiry andupdated_atepoch-milliseconds type change; section order, headings, and terminology are consistent with AGENTS.md conventions.Sequence Diagram
sequenceDiagram participant Agent participant Runner participant MemoryStore Agent->>Runner: incoming trigger / run Runner->>MemoryStore: memory push MemoryStore->>MemoryStore: "sweep daily entries where updated_at < now - 72h" MemoryStore-->>Runner: swept_count (operator log line) Runner->>MemoryStore: write new memories Note over MemoryStore: updated_at now returned as epoch-ms integer (was decimal string) MemoryStore-->>Runner: "list/search response { updated_at: 1765500300000 }"Reviews (2): Last reviewed commit: "docs(changelog): scope the expiry-observ..." | Re-trigger Greptile
Context used: