2026-07-12 11:28:39 +07:00
|
|
|
//! Workflow engine: interprets `ScriptPrimitive` values (agent, parallel,
|
|
|
|
|
//! pipeline, phase) by spawning subagents, collecting results, and
|
|
|
|
|
//! managing concurrency.
|
2026-07-12 17:49:34 +07:00
|
|
|
//!
|
|
|
|
|
//! Key design points:
|
|
|
|
|
//! - `Parallel` branches run concurrently (capped by semaphore) — this is
|
|
|
|
|
//! the main advantage over single-turn chat.
|
|
|
|
|
//! - `Pipeline` branches run sequentially so each stage sees findings from
|
|
|
|
|
//! the previous one.
|
|
|
|
|
//! - `run_workflow_tracked` accepts a `LiveState` callback that receives
|
|
|
|
|
//! real-time agent status updates for the TUI panel.
|
2026-07-12 11:28:39 +07:00
|
|
|
|
2026-07-11 13:16:10 +07:00
|
|
|
use std::collections::HashMap;
|
2026-07-11 23:45:13 +07:00
|
|
|
use std::sync::{Arc, Mutex};
|
2026-07-11 13:16:10 +07:00
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
|
use super::script::{ScriptPrimitive, WorkflowScript};
|
|
|
|
|
|
2026-07-11 23:45:13 +07:00
|
|
|
static FINDINGS: Mutex<Vec<String>> = Mutex::new(Vec::new());
|
2026-07-11 18:23:01 +07:00
|
|
|
|
2026-07-12 11:28:39 +07:00
|
|
|
/// The lifecycle state of an agent within a workflow run.
|
2026-07-11 13:16:10 +07:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
|
|
|
|
|
pub enum AgentState {
|
|
|
|
|
Idle,
|
|
|
|
|
Running,
|
|
|
|
|
Completed,
|
|
|
|
|
Failed,
|
|
|
|
|
}
|
|
|
|
|
|
2026-07-12 11:28:39 +07:00
|
|
|
/// Timestamped status of one workflow agent.
|
2026-07-11 13:16:10 +07:00
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
|
|
|
pub struct AgentStatus {
|
|
|
|
|
pub state: AgentState,
|
|
|
|
|
pub started_at: Option<i64>,
|
|
|
|
|
pub completed_at: Option<i64>,
|
|
|
|
|
pub error: Option<String>,
|
|
|
|
|
}
|
|
|
|
|
|
2026-07-12 11:28:39 +07:00
|
|
|
/// A single agent tracked within a workflow run.
|
2026-07-11 13:16:10 +07:00
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
|
|
|
pub struct WorkflowAgent {
|
|
|
|
|
pub id: String,
|
|
|
|
|
pub name: String,
|
|
|
|
|
pub status: AgentStatus,
|
|
|
|
|
}
|
|
|
|
|
|
2026-07-12 11:28:39 +07:00
|
|
|
/// Orchestrator for running workflow scripts: holds agent roster and a
|
|
|
|
|
/// shared finding accumulator visible to all pipeline stages.
|
2026-07-11 13:16:10 +07:00
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
|
pub struct WorkflowEngine {
|
|
|
|
|
pub agents: Vec<WorkflowAgent>,
|
|
|
|
|
pub findings: Vec<String>,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl WorkflowEngine {
|
2026-07-12 11:28:39 +07:00
|
|
|
/// Create an empty workflow engine with no agents or findings.
|
2026-07-11 13:16:10 +07:00
|
|
|
pub fn new() -> Self {
|
|
|
|
|
WorkflowEngine {
|
|
|
|
|
agents: Vec::new(),
|
|
|
|
|
findings: Vec::new(),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-07-12 17:49:34 +07:00
|
|
|
/// Shared live state used by `run_workflow_tracked` to push real-time
|
|
|
|
|
/// agent status updates into the TUI's `WorkflowEngine`.
|
2026-07-12 11:28:39 +07:00
|
|
|
///
|
2026-07-12 17:49:34 +07:00
|
|
|
/// The closure receives `(agent_id, new_status)` and should update the
|
|
|
|
|
/// corresponding agent in `AppStateRest::workflow_engine`.
|
|
|
|
|
pub type LiveStateFn = Arc<dyn Fn(String, AgentStatus) + Send + Sync>;
|
|
|
|
|
|
|
|
|
|
/// Spawn a single synchronous subagent with the given prompt, passing it
|
|
|
|
|
/// any findings from earlier sibling agents. Updates live state before and
|
|
|
|
|
/// after to reflect Running → Completed/Failed transitions.
|
|
|
|
|
///
|
|
|
|
|
/// Flow: push agent as `Running` → build SubagentContext with prompt +
|
|
|
|
|
/// findings preamble → call `run_subagent` (draining the event channel into
|
|
|
|
|
/// a throwaway consumer so events are not blocked) → push `Completed` or
|
|
|
|
|
/// `Failed`.
|
2026-07-12 11:28:39 +07:00
|
|
|
///
|
|
|
|
|
/// Return: the agent's text output, or an error on failure.
|
2026-07-12 17:49:34 +07:00
|
|
|
fn spawn_single_agent(
|
|
|
|
|
agent_id: &str,
|
|
|
|
|
agent_name: &str,
|
|
|
|
|
prompt: &str,
|
|
|
|
|
findings_snapshot: Vec<String>,
|
|
|
|
|
live: Option<&LiveStateFn>,
|
|
|
|
|
) -> anyhow::Result<String> {
|
2026-07-11 23:45:13 +07:00
|
|
|
use crate::app::subagent::context::build_subagent_context;
|
|
|
|
|
use crate::app::subagent::engine::run_subagent;
|
|
|
|
|
use crate::app::subagent::spawn::AgentDefinition;
|
|
|
|
|
|
2026-07-12 17:49:34 +07:00
|
|
|
let started_at = chrono::Utc::now().timestamp_millis();
|
|
|
|
|
|
|
|
|
|
// Notify UI: this agent is now running
|
|
|
|
|
if let Some(f) = live {
|
|
|
|
|
f(agent_id.to_string(), AgentStatus {
|
|
|
|
|
state: AgentState::Running,
|
|
|
|
|
started_at: Some(started_at),
|
|
|
|
|
completed_at: None,
|
|
|
|
|
error: None,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let def = AgentDefinition::new(agent_name.to_string(), "coder".to_string())
|
|
|
|
|
.with_max_steps(50);
|
2026-07-11 23:45:13 +07:00
|
|
|
let mut ctx = build_subagent_context(def);
|
|
|
|
|
|
|
|
|
|
let findings_section = if findings_snapshot.is_empty() {
|
|
|
|
|
String::new()
|
|
|
|
|
} else {
|
|
|
|
|
format!(
|
|
|
|
|
"\n\nFindings from sibling agents in this workflow run:\n{}",
|
|
|
|
|
findings_snapshot
|
|
|
|
|
.iter()
|
|
|
|
|
.enumerate()
|
|
|
|
|
.map(|(i, f)| format!("{}. {}", i + 1, f))
|
|
|
|
|
.collect::<Vec<_>>()
|
|
|
|
|
.join("\n")
|
|
|
|
|
)
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
ctx.system_prompt = format!("{}{}", prompt, findings_section);
|
|
|
|
|
|
2026-07-12 17:49:34 +07:00
|
|
|
// Create an mpsc channel and drain events in a background thread so
|
|
|
|
|
// run_subagent's blocking_send never blocks (previously the _rx was
|
|
|
|
|
// dropped immediately, which would cause blocking_send to panic/fail
|
|
|
|
|
// on a closed channel).
|
|
|
|
|
let (tx, rx) = tokio::sync::mpsc::channel(64);
|
|
|
|
|
let _drain_thread = std::thread::spawn(move || {
|
|
|
|
|
// Drain all events; we don't surface them individually to the UI
|
|
|
|
|
// (the live state callbacks handle coarse-grained status).
|
|
|
|
|
let mut rx = rx;
|
|
|
|
|
while rx.blocking_recv().is_some() {}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
let result = run_subagent(ctx, tx);
|
|
|
|
|
|
|
|
|
|
let completed_at = chrono::Utc::now().timestamp_millis();
|
|
|
|
|
|
|
|
|
|
// Notify UI: agent completed or failed
|
|
|
|
|
if let Some(f) = live {
|
|
|
|
|
match &result {
|
|
|
|
|
Ok(_) => f(agent_id.to_string(), AgentStatus {
|
|
|
|
|
state: AgentState::Completed,
|
|
|
|
|
started_at: Some(started_at),
|
|
|
|
|
completed_at: Some(completed_at),
|
|
|
|
|
error: None,
|
|
|
|
|
}),
|
|
|
|
|
Err(e) => f(agent_id.to_string(), AgentStatus {
|
|
|
|
|
state: AgentState::Failed,
|
|
|
|
|
started_at: Some(started_at),
|
|
|
|
|
completed_at: Some(completed_at),
|
|
|
|
|
error: Some(e.to_string()),
|
|
|
|
|
}),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
result
|
2026-07-11 23:45:13 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type ParallelResult = (usize, anyhow::Result<Vec<String>>);
|
|
|
|
|
|
2026-07-12 11:28:39 +07:00
|
|
|
/// Recursively execute a `ScriptPrimitive` tree, respecting an overall
|
|
|
|
|
/// concurrency cap for parallel branches.
|
|
|
|
|
///
|
2026-07-12 17:49:34 +07:00
|
|
|
/// Flow: match the primitive →
|
|
|
|
|
/// `Agent` → `spawn_single_agent`
|
|
|
|
|
/// `Parallel` → spawn threads up to `concurrency_cap` (semaphore-gated),
|
|
|
|
|
/// collect results in submission order
|
|
|
|
|
/// `Pipeline` → execute stages sequentially; findings flow between stages
|
|
|
|
|
/// `Phase` → recurse (pass-through wrapper)
|
2026-07-12 11:28:39 +07:00
|
|
|
///
|
2026-07-12 17:49:34 +07:00
|
|
|
/// Why: `Parallel` uses OS threads + a semaphore so the main async event
|
|
|
|
|
/// loop remains responsive. `Pipeline` is sequential so each stage sees
|
|
|
|
|
/// findings deposited by the previous one.
|
2026-07-12 11:28:39 +07:00
|
|
|
///
|
|
|
|
|
/// Return: a `Vec<String>` of all agent outputs (or error strings) in
|
|
|
|
|
/// the order they were submitted.
|
2026-07-11 23:45:13 +07:00
|
|
|
pub fn execute_primitive(
|
|
|
|
|
primitive: &ScriptPrimitive,
|
|
|
|
|
args: &HashMap<String, String>,
|
|
|
|
|
concurrency_cap: usize,
|
2026-07-12 11:55:02 +07:00
|
|
|
continue_on_error: bool,
|
2026-07-12 17:49:34 +07:00
|
|
|
live: Option<&LiveStateFn>,
|
2026-07-11 23:45:13 +07:00
|
|
|
) -> anyhow::Result<Vec<String>> {
|
2026-07-11 13:16:10 +07:00
|
|
|
match primitive {
|
2026-07-11 23:45:13 +07:00
|
|
|
ScriptPrimitive::Agent(prompt) => {
|
|
|
|
|
let resolved = resolve_template(prompt, args);
|
|
|
|
|
let findings_snapshot = FINDINGS.lock().map(|f| f.clone()).unwrap_or_default();
|
2026-07-12 17:49:34 +07:00
|
|
|
let agent_id = uuid::Uuid::new_v4().to_string();
|
|
|
|
|
let agent_name = resolved.chars().take(40).collect::<String>();
|
|
|
|
|
match spawn_single_agent(&agent_id, &agent_name, &resolved, findings_snapshot, live) {
|
2026-07-12 11:55:02 +07:00
|
|
|
Ok(text) => Ok(vec![text]),
|
|
|
|
|
Err(e) => {
|
|
|
|
|
if continue_on_error {
|
|
|
|
|
Ok(vec![format!("agent error: {}", e)])
|
|
|
|
|
} else {
|
|
|
|
|
Err(e)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-07-11 13:16:10 +07:00
|
|
|
}
|
2026-07-11 23:45:13 +07:00
|
|
|
|
2026-07-11 13:16:10 +07:00
|
|
|
ScriptPrimitive::Parallel(scripts) => {
|
2026-07-12 17:49:34 +07:00
|
|
|
// All branches run concurrently, capped by semaphore.
|
|
|
|
|
// This is the primary advantage over single-turn chat: multiple
|
|
|
|
|
// independent subagents work simultaneously.
|
2026-07-11 23:45:13 +07:00
|
|
|
let semaphore = Arc::new(Semaphore::new(concurrency_cap.max(1)));
|
|
|
|
|
let results: Arc<Mutex<Vec<ParallelResult>>> =
|
|
|
|
|
Arc::new(Mutex::new(Vec::new()));
|
|
|
|
|
|
|
|
|
|
let handles: Vec<_> = scripts
|
|
|
|
|
.iter()
|
|
|
|
|
.enumerate()
|
|
|
|
|
.map(|(idx, script)| {
|
|
|
|
|
let script = script.clone();
|
|
|
|
|
let args = args.clone();
|
|
|
|
|
let sem = Arc::clone(&semaphore);
|
|
|
|
|
let results = Arc::clone(&results);
|
|
|
|
|
let cap = concurrency_cap;
|
2026-07-12 17:49:34 +07:00
|
|
|
let live_clone = live.cloned();
|
2026-07-11 23:45:13 +07:00
|
|
|
|
|
|
|
|
std::thread::spawn(move || {
|
|
|
|
|
let _permit = sem.acquire();
|
2026-07-12 17:49:34 +07:00
|
|
|
let result = execute_primitive(
|
|
|
|
|
&script, &args, cap, continue_on_error,
|
|
|
|
|
live_clone.as_ref(),
|
|
|
|
|
);
|
2026-07-11 23:45:13 +07:00
|
|
|
if let Ok(mut locked) = results.lock() {
|
|
|
|
|
locked.push((idx, result));
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
|
|
for handle in handles {
|
|
|
|
|
let _ = handle.join();
|
2026-07-11 13:16:10 +07:00
|
|
|
}
|
2026-07-11 23:45:13 +07:00
|
|
|
|
|
|
|
|
let mut locked = results.lock().map_err(|_| anyhow::anyhow!("parallel results lock poisoned"))?;
|
|
|
|
|
locked.sort_by_key(|(idx, _)| *idx);
|
|
|
|
|
let mut all = Vec::new();
|
|
|
|
|
for (_, res) in locked.drain(..) {
|
|
|
|
|
match res {
|
|
|
|
|
Ok(outputs) => all.extend(outputs),
|
|
|
|
|
Err(e) => all.push(format!("agent error: {}", e)),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
Ok(all)
|
2026-07-11 13:16:10 +07:00
|
|
|
}
|
2026-07-11 23:45:13 +07:00
|
|
|
|
2026-07-11 13:16:10 +07:00
|
|
|
ScriptPrimitive::Pipeline(scripts) => {
|
2026-07-12 17:49:34 +07:00
|
|
|
// Sequential: each stage runs only after the previous completes.
|
|
|
|
|
//
|
|
|
|
|
// Why: parallel execution defeats the purpose of a pipeline whose
|
|
|
|
|
// stages are supposed to build on each other's output. Findings
|
|
|
|
|
// written by stage N are visible to stage N+1 because we share
|
|
|
|
|
// the global FINDINGS mutex.
|
2026-07-11 23:45:13 +07:00
|
|
|
let mut all = Vec::new();
|
2026-07-12 17:49:34 +07:00
|
|
|
for (idx, script) in scripts.iter().enumerate() {
|
|
|
|
|
match execute_primitive(script, args, concurrency_cap, continue_on_error, live) {
|
|
|
|
|
Ok(outputs) => all.extend(outputs),
|
|
|
|
|
Err(e) => {
|
|
|
|
|
if continue_on_error {
|
|
|
|
|
all.push(format!("pipeline stage {} error: {}", idx, e));
|
|
|
|
|
} else {
|
|
|
|
|
return Err(e);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-07-11 23:45:13 +07:00
|
|
|
}
|
|
|
|
|
Ok(all)
|
2026-07-11 13:16:10 +07:00
|
|
|
}
|
2026-07-11 23:45:13 +07:00
|
|
|
|
2026-07-11 13:16:10 +07:00
|
|
|
ScriptPrimitive::Phase { name: _name, script } => {
|
2026-07-12 17:49:34 +07:00
|
|
|
execute_primitive(script, args, concurrency_cap, continue_on_error, live)
|
2026-07-11 13:16:10 +07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-07-12 11:28:39 +07:00
|
|
|
/// Run a `WorkflowScript` with the given template arguments and produce a
|
2026-07-12 17:49:34 +07:00
|
|
|
/// summary string. Uses no live-state callback.
|
2026-07-12 11:28:39 +07:00
|
|
|
///
|
|
|
|
|
/// Return: a human-readable summary string.
|
2026-07-11 13:16:10 +07:00
|
|
|
pub fn run_workflow(script: &WorkflowScript, args: &HashMap<String, String>) -> anyhow::Result<String> {
|
2026-07-12 17:49:34 +07:00
|
|
|
run_workflow_tracked(script, args, None)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Run a `WorkflowScript` with real-time live-state callbacks so the TUI
|
|
|
|
|
/// panel updates as each agent transitions between Idle/Running/Done/Failed.
|
|
|
|
|
///
|
|
|
|
|
/// Flow: clear the global finding store → cap concurrency to 8 → call
|
|
|
|
|
/// `execute_primitive` with the live callback → format results.
|
|
|
|
|
///
|
|
|
|
|
/// Return: a human-readable summary string.
|
|
|
|
|
pub fn run_workflow_tracked(
|
|
|
|
|
script: &WorkflowScript,
|
|
|
|
|
args: &HashMap<String, String>,
|
|
|
|
|
live: Option<LiveStateFn>,
|
|
|
|
|
) -> anyhow::Result<String> {
|
2026-07-11 23:45:13 +07:00
|
|
|
if let Ok(mut findings) = FINDINGS.lock() {
|
|
|
|
|
findings.clear();
|
|
|
|
|
}
|
|
|
|
|
|
2026-07-11 13:16:10 +07:00
|
|
|
let concurrency_cap = if script.options.max_concurrency > 0 {
|
2026-07-12 17:49:34 +07:00
|
|
|
script.options.max_concurrency.min(8) // allow up to 8 parallel agents
|
2026-07-11 13:16:10 +07:00
|
|
|
} else {
|
2026-07-12 17:49:34 +07:00
|
|
|
4
|
2026-07-11 13:16:10 +07:00
|
|
|
};
|
2026-07-11 23:45:13 +07:00
|
|
|
|
2026-07-12 17:49:34 +07:00
|
|
|
let live_ref = live.as_ref();
|
|
|
|
|
let results = execute_primitive(
|
|
|
|
|
&script.script, args, concurrency_cap,
|
|
|
|
|
script.options.continue_on_error, live_ref,
|
|
|
|
|
)?;
|
2026-07-11 23:45:13 +07:00
|
|
|
|
|
|
|
|
let summary = if results.is_empty() {
|
|
|
|
|
"workflow completed with no output".to_string()
|
|
|
|
|
} else {
|
|
|
|
|
format!(
|
|
|
|
|
"workflow '{}' completed. {} agent result(s):\n{}",
|
|
|
|
|
script.name,
|
|
|
|
|
results.len(),
|
|
|
|
|
results
|
|
|
|
|
.iter()
|
|
|
|
|
.enumerate()
|
|
|
|
|
.map(|(i, r)| format!("[{}] {}", i + 1, r.lines().next().unwrap_or(r)))
|
|
|
|
|
.collect::<Vec<_>>()
|
|
|
|
|
.join("\n")
|
|
|
|
|
)
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
Ok(summary)
|
2026-07-11 13:16:10 +07:00
|
|
|
}
|
|
|
|
|
|
2026-07-12 11:28:39 +07:00
|
|
|
/// Add a finding text to the global workflow findings list, making it
|
|
|
|
|
/// visible to sibling agents spawned later in the same run.
|
2026-07-11 13:16:10 +07:00
|
|
|
pub fn note_finding(text: &str) {
|
2026-07-11 18:23:01 +07:00
|
|
|
if let Ok(mut findings) = FINDINGS.lock() {
|
|
|
|
|
findings.push(text.to_string());
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-07-11 23:45:13 +07:00
|
|
|
|
2026-07-12 11:28:39 +07:00
|
|
|
/// Simple template engine: replace `{{key}}` placeholders with values
|
|
|
|
|
/// from `args`.
|
|
|
|
|
///
|
2026-07-12 17:49:34 +07:00
|
|
|
/// Why: a structured template engine is unnecessary for the limited
|
2026-07-12 11:28:39 +07:00
|
|
|
/// use-case; this is intentionally simple and safe.
|
2026-07-11 23:45:13 +07:00
|
|
|
fn resolve_template(template: &str, args: &HashMap<String, String>) -> String {
|
|
|
|
|
let mut result = template.to_string();
|
|
|
|
|
for (key, value) in args {
|
|
|
|
|
result = result.replace(&format!("{{{{{}}}}}", key), value);
|
|
|
|
|
}
|
|
|
|
|
result
|
|
|
|
|
}
|
|
|
|
|
|
2026-07-12 11:28:39 +07:00
|
|
|
/// A counting semaphore built from a `Mutex` + `Condvar`.
|
|
|
|
|
///
|
|
|
|
|
/// Used by `execute_primitive` to cap concurrent parallel branches.
|
2026-07-11 23:45:13 +07:00
|
|
|
struct Semaphore {
|
|
|
|
|
count: Mutex<usize>,
|
|
|
|
|
condvar: std::sync::Condvar,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl Semaphore {
|
|
|
|
|
fn new(count: usize) -> Self {
|
|
|
|
|
Semaphore {
|
|
|
|
|
count: Mutex::new(count),
|
|
|
|
|
condvar: std::sync::Condvar::new(),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn acquire(&self) -> SemaphoreGuard<'_> {
|
|
|
|
|
let mut count = self.count.lock().unwrap();
|
|
|
|
|
while *count == 0 {
|
|
|
|
|
count = self.condvar.wait(count).unwrap();
|
|
|
|
|
}
|
|
|
|
|
*count -= 1;
|
|
|
|
|
SemaphoreGuard { sem: self }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct SemaphoreGuard<'a> {
|
|
|
|
|
sem: &'a Semaphore,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<'a> Drop for SemaphoreGuard<'a> {
|
|
|
|
|
fn drop(&mut self) {
|
|
|
|
|
let mut count = self.sem.count.lock().unwrap();
|
|
|
|
|
*count += 1;
|
|
|
|
|
self.sem.condvar.notify_one();
|
|
|
|
|
}
|
|
|
|
|
}
|