flux-platform 1.0.1

A local-first, AI-native developer automation platform: build, test, package, and deploy from a single .flux file, and make your repository legible to AI agents.
1
2
3
4
5
6
7
8
9
//! The Flux core engine: config parsing, project detection, the pipeline
//! engine, the task runner, and logging.

pub mod config;
pub mod detect;
pub mod graph;
pub mod logging;
pub mod pipeline;
pub mod runner;