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
//! Names and embedded defaults shared by the CLI and configuration loader.

/// Default configuration file name.
pub(crate) const CONFIG_FILE: &str = "bot-forge.toml";
/// Persistent installation registry file name.
pub(crate) const REGISTRY_FILE: &str = "registry.json";
/// File name used to identify an installed skill.
pub(crate) const SKILL_FILE: &str = "SKILL.md";

/// Embedded built-in Rust development catalog.
pub const BUILTIN_CATALOG: &str = include_str!("../catalogs/rust-dev.toml");
/// Embedded default configuration template.
pub(crate) const DEFAULT_CONFIG: &str = include_str!("../bot-forge.toml");