greentic-flow-builder 0.2.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
17
//! Orchestration glue to external Greentic CLIs.

pub mod cards2pack;
pub mod deployer;
pub mod http_inject;

use thiserror::Error;

#[derive(Debug, Error)]
pub enum OrchestrateError {
    #[error("orchestration target not yet implemented: {0}")]
    NotImplemented(String),
    #[error("cards2pack failed: {0}")]
    Cards2Pack(String),
    #[error("IO error: {0}")]
    Io(#[from] std::io::Error),
}