memory-retrieve

Loads task-specific aviation knowledge and charts for flight planning and weather briefing needs.

157|28|Updated Feb 7, 2026
One-click install
npx skills add https://github.com/Fr-e-d/GAAI-framework --skill memory-retrieve-fr-e-d
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: memory-retrieve
Source: https://github.com/Fr-e-d/GAAI-framework/tree/main/.gaai/core/skills/cross/memory-retrieve
Command: npx skills add https://github.com/Fr-e-d/GAAI-framework --skill memory-retrieve-fr-e-d

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill addresses the challenge of overwhelming AI context windows by providing a mechanism to load only the most relevant historical memory for a given task, preventing context contamination and improving efficiency.

Core Features & Use Cases

  • Progressive Disclosure: Implements a 3-level system (Index Scan, Individual ADR Files, Cross-Domain Scan) to fetch memory incrementally.
  • Selective Loading: Ensures only necessary durable memory (decisions, patterns) is loaded, avoiding full memory dumps.
  • Use Case: When implementing a new feature, activate this skill to load only the architectural decisions and relevant patterns related to that specific feature's domain, rather than the entire project's memory.

Quick Start

Load the memory relevant to the 'billing' domain for the current task.

Frequently Asked Questions about memory-retrieve

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

FAQPage Schema
How do I load only relevant historical context for an AI agent without overwhelming the context window?

To avoid overwhelming AI context windows, use a progressive disclosure approach to retrieve minimal relevant memory. This mechanism scans an index file and selectively loads individual ADR files based on domain and level relevance, preventing context contamination.

What is progressive disclosure for AI memory retrieval and how does it work?

Progressive disclosure for AI memory retrieval is a 3-level system that fetches memory incrementally. It applies to AI agents requiring historical context by starting with an Index Scan, moving to Individual ADR Files, and finishing with a Cross-Domain Scan for decision-making and planning.

How do I selectively load architectural decisions and patterns for a specific feature domain?

To selectively load architectural decisions and patterns for a specific feature domain, activate a memory retrieval mechanism that fetches only necessary durable memory. This ensures relevant historical context is loaded for the specific domain rather than dumping the entire project's memory.

Does progressive disclosure work for AI agents needing historical context across different domains?

Yes, progressive disclosure works for AI agents requiring historical context across different domains by implementing a Cross-Domain Scan as its third retrieval level. This fetches relevant decisions and patterns incrementally for planning and implementation phases without full memory dumps.

When should I avoid loading the entire project memory into my AI agent's context?

You should avoid loading the entire project memory into your AI agent's context when implementing features or making decisions. Loading full memory dumps risks context contamination and reduces efficiency, making selective loading of durable memory based on domain relevance the preferred approach.