crabtalk-runtime 0.0.17

Crabtalk agent runtime — tool dispatch, MCP, skills, and memory
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Crabtalk skill registry — skill matching and prompt enrichment.

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

mod handler;
pub mod loader;
pub mod registry;
pub mod tool;