Skip to main content

skm_cli/
lib.rs

1//! # skm-cli
2//!
3//! Developer CLI for Agent Skills.
4//!
5//! Commands:
6//! - `init` - Create a new skill from template
7//! - `validate` - Validate SKILL.md files
8//! - `list` - List skills in a directory
9//! - `select` - Interactive skill selection (debugging)
10//! - `test` - Run trigger test suites
11//! - `bench` - Benchmark selection performance
12//! - `optimize` - Optimize skill descriptions
13//! - `stats` - Show usage analytics
14//! - `serve` - Start HTTP API server
15
16pub mod commands;