selfware 0.2.2

Your personal AI workshop — software you own, software that lasts
Documentation
//! Workflow orchestration module
//!
//! This module contains workflow and multi-agent orchestration including:
//! - Workflow execution
//! - Workflow DSL
//! - Parallel execution
//! - Swarm agents
//! - Multi-agent coordination
//! - Planning

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

#[cfg(feature = "workflows")]
pub mod parallel;
#[cfg(feature = "workflows")]
pub mod workflow_dsl;