greentic-flow-builder 0.4.0

Greentic Flow Builder — orchestrator that powers Adaptive Card design via the adaptive-card-mcp toolkit
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod cli;
pub mod deps;
pub mod knowledge;
pub mod orchestrate;
pub mod ui;

use cli::{Cli, Commands};

pub async fn run(cli: Cli) -> anyhow::Result<()> {
    match cli.command {
        Commands::Ui(args) => {
            deps::ensure_dependencies();
            ui::launch(args).await
        }
    }
}