//! 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");