.fleet/context/system/init/SKILL.md
Initialize or hydrate the agent's memory system and verify configuration.
npx skillsauth add qredence/agentic-fleet system-initInstall 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.
This skill handles the initialization of the agent's memory system. It ensures that the necessary directory structures, configuration files, and core context templates are in place.
Run this command at the start of a new project or when you need to reset/repair the memory system structure.
uv run python .fleet/context/scripts/memory_manager.py init
core/*.template.md to active core/*.md files if they don't exist..chroma/config.yaml exists (creating from template if needed).recall/current.md for the current session context.After initialization, set up Chroma Cloud:
Edit config: Add your Chroma Cloud credentials to .fleet/context/.chroma/config.yaml:
cloud:
tenant: "your-tenant"
database: "your-database"
api_key: "your-api-key"
Create collections: Run the setup command to create collections in Chroma Cloud:
uv run python .fleet/context/scripts/memory_manager.py setup-chroma
Verify status: Check that everything is connected:
uv run python .fleet/context/scripts/memory_manager.py status
| Collection | Name | Purpose |
| ------------ | ------------------------ | ---------------------------- |
| semantic | agentic-fleet-semantic | Facts about project and user |
| procedural | agentic-fleet-procedural | Learned skills and patterns |
| episodic | agentic-fleet-episodic | Session history and context |
Instead of config file, you can use environment variables:
CHROMA_API_KEY - Your Chroma Cloud API keyCHROMA_TENANT - Your tenant nameCHROMA_DATABASE - Your database nametools
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.
development
Context-aware development assistant for AgenticFleet with auto-learning and dual memory (NeonDB + ChromaDB). Handles development workflows with intelligent context management.