AgenticFleet Memory System Guide

Coordinate local and Chroma Cloud memory to persist agent context across sessions.

108|10|Updated Dec 29, 2024
One-click install
npx skills add https://github.com/Qredence/agentic-fleet --skill agenticfleet-memory-system-guide
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: AgenticFleet Memory System Guide
Source: https://github.com/Qredence/agentic-fleet/tree/main/.fleet/context/skills/memory-system-guide
Command: npx skills add https://github.com/Qredence/agentic-fleet --skill agenticfleet-memory-system-guide

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

AgenticFleet Memory System Guide introduces a two-tier memory system (Local + Chroma Cloud) to persist and recall agent context across sessions, enabling continuity and faster debugging.

Core Features & Use Cases

  • Hydrate and initialize local context at the start of a session to ensure memory is ready for reasoning.
  • Recall past decisions, solutions, and architectural notes using semantic search across local and cloud memory.
  • Learn and index new solutions by saving them as records in the memory store for future reuse.
  • Reflect at session end to summarize activity and keep memory history clean.

Quick Start

Initiate memory hydration, perform recall and learning steps, and reflect at the end of the session:

  • Hydrate local context: uv run python .fleet/context/scripts/memory_manager.py init
  • Recall information: uv run python .fleet/context/scripts/memory_manager.py recall "how to fix cors error"
  • Learn new skills: uv run python .fleet/context/scripts/memory_manager.py learn --file .context/skills/fix-auth-bug.md
  • End of session reflection: uv run python .fleet/context/scripts/memory_manager.py reflect

Frequently Asked Questions about AgenticFleet Memory System Guide

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

FAQPage Schema
How do I persist agent context across multiple sessions for long-running tasks?

You can persist agent context across sessions by using a two-tier memory system that coordinates local storage and Chroma Cloud. This setup enables semantic search and saves new learnings for future reuse across different projects.

What is the best way to recall past debugging solutions and architectural decisions?

The best way to recall past debugging solutions is through semantic search across local and cloud memory. By querying the memory manager, you retrieve relevant historical context to accelerate current debugging and reasoning.

How do I initialize local memory context at the start of a new session?

To initialize local memory context at the start of a new session, run the memory manager hydration script. This process prepares the local memory hydrator to ensure your context is ready for immediate reasoning and recall.

Do I need Python and uv to use the Chroma Cloud memory system?

Yes, you need Python and uv installed for execution, along with a configured Chroma Cloud and a local memory hydrator. These dependencies are required to enable persistent context and semantic search capabilities.

How does an agent learn and index new solutions for future reuse?

An agent learns and indexes new solutions by saving them as records in the memory store. You pass a file to the memory manager, which processes and stores the learning for future semantic search and retrieval.

When should I use end of session reflection for agent memory history?

You should use end of session reflection to summarize activity and keep memory history clean. Running the reflection command at the end of a session ensures the persistent memory store remains organized for future use.