.fleet/context/skills/memory-system-guide/SKILL.md
--- title: AgenticFleet Memory System Guide tags: [memory, documentation, setup] author: AgenticFleet Architect created: 2024-12-29 --- # AgenticFleet Memory System Guide > **A comprehensive guide to using the Two-Tier Memory System (Local + Chroma Cloud) for persistent agent context.** ## Context **When to use this skill:** - You are a new agent or contributor starting a session. - You need to recall past architectural decisions or debugging solutions. - You want to save a new complex solu
npx skillsauth add qredence/agentic-fleet .fleet/context/skills/memory-system-guideInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
A comprehensive guide to using the Two-Tier Memory System (Local + Chroma Cloud) for persistent agent context.
When to use this skill:
Prerequisites:
uv pip install -r .context/scripts/requirements.txt.context/.chroma/config.yaml.At the start of a session, always hydrate the local context.
uv run python .fleet/context/scripts/memory_manager.py init
To find information stored in Chroma Cloud:
uv run python .fleet/context/scripts/memory_manager.py recall "how to fix cors error"
This queries the semantic (facts) and procedural (skills) collections.
When you solve a tough problem:
.context/skills/ (e.g., fix-auth-bug.md).SKILL_TEMPLATE.md structure.uv run python .context/scripts/memory_manager.py learn --file .context/skills/fix-auth-bug.md
Summarize your work to keep the history clean.
uv run python .fleet/context/scripts/memory_manager.py reflect
config.yaml is missing or has no keys, the system falls back to local-only (no search).core/ or skills/ unless they are generic templates./learn means the next agent has to solve it again.AGENTS.md (System Instructions).fleet/context/MEMORY.md (Architecture Docs)tools
Analyze the current session and consolidate learnings. Use at the end of a session or task.
devops
Semantic search for memory. Use to find solutions, patterns, or context from Chroma Cloud.
documentation
Ingest new procedural memory (skills, patterns, docs) into the vector database.
testing
Initialize or hydrate the agent's memory system and verify configuration.