
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.
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.
Initialize or hydrate the agent's memory system and verify configuration.
Ingest new procedural memory (skills, patterns, docs) into the vector database.
Analyze the current session and consolidate learnings. Use at the end of a session or task.
--- title: Repository Cleanup and Git Hygiene tags: [git, cleanup, maintenance, hygiene] author: OpenCode created: 2024-12-30 --- # Repository Cleanup and Git Hygiene ## Context **When to use this skill:** - Repository has accumulated unused directories from various AI tools - Files are tracked despite being in `.gitignore` (committed before rule was added) - GitHub Agentic Workflows logs are taking up disk space - Need to clean up before a release **Why this matters:** - Keeps repository
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: dspy-agent-framework-quick-ref description: Quick reference card for DSPy + Agent Framework integration patterns: typed signatures, assertions, routing cache, and agent handoffs. --- # DSPy + Agent Framework Quick Reference ## Typed Signatures ```python class TaskRouting(dspy.Signature): task: str = dspy.InputField(desc="Task to route") team: str = dspy.InputField(desc="Available agents") decision: RoutingDecisionOutput = dspy.OutputField() class RoutingDecisionOutput(B
--- 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
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.
Context-aware development assistant for AgenticFleet with auto-learning and dual memory (NeonDB + ChromaDB). Handles development workflows with intelligent context management.
Semantic search for memory. Use to find solutions, patterns, or context from Chroma Cloud.