1 2 3 4 5 6 7 8 9
//! Agent & Skill discovery and parsing //! //! Scans global, per-project, and plugin directories for agent `.md` files //! and skill `SKILL.md` files. Parses YAML frontmatter + markdown body. pub mod discovery; pub mod parser; pub use discovery::{discover_agents, discover_skills, group_agents, group_skills, AgentGroup, SkillGroup};