walrus-daemon 0.0.10

Walrus agent runtime with memory, tools, and local inference
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Walrus skill registry — tag-indexed skill matching and prompt enrichment.
//!
//! Skills are named units of agent behavior loaded from Markdown files with
//! YAML frontmatter (agentskills.io format). The [`SkillRegistry`] indexes
//! skills by tags for dynamic discovery via `search_skill` and `load_skill`.

pub use {
    handler::SkillHandler,
    registry::{Skill, SkillRegistry},
};

mod handler;
pub mod loader;
pub mod registry;
pub(crate) mod tool;