docs.rs failed to build miyabi-agent-coordinator-0.1.2
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Miyabi Coordinator Agent
Task decomposition, DAG construction, and parallel execution orchestration.
Components
- CoordinatorAgent: Breaks down Issues into executable Tasks
- CoordinatorAgentWithLLM: LLM-enhanced task decomposition
- ParallelExecutor: Manages parallel task execution
Features
Basic Task Decomposition
use CoordinatorAgent;
use ;
# async
Workflow DSL Integration (with workflow_dsl feature)
Execute workflows defined with miyabi-workflow DSL:
use CoordinatorAgent;
use ;
use AgentType;
# async
Conditional Branching
The CoordinatorAgent supports conditional workflow execution:
.branch(name, pass_step, fail_step)- Simple pass/fail branching.branch_on(name, branches)- Custom conditions with multiple paths
Conditions are evaluated against step results, and only the chosen branch is executed. Alternative paths are automatically skipped.