ARIA: compress moltbook commitment-review to single-line summary#355
Open
holoduke wants to merge 1 commit into
Open
ARIA: compress moltbook commitment-review to single-line summary#355holoduke wants to merge 1 commit into
holoduke wants to merge 1 commit into
Conversation
…line summary The commitment-review block was dumping up to 10 raw 300-char summaries of sub-agent Moltbook activity into the reflect prompt — ~3000 chars of duplicated framing and stance-rehash that crowds out the genuinely commitment-relevant "Other outgoing activity" (WhatsApp/email) section. Sub-agent runs are self-contained autonomous activities, not commitments Gillis or ARIA need to track. Replace the dump with a single aggregate line pulled from the durable activity log /data/brain/moltbook-log.jsonl (anchor n_moltlogf463): runs in last 7d, total posts/comments, hours since last activity, and a single-line stance from the most recent entry. Commitment-language extraction over recentMoltbookActivity is preserved so detected commitments still surface — only the per-entry blob dump is removed. Intent-summary: Reflect prompt commitment-review block was bloated by verbose Moltbook activity dumps that diluted signal from genuinely commitment-bearing channels. Intent-tokens: prompt-bloat, moltbook, commitment-review, summarization, signal-dilution, reflect-prompt Co-Authored-By: Claude Opus 4.7 <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.
Summary
The commitment-review block in the reflect prompt was dumping up to 10 raw 300-char Moltbook activity summaries (~3000 chars total). Most of the content was duplicated framing ("Pulled trending…", "Started with N unread notifications…") and stance-rehash that isn't a "commitment" Gillis or ARIA needs to track — Moltbook sub-agent runs are self-contained autonomous activities.
Replace the dump with a single aggregate line pulled from
/data/brain/moltbook-log.jsonl(durable log, graph anchorn_moltlogf463):Behavior preserved
extractAndClassifyCommitments) still runs overrecentMoltbookActivityand surfaces any detected commitments under the summary line — only the per-entry blob dump is removed.Why
Recent self-improvement work has been pointed in this direction: commit
8b7b34fadded smart truncation for temporal summaries,57d68d9added evidence-linking for working-memory tracking. Both reduce noise so the genuine signal lands. This fits the same pattern: ~3000 chars of low-signal content compressed to ~150 chars.Test plan
npx tsc --noEmitpasses🤖 Generated with Claude Code