system-init

Initialize agent memory by creating templates, config files, and recall scratchpad.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

Initialize the agent's memory system by creating core templates, configuration files, and the recall scratchpad, ensuring a ready context for operation.

Core Features & Use Cases

  • Template Hydration: Copies core/.template.md to active core/.md files when missing to establish usable memory templates.
  • Configuration Setup: Creates or verifies the .fleet/context/.chroma/config.yaml from a template to enable persistent memory storage.
  • Recall Scratchpad: Generates recall/current.md to hold the current session context for quick reference.
  • Startup/Repair Scenarios: Run at project startup or after memory repairs to guarantee a consistent baseline across environments.

Quick Start

Run initialization to hydrate templates, configure memory, and prepare recall: uv run python .fleet/context/scripts/memory_manager.py init After completion, verify status: uv run python .fleet/context/scripts/memory_manager.py status

Frequently Asked Questions about system-init

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

FAQPage Schema
How do I initialize an agent memory system with recall templates and configuration files?

Initializing an agent memory system requires running memory_manager.py via uv to hydrate core templates, generate the .fleet/context/.chroma/config.yaml configuration file, and create the recall/current.md scratchpad for session context.

When should I run a memory system initialization script for my project?

Run memory system initialization at project startup or after completing memory repairs to guarantee a consistent baseline across environments and ensure a ready operational context.

What does template hydration do when setting up a memory configuration?

Template hydration copies core/*.template.md files to active core/*.md files when they are missing, establishing usable memory templates that form the baseline structure for the agent's persistent memory system.

Can I use uv to set up a Chroma configuration for persistent memory storage?

Yes, you can use uv to run memory_manager.py, which creates or verifies the .fleet/context/.chroma/config.yaml file from a template to enable persistent memory storage for the agent.

How do I verify memory system status after running initialization?

Verify memory system status by running the command "uv run python .fleet/context/scripts/memory_manager.py status" after the initialization process completes to confirm templates and configuration are active.

What is a recall scratchpad and why does my memory system need it?

A recall scratchpad is a file named recall/current.md that holds the current session context for quick reference, ensuring the agent has immediate access to operational context during active use.