selfware 0.6.1

Your personal AI workshop — software you own, software that lasts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Workflow orchestration module
//!
//! This module contains workflow and multi-agent orchestration including:
//! - Workflow execution
//! - Workflow DSL
//! - Parallel execution
//! - Swarm agents
//! - Multi-agent coordination
//! - Planning
//! - Coordinator Mode (multi-agent orchestration)

#![allow(unused_imports)] // Re-exports are for public API, not internal use

pub mod multiagent;
pub mod swarm;
pub mod visual_loop;
pub mod workflows;