zig-core 0.4.4

Core library for zig — workflow orchestration engine for AI coding agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! zig-core — workflow orchestration engine for AI coding agents.
//!
//! This crate provides the core library for parsing, validating, and executing
//! `.zug` workflow files. It powers the `zig` CLI.

pub mod create;
pub mod error;
pub mod listen;
pub mod man;
pub mod manage;
pub mod pack;
pub mod paths;
pub mod prompt;
pub mod run;
pub mod session;
pub mod workflow;