원클릭으로
system-init
Initialize or hydrate the agent's memory system and verify configuration.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Initialize or hydrate the agent's memory system and verify configuration.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Complete guide to the AgenticFleet memory system. Read this first.
Comprehensive guide to integrating DSPy with Microsoft Agent Framework in AgenticFleet, covering typed signatures, assertions, routing cache, GEPA optimization, and agent handoffs.
Quick reference card for DSPy + Agent Framework integration patterns: typed signatures, assertions, routing cache, and agent handoffs.
Automatically creates user-facing changelogs from git commits by analyzing commit history, categorizing changes, and transforming technical commits into clear, customer-friendly release notes. Turns hours of manual changelog writing into minutes of automated generation.
Comprehensive guide for initializing or reorganizing agent memory and project context. Use when setting up a new project, when the user asks you to learn about the codebase, or when you need to create effective memory blocks for project conventions, preferences, and workflows.
Expert Python backend code reviewer that identifies over-complexity, duplicates, bad optimizations, and violations of best practices. Use when asked to review Python code quality, check for duplicate code, analyze module complexity, optimize backend code, identify anti-patterns, or ensure adherence to best practices. Ideal for preventing AI-generated code from creating unnecessary files instead of imports, finding repeated validation logic, and catching over-engineered solutions.
| name | system-init |
| description | Initialize or hydrate the agent's memory system and verify configuration. |
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 name