upskill 0.3.0

Author and distribute AI-assistance content across coding agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Item models per the format spec — see `docs/format-spec.md`.

pub mod agent;
pub mod bundle;
pub mod common;
pub mod rule;
pub mod skill;

pub use agent::{Agent, Mode, ToolCap};
pub use bundle::{Bundle, BundleItems, Requires};
pub use common::{Audience, CURRENT_SCHEMA, License, Metadata, SchemaVersion};
pub use rule::{Rule, Scope};
pub use skill::Skill;