Progressive Memory

Organize AI agent memory into indexed daily and long-term files.

2|Updated Jan 22, 2026
One-click install
npx skills add https://github.com/aztr0nutzs/NET_NiNjA.v1.2 --skill progressive-memory-aztr0nutzs
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: Progressive Memory
Source: https://github.com/aztr0nutzs/NET_NiNjA.v1.2/tree/main/skills/skills-folders/progressive-memory
Command: npx skills add https://github.com/aztr0nutzs/NET_NiNjA.v1.2 --skill progressive-memory-aztr0nutzs

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill addresses the inefficiency of loading large amounts of irrelevant data into an AI's context, which wastes attention and leads to context rot.

Core Features & Use Cases

  • Token Efficiency: Significantly reduces token usage by only loading necessary information.
  • Progressive Disclosure: Presents an index first, allowing the AI to fetch detailed information on demand.
  • Structured Memory: Organizes memory into daily files and long-term storage with clear indexing and summarization.
  • Use Case: An AI agent can quickly scan a concise index of past interactions and decisions, then retrieve only the specific details needed to answer a current complex query, rather than processing thousands of tokens of irrelevant history.

Quick Start

Use the Progressive Memory skill to add a new rule to long-term memory with the ID R2 and summary "Always verify user input before processing".

Frequently Asked Questions about Progressive Memory

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

FAQPage Schema
How does progressive disclosure improve AI agent memory and token efficiency?

Progressive disclosure improves AI agent memory by presenting a concise scannable index first, allowing the agent to fetch detailed information on demand to optimize the attention budget and prevent context rot.

What is the best way to structure long-term memory for an AI agent?

The best way to structure long-term memory is organizing it into daily files and a long-term memory file, each containing a scannable index and detailed entries for observations like rules, gotchas, and decisions.

How do I add a new rule to AI memory using a token-efficient system?

To add a new rule to AI memory, you use the system to append the observation to long-term storage, assigning it a unique ID and a brief summary to be indexed for later retrieval.

Why does loading full chat history waste tokens and cause context rot?

Loading full chat history wastes tokens because it forces the AI to process large amounts of irrelevant data, which degrades attention and leads to context rot, whereas an indexed memory system fetches only necessary details.

Can I use a structured memory system for AI agents without external dependencies?

Yes, you can implement a structured memory system without external dependencies by using internal file references to organize daily files and long-term storage with clear indexing and summarization.

When should I not use progressive disclosure for AI context management?

You should not use progressive disclosure for AI context management when queries require immediate access to all historical details without on-demand fetching, or when token constraints are not a limiting factor.