Skip to main content

bot_forge/
constants.rs

1//! Names and embedded defaults shared by the CLI and configuration loader.
2
3/// Default configuration file name.
4pub(crate) const CONFIG_FILE: &str = "bot-forge.toml";
5/// Persistent installation registry file name.
6pub(crate) const REGISTRY_FILE: &str = "registry.json";
7/// File name used to identify an installed skill.
8pub(crate) const SKILL_FILE: &str = "SKILL.md";
9
10/// Embedded built-in Rust development catalog.
11pub const BUILTIN_CATALOG: &str = include_str!("../catalogs/rust-dev.toml");
12/// Embedded default configuration template.
13pub(crate) const DEFAULT_CONFIG: &str = include_str!("../bot-forge.toml");