ai-agent-sdk 0.5.0

Idiomatic agent sdk inspired by the claude code source leak
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Skills module - ported from ~/claudecode/openclaudecode/src/skills
//!
//! This module provides the bundled skills infrastructure for the Rust SDK.

pub mod bundled;
pub mod bundled_skills;
pub mod loader;

pub use bundled::{init_bundled_skills};
pub use bundled_skills::*;
pub use loader::{load_skill_from_dir, load_skills_from_dir, SkillMetadata, LoadedSkill};