skillpack 0.12.1

Generate, verify, and maintain AI agent guidance (skills, plugins, AGENTS.md) for Claude Code, Cursor, Codex, Copilot, and 10+ AI coding ecosystems — one command turns any CLI or library into an agent-discoverable skill pack.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! skillpack library surface.
//!
//! The binary target (`main.rs`) implements the interactive CLI; this lib
//! target re-exports the pure modules so integration tests and property tests
//! in `tests/` can exercise the parsers (`extract_flags`,
//! `parse_skill_frontmatter`, `coerce_kebab`, the discovery checks) directly
//! without going through the compiled binary.

pub mod cli;
pub mod config;
pub mod exit;
pub mod generate;
pub mod interview;
pub mod introspect;
pub mod spawn;
pub mod types;
pub mod verify;