Skip to main content
Coming Soon - Agent orchestration features are planned for Conductor v1.0.

What are Conductor Agents?

In Conductor, agents are autonomous units of work that can:
  • Execute tasks independently
  • Communicate with other agents
  • Maintain internal state
  • Respond to events
  • Make decisions based on context

Planned Features

Agent Lifecycle

Agent Types

  • Task Agents
  • Decision Agents
  • Coordinator Agents
  • Monitor Agents
Execute specific, well-defined tasksExample: Email processor, data validator, report generator

Agent Communication

Agents will communicate through:
  • Direct Messages: One-to-one communication
  • Broadcasts: One-to-many announcements
  • Pub/Sub: Topic-based messaging
  • Request/Reply: Synchronous interactions

Integration with Edgit

Agents registered in Edgit are automatically available in Conductor:
# Register agent in Edgit
edgit add agent email-processor src/agents/email.ts

# Deploy agent version
edgit tag email-processor v1.0.0

# Conductor auto-discovers and can orchestrate it

Coming Soon

  • Agent SDK documentation
  • Communication protocols
  • State management patterns
  • Error handling strategies
  • Performance tuning guides
Interested in agent development? Follow updates at conductor/agents.