Skip to main content

Module pool

Module pool 

Source
Expand description

Multi-agent orchestration pool.

Manages concurrent agent instances with message passing and fan-out/fan-in patterns. Each agent runs its own perceive-reason-act loop in a separate tokio task.

§Toyota Production System Principles

  • Heijunka: Load-level work across agents
  • Jidoka: Each agent has its own LoopGuard
  • Muda: Bounded concurrency prevents resource waste

Structs§

AgentMessage
Message sent between agents in the pool.
AgentPool
Multi-agent orchestration pool.
MessageRouter
Routes messages between agents in a pool.
SpawnConfig
Configuration for a spawned agent.

Type Aliases§

AgentId
Unique identifier for a spawned agent.
ToolBuilder
Function that builds a ToolRegistry from a manifest.