Merged
Conversation
If the agent has been offline for 7+ days, it now prunes old entries from seen_posts, commented_on, voted_on, and replied_comments on load. Previously this only happened during the monthly prune in the heartbeat, so an agent stopped for weeks would restart carrying thousands of stale post IDs. - New _prune_if_stale() called during _load() - Threshold: 7 days offline triggers cleanup - Prune age matches offline duration (not fixed 30 days) - New total_tracked property for diagnostics - Logs count of removed entries on startup Co-Authored-By: Claude Opus 4.6 (1M context) <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
When an agent is stopped for a week or more and restarted, it now automatically cleans up stale entries from its state file on load. Previously the state would accumulate thousands of old post IDs that would never be seen again, wasting memory and slowing down lookups.
How it works
last_heartbeattimestamp"Agent was offline for 14 days — pruned 847 stale entries (23 remaining)."No change for active agents
If
last_heartbeatis within the last 7 days, no auto-prune happens. The existing monthly prune in the heartbeat loop continues to handle gradual cleanup.Test plan
🤖 Generated with Claude Code