What problem does it solve? Squad agents currently load their full context history on every spawn, which grows unboundedly across sessions and wastes context window space. This Skill defines a three-tier memory model so agents only load the bytes relevant to the current task. ## Core Features & Use Cases - Three-Tier Memory Model: Separates memory into Hot (current session, always loaded), Cold (summarized cross-session history, loaded on demand), and Wiki (durable structured knowledge, selectively read). - Spawn Template Pattern: Provides a ready-to-use spawn prompt template that defaults to Hot-only context, with optional --include-cold and --include-wiki flags for history or domain knowledge. - Scribe Integration Design: Describes how a Scribe agent compresses Hot into Cold at session end and promotes aged Cold entries into Wiki knowledge. - Use Case: When resuming interrupted work, spawn an agent with Hot context plus the Cold summary file instead of replaying full transcripts, cutting context payload size significantly. ## Quick Start Use the tiered-memory spawn template to launch an agent with only hot session context, adding the cold or wiki sections when the task needs history or domain knowledge.