skillnet 0.4.0

Reconcile and manage local AI skill mirrors; calibration data for the multi-phase-plan skill.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! `skillnet` is a CLI for reconciling local AI skill directories into a
//! checked-in mirror, editing mirrored skills, syncing mirror state back to
//! live agent directories, and recording calibration data for
//! `multi-phase-plan`.
//!
//! The supported interface in `0.1.1` is the `skillnet` binary. This crate
//! does not commit to a stable embeddable Rust API yet.

mod cache;
pub mod calibration;
mod catalog;
pub mod cli;
mod commands;
mod config;
mod fs_ops;
mod model;
mod reconcile;
mod vcs;