Conductor is an AI ecosystem that turns dialogue into production-ready code through interactive and orchestrated agents.
Conductor is a multi-agent framework that provides a robust platform for AI-assisted development and automation. It allows you to create, manage, and orchestrate specialized AI agents that can reason, plan, and execute complex coding tasks by interacting with your codebase.
- Orchestrate Complex Workflows: Define multi-step plans in simple YAML files and let Conductor execute them automatically.
- Interact with Specialist Agents: Dialogue with AI agents that have access to your code, enabling a conversational approach to development.
- Multi-Provider Support: Flexibly switch between different AI providers like Gemini and Claude for each agent.
- Safe & Secure: Agents operate in a secure environment with scoped file system access and human-in-the-loop confirmations for critical operations.
- π¬ Interactive Sessions: Engage in conversations with AI agents to refine ideas and co-create solutions.
- π¨οΈ Conversation Management: Track and manage multi-agent conversations with persistent history and context.
- π€ Multi-Provider AI: Configure different AI models for different agents to leverage the best tool for the job.
- π Environment-Oriented Architecture: Safely manage and operate on multiple projects and environments.
- π οΈ Scoped Tool System: Grant agents secure and controlled access to the file system.
- 𧬠Metaprogramming: Use agents to create and manage other agents, enabling a self-improving system.
- π Plan-Based Execution: Automate complex coding tasks by defining a sequence of steps in a YAML workflow.
- β‘ Parallel Execution: Run multiple agent tasks concurrently for improved performance.
The traditional way: To add a field to a database entity, you need to:
- Write the database migration.
- Change the entity class in the code.
- Update the DTO (Data Transfer Object).
- Expose the new field in the API.
- Update the tests.
With Conductor: You simply instruct the agent:
"Add a 'last_login' date field to the User entity, including the database migration, DTO, and API endpoint."
Conductor then orchestrates the specialist agents needed to execute all steps automatically.
- Developers & Agile Teams who want to accelerate development and automate repetitive coding tasks.
- DevOps Engineers looking to automate the configuration and maintenance of infrastructure as code.
- AI Enthusiasts who want a robust platform to build and experiment with multi-agent systems.
Create your configuration file from the template:
# Copy the example configuration
cp config.yaml.example config.yaml
# Edit with your preferences
nano config.yamlConfigure your environment in the config.yaml file:
# config.yaml
storage:
type: filesystem # or 'mongodb' for team environments
path: .conductor_workspace
# AI Providers Configuration
ai_providers:
default_providers:
chat: cursor-agent # Options: claude, gemini, cursor-agent
generation: cursor-agent
fallback_provider: cursor-agent
# Add directories for your custom tools
tool_plugins:
- custom_tools/
# Timeout configuration (in seconds)
# Default: 600 seconds (10 minutes) for long-running AI operations
timeout: 600# List available agents
conductor --list
# Execute a simple task (stateless, fast)
conductor --agent SystemGuide_Meta_Agent --input "Explain how Conductor works"
# Contextual conversation (with history)
conductor --agent AgentCreator_Agent --chat --input "Create a new agent"
# Interactive session (REPL)
conductor --agent AgentCreator_Agent --chat --interactive
# Install agent templates
conductor --install list
conductor --install web_development
conductor --install portfolioconductor --list# Basic syntax - perfect for automation and quick tasks
conductor --agent <agent_id> --input "<your_message>"
# Practical examples
conductor --agent SystemGuide_Meta_Agent --input "Explain the system architecture"
conductor --agent CommitMessage_Agent --input "Generate commit message for current changes"
conductor --agent CodeReviewer_Agent --input "Review this function: def hello(): pass"# Chat with conversation history - perfect for iterative work
conductor --agent <agent_id> --chat --input "Your message"
# Continue conversation (preserves context)
conductor --agent <agent_id> --chat --input "Continue explaining"# Interactive session after initial message
conductor --agent <agent_id> --chat --input "Start analysis" --interactive
# Direct REPL (no initial message)
conductor --agent <agent_id> --chat --interactive# Show agent details
conductor --info <agent_id>
# Validate system configuration
conductor --validate
# Backup and restore agents
conductor --backup
conductor --restore- Discover Available Agents:
conductor --list - Create a New Agent (if needed): Use
AgentCreator_Agentinteractively - Use the Created Agent:
conductor --agent NewAgent --input "Execute your task" - Check Agent Information:
conductor --info NewAgent
# 1. Create the agent interactively
conductor --agent AgentCreator_Agent --chat --input "Create a CodeReviewer_Agent for Python code quality analysis" --interactive
# 2. Use the created agent (stateless - fast)
conductor --agent CodeReviewer_Agent --input "Review this code: def example(): pass"
# 3. Get agent information
conductor --info CodeReviewer_Agent# Generate commit messages (stateless - perfect for scripts)
conductor --agent CommitMessage_Agent --input "Generate commit message for: added input validation and fixed authentication bug"
# Code analysis in CI/CD
conductor --agent SecurityAuditor_Agent --input "Audit the authentication module" --timeout 300
# Documentation generation
conductor --agent DocWriter_Agent --input "Generate API documentation for the user service"# Use full path
python src/cli/conductor.py --list
# Or make script executable
chmod +x conductor
./conductor --list# List available agents
conductor --list
# System automatically suggests similar agents
conductor --agent TestAgent --input "test"
# Output: β Agent 'TestAgent' not found
# π‘ Similar agents: TestingSpecialist_Agent, SystemGuide_Meta_Agentconductor --validateUsing AgentCreator_Agent (Recommended)
# Interactive agent creation
conductor --agent AgentCreator_Agent --chat --interactive
[AgentCreator_Agent]> Create an agent for database performance analysis
[AgentCreator_Agent]> exitπ‘ Tip: For advanced customization and manual configuration, see the Full Documentation and Agent Design Patterns.
| Command | Description | Example |
|---|---|---|
--list |
List all agents | conductor --list |
--agent --input |
Stateless execution | conductor --agent MyAgent --input "text" |
--agent --chat --input |
Contextual chat | conductor --agent MyAgent --chat --input "text" |
--agent --chat --interactive |
Interactive REPL | conductor --agent MyAgent --chat --interactive |
--info |
Show agent details | conductor --info MyAgent |
--validate |
Validate configuration | conductor --validate |
| Mode | Use Case | Example |
|---|---|---|
Stateless (--input) |
Quick tasks, automation, CI/CD | conductor --agent CodeReviewer --input "review code" |
Contextual (--chat --input) |
Iterative work, related questions | conductor --agent AgentCreator --chat --input "continue building" |
Interactive (--chat --interactive) |
Development, experimentation | conductor --agent AgentCreator --chat --interactive |
Conductor provides robust conversation management for tracking multi-agent interactions:
Key Features:
- Persistent History: All conversations are stored with complete context
- Multi-Agent Collaboration: Multiple agents can participate in a single conversation thread
- Conversation Retrieval: Access and continue previous conversations by ID
- Title & Context Editing: Update conversation metadata for better organization
When Using MongoDB Storage:
# Conversations are automatically tracked and managed
# Access conversation history through the API or CLI
conductor --agent MyAgent --chat --conversation-id <id> --input "Continue from where we left off"π‘ Note: Conversation management is automatically enabled when using MongoDB storage. It provides seamless collaboration between multiple agents working on the same task.
- Full Documentation: Dive deeper into Conductor's architecture, features, and guides.
- Configuration Guide: Learn how to configure workspaces, AI providers, and workflows.
- Agent Design Patterns: Best practices for creating effective agents.
Conductor is an open-source project driven by passion and innovation. Your support helps us maintain the project, develop new features, improve documentation, and grow our community.
- Become a GitHub Sponsor: Support us with recurring contributions directly through GitHub.
- Buy Me a Coffee: Make a one-time or recurring donation to support our work.
- Direct Contributions: For larger contributions or corporate partnerships, please reach out via our Consulting & Advisory Services page.
- Spread the Word: Star our repository, share it with your network, and use Conductor in your projects!
Thank you for being a part of our journey!
We welcome contributions from the community! Please read our Contributing Guide to learn how you can get involved.
Also, be sure to review our Code of Conduct to understand our community standards.
πΌ Conductor - Orchestrating dialogue, transforming ideas into code.