tiered-memory

Implement a three-tier hot, cold, and wiki memory model for Squad agents.

Updated Nov 11, 2025
One-click install
npx skills add https://github.com/acmeleme/Conversation-Knowledge-Mining-Solution-Accelerator --skill tiered-memory-acmeleme
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: tiered-memory
Source: https://github.com/acmeleme/Conversation-Knowledge-Mining-Solution-Accelerator/tree/main/.squad/templates/skills/tiered-memory
Command: npx skills add https://github.com/acmeleme/Conversation-Knowledge-Mining-Solution-Accelerator --skill tiered-memory-acmeleme

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Agents currently load their full context history on every spawn, causing bloated payloads and noisy data that slow decision-making.

Core Features & Use Cases

  • Three-tier memory model (Hot, Cold, Wiki) to keep only relevant context in fast access paths while preserving durable knowledge for reference.
  • Improves latency and memory efficiency for long-running, multi-session tasks, onboarding, debugging, and knowledge consolidation.
  • Supports on-demand loading of cold or wiki content via spawn templates or flags.

Quick Start

Spawn an agent with hot memory loaded by default and add --include-cold or --include-wiki as needed.

Frequently Asked Questions about tiered-memory

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I reduce agent context payload for multi-session tasks?

Reduce agent context payload by implementing a three-tier memory model that separates hot, cold, and wiki knowledge. Agents load immediate hot context by default while keeping durable knowledge stored, preventing bloated payloads and noisy data during long-running tasks.

What is the best way to manage hot and cold memory for long-running conversations?

Manage hot and cold memory by loading fast-access hot context by default and retrieving cold summarizations on demand. Use spawn templates or flags like --include-cold to optionally load historical data when current context becomes bloated during multi-session conversations.

Why does my agent load the full context history on every spawn?

Agents load full context history on every spawn because they lack a tiered memory model to separate active data from durable knowledge. Implementing distinct hot, cold, and wiki memory tiers enforces selective loading to prevent payload bloat and slow decision-making.

Can I load wiki knowledge on-demand during agent debugging?

You can load wiki knowledge on-demand during debugging by using the --include-wiki flag or spawn templates. This keeps durable reference knowledge separate from immediate hot context, ensuring the agent retrieves deep documentation only when needed.

Does tiered memory work for agent onboarding and knowledge consolidation?

Tiered memory works for agent onboarding and knowledge consolidation by preserving durable wiki knowledge while maintaining fast access to current hot context. It improves latency and memory efficiency across multi-session tasks by isolating immediate data from long-term references.