saorsa-agent 0.4.0

AI coding agent runtime with tool execution
Documentation
1
2
3
4
5
6
7
8
9
10
//! Skills system for on-demand capability injection.
//!
//! Skills are markdown files with front matter that can be discovered and
//! activated to inject specialized knowledge into the agent context.

pub mod registry;
pub mod types;

pub use registry::SkillRegistry;
pub use types::Skill;