upskill 0.6.3

Author and distribute AI-assistance content across coding agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! 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, ClaudePluginDescriptor, CopilotPluginDescriptor, OpencodePluginDescriptor,
    PluginEntry, Requires, VscodePluginDescriptor,
};
pub use common::{Audience, CURRENT_SCHEMA, License, Metadata, SchemaVersion};
pub use rule::{Rule, Scope};
pub use skill::Skill;