nika 0.35.4

Semantic YAML workflow engine for AI tasks - DAG execution, MCP integration, multi-provider LLM support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Store Module - state management
//!
//! Thread-safe storage for task execution results.
//! Uses DashMap for lock-free concurrent access.
//!
//! Key types:
//! - `RunContext`: Central storage for task results
//! - `TaskResult`: Execution result with status and output
//! - `TaskOutcome`: Success or failure status
//! - `LoadedContext`: Loaded workflow context files

pub mod context;
mod run_context;

// Re-export all public types
pub use context::LoadedContext;
pub use run_context::{RunContext, TaskOutcome, TaskResult};