bot-forge 1.0.2

Rust CLI for installing agent skills and developer tools from configurable forms.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Configuration loading, validation, and effective configuration reporting.
//!
//! Configuration is parsed strictly, expanded from catalogs and overlays, validated, and then
//! hashed before planning. [`ConfigDocument`] is the canonical representation consumed by the
//! planner.

pub(crate) mod catalog;
pub(crate) mod load;
mod local_paths;
pub mod schema;

pub use crate::config::load::{init_config, load_config_with_overlays};
pub use crate::config::schema::{ConfigDocument, OriginMap};