Progressive Memory
Skill by lxgicstudios
Why use this skill?
Reduce context bloat with Progressive Memory. A token-efficient indexing system for AI agents that lets them scan summaries before fetching details.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/lxgicstudios/progressive-memoryWhat This Skill Does
Progressive Memory is a high-efficiency architecture for managing AI context windows by implementing a hierarchical 'index-first' retrieval system. Instead of flooding an agent's context window with thousands of tokens of historical data, this skill organizes information into a top-level index with estimated token costs. Agents scan this summary index first, identifying relevant entries before choosing to 'fetch' full-text content. Inspired by progressive disclosure principles, it ensures that attention budgets are preserved for high-value data, preventing the common issue of 'context rot' where relevant information is buried under irrelevant history.
Installation
To integrate Progressive Memory into your agent workflow, execute the following command in your terminal: clawhub install openclaw/skills/skills/lxgicstudios/progressive-memory. After installation, ensure your existing markdown-based memory files are updated to include the mandatory index tables and ID mapping schema provided in the documentation. For optimal performance, update your system instructions (AGENTS.md) to explicitly direct your agent to 'scan the index' before attempting any memory retrieval.
Use Cases
This skill is perfect for complex, long-running projects where maintaining state across multiple sessions is critical. Software engineers can use it to track technical debt and architectural decisions, while content creators can use it to maintain style guidelines and branding rules across thousands of posts. It is particularly effective for teams using agents to manage ongoing client projects, where a repository of 'gotchas' and 'decisions' helps avoid repeating past mistakes or duplicating work.
Example Prompts
- "Scan the memory index, find the 'Auth Bug' entry, and explain the workaround required to bypass the CLI limitation."
- "Before starting today's sprint, check the memory index for any 'tradeoff' or 'decision' entries related to our database schema."
- "Review the current MEMORY.md file and summarize all entries marked with the 🔴 (gotcha) or 🚨 (rule) icons for my upcoming deployment task."
Tips & Limitations
To maximize the utility of this skill, strictly enforce the icon usage guidelines. The system relies on the agent's ability to interpret visual patterns (icons), so consistent labeling is key. Note that this is a manual indexing system; you or your agent must update the index whenever new memory files are generated. It does not replace a vector database, but rather acts as a lightweight, human-readable alternative that excels in transparency and cost management.
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-lxgicstudios-progressive-memory": {
"enabled": true,
"auto_update": true
}
}
}Tags(AI)
Flags: file-read, file-write
Related Skills
script-gen
Generate package.json scripts with AI. Use when setting up npm scripts.
email-template-gen
Generate responsive email templates. Use when building transactional emails.
branch-namer
Generate descriptive git branch names from plain English. Use when you need a branch name that follows conventions.
cloudflare-gen
Generate Cloudflare Workers configuration and code. Use when building on the edge.
adr-writer
Generate Architecture Decision Records with AI. Use when documenting technical decisions.