cflx 0.6.98

Conflux – a spec-driven parallel coding orchestrator that runs AI agents on git worktrees
//! Conflux - OpenSpec Orchestrator library
//!
//! This library provides the core functionality for the Conflux orchestrator,
//! including web monitoring APIs and event handling.
//!
//! This library crate exposes only the modules needed for the OpenAPI generator binary.
//! The main application logic is in the binary crate (main.rs).

// Allow dead code for internal modules that are only used by the binary crate
#![allow(dead_code)]

// Public modules for OpenAPI generator
pub mod embedded_skills;
pub mod events;
pub mod install_skills;
pub mod tui;

#[cfg(feature = "web-monitoring")]
pub mod web;

// Internal modules required by public modules
mod acceptance;
mod agent;
mod ai_command_runner;
mod analyzer;
mod cli;
mod command_queue;
pub mod config;
mod dependency_targets;
mod error;
mod error_history;
mod execution;
mod history;
mod hooks;
mod openspec;
pub mod openspec_cmd;
pub mod orchestration;
mod orchestrator;
mod parallel;
mod parallel_run_service;
mod permission;
mod process_manager;
mod progress;
pub mod remote;
mod serial_run_service;
#[cfg(feature = "web-monitoring")]
pub mod server;
mod shell_command;
mod spec_delta;
mod stall;
mod stream_json_textifier;
mod task_parser;
mod templates;
mod vcs;
pub mod worktree_ops;

#[cfg(test)]
mod test_support;