Agent Continuity Curator is a skill that addresses the problem of short-lived session memory in AI agents. Without persistent memory management, context windows fill up with redundant chat history and stale project details, causing agents to lose behavioral consistency between sessions. This skill solves that by building and maintaining a structured set of durable memory files: SOUL.md for agent persona, USER files for user preferences, and WORKING_MEMORY.md for active project state.
The skill compresses long chat histories into compact, actionable summaries, pruning noise and enforcing strict memory budgets so token usage stays lean. It supports two operating modes: a Hermes-native mode that respects memory limits and delimiters, and a portable mode designed for high-capacity contexts such as Claude, Cursor, and local agent runtimes.
A built-in safety audit reviews memory content before persistence, excluding personally identifiable information, API tokens, secrets, and any unnecessary personal data. When an agent session ends, the skill generates a concise handoff summary that lets a new agent instance resume from exactly the point the previous one stopped.
This skill is appropriate when an agent needs to retain coding style decisions, architectural preferences, or user-specific context across multiple sessions without accumulating stale details. It is not a database or vector store, and it does not provide retrieval over large knowledge bases — its scope is structured working memory for a single agent’s continuity.