← ClaudeAtlas

memory-orchestrationlisted

Analyze context management, memory systems, and state continuity in agent frameworks. Use when (1) understanding how prompts are assembled, (2) evaluating eviction policies for context overflow, (3) mapping memory tiers (short-term/long-term), (4) analyzing token budget management, or (5) comparing context strategies across frameworks.
aiskillstore/marketplace · ★ 329 · AI & Automation · score 79
Install: claude install-skill aiskillstore/marketplace
# Memory Orchestration Analyzes context management and memory systems. ## Process 1. **Trace context assembly** — How prompts are built from components 2. **Identify eviction policies** — How context overflow is handled 3. **Map memory tiers** — Short-term (RAM) to long-term (DB) 4. **Analyze token management** — Counting, budgeting, truncation ## Context Assembly Analysis ### Standard Assembly Order ``` ┌─────────────────────────────────────────┐ │ 1. System Prompt │ │ - Role definition │ │ - Behavioral guidelines │ │ - Output format instructions │ ├─────────────────────────────────────────┤ │ 2. Retrieved Context / Memory │ │ - Relevant past interactions │ │ - Retrieved documents (RAG) │ │ - User preferences │ ├─────────────────────────────────────────┤ │ 3. Tool Definitions │ │ - Available tools and schemas │ │ - Usage examples │ ├─────────────────────────────────────────┤ │ 4. Conversation History │ │ - Previous turns (user/assistant) │ │ - Prior tool calls and results │ ├─────────────────────────────────────────┤ │ 5. Current Input │ │ - User's current message │ │ - Any attachments/context │ ├─────────────────────────────────────────┤ │ 6. Agent Scratchpad (Optional) │ │ - Current thinking/planni