This repository houses the Meta-Factory framework: a set of tools enabling AI Agents to architect, build, and deploy other AI agents.
Located in services/agent_factory/, this system allows you to:
- Architect: Generate "Shopping Lists" of required agents based on a high-level problem statement.
- Build: Auto-generate executable Python code for new agents.
- Deploy: Automatically assign ports and spin up agent services.
The framework unifies three powerful AI technologies:
- Microsoft Magentic-One: For high-level orchestration (
extras/magentic_one_integration.py). - Microsoft AutoGen: For collaborative agent swarms (
extras/autogen_skills.py). - Local "Cagent": For zero-cost, local code generation using vLLM (
extras/cagent_tools.py).
- Idea: You have a concept (e.g., "A crypto trading swarm").
- Meta-Factory: You ask the factory to build it.
- Execution:
- The factory uses local LLMs to write the code.
- It configures the agents to run locally.
- It spins them up instantly.
services/agent_factory: The core logic (Architect & Builder).extras/: Integration bridges for external AI tools.AGENTS_PROTOCOL.md: Standard operating procedures for the swarm.
- Chat Copilot: Setup Guide - Connect this factory to Microsoft Chat Copilot.