agents-skills 0.9.2

A minimal, stable, easy-to-understand skill installer and manager for AI agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! core: CLI-agnostic domain logic (source parsing, agent dirs, SKILL.md discovery, install, links, lock).
//!
//! Everything is pure functions or dependency-injectable, for easy unit testing and reuse.

pub mod agents;
pub mod discover;
pub mod fetch;
pub mod github;
pub mod install;
pub mod link;
pub mod lock;
pub mod source;

#[cfg(test)]
pub mod test_utils;