symbi-runtime 1.7.0

Agent Runtime System for the Symbi platform
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! CLI Executor module for AI tool orchestration
//!
//! Provides a universal stdin-protected process runner with per-tool adapters
//! for orchestrating AI CLI tools (Claude Code, Gemini, Aider, Codex) from
//! headless environments (cron jobs, scheduled agents, CI pipelines).
//!
//! Gated behind the `cli-executor` feature flag.

pub mod adapter;
pub mod adapters;
pub mod executor;
pub mod watchdog;

pub use adapter::{AiCliAdapter, CodeGenRequest, CodeGenResult};
pub use adapters::{AiderAdapter, ClaudeCodeAdapter, CodexAdapter, CodexApprovalMode};
pub use executor::{CliExecutor, CliExecutorConfig, StdinStrategy};
pub use watchdog::{OutputWatchdog, WatchdogOutput};