| name | zylos-memory |
| description | Core memory system. Maintains persistent memory across sessions via tiered markdown files following the Inside Out model. Handles Memory Sync (processing conversations into structured memory), session rotation, consolidation, and context-aware state saving. Must be launched via a runtime-appropriate background subagent mechanism โ do not invoke with the Skill tool. |
| disable-model-invocation | true |
| user-invocable | false |
Memory System
Maintains persistent memory across sessions via tiered markdown files.
This skill must be run via a runtime-appropriate background subagent mechanism. For Claude, use the Task tool (subagent_type: general-purpose, model: sonnet, run_in_background: true). For Codex, prefer the session's native subagent tools spawn_agent/wait_agent (host session tools โ they do not appear in codex --help) with a Codex-supported model; do not hardcode sonnet.
Architecture
~/zylos/memory/
โโโ identity.md # Bot soul + digital assets (always loaded)
โโโ state.md # Active working state (always loaded)
โโโ references.md # Pointers to config files (always loaded)
โโโ users/
โ โโโ <id>/profile.md # Per-user preferences
โโโ reference/
โ โโโ decisions.md # Key decisions with rationale
โ โโโ projects.md # Active/planned projects
โ โโโ preferences.md # Shared team preferences
โ โโโ ideas.md # Uncommitted plans and ideas
โโโ sessions/
โ โโโ current.md # Today's session log
โ โโโ YYYY-MM-DD.md # Past session logs
โโโ archive/ # Cold storage