Skip to main content

skillpack/
lib.rs

1//! skillpack library surface.
2//!
3//! The binary target (`main.rs`) implements the interactive CLI; this lib
4//! target re-exports the pure modules so integration tests and property tests
5//! in `tests/` can exercise the parsers (`extract_flags`,
6//! `parse_skill_frontmatter`, `coerce_kebab`, the discovery checks) directly
7//! without going through the compiled binary.
8
9pub mod cli;
10pub mod config;
11pub mod exit;
12pub mod generate;
13pub mod interview;
14pub mod introspect;
15pub mod spawn;
16pub mod types;
17pub mod verify;