aether-project 0.3.1

Project-local configuration and agent discovery for the Aether AI agent framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![doc = include_str!("../README.md")]

mod catalog;
mod error;
mod prompt_catalog;
pub mod prompt_file;
mod settings;

pub use catalog::AgentCatalog;
pub use error::SettingsError;
pub use prompt_catalog::PromptCatalog;
pub use prompt_file::{PromptFile, PromptFileError, PromptTriggers, SKILL_FILENAME};
pub use settings::{AgentEntry, McpServerEntry, Settings, load_agent_catalog};