Skip to main content

Crate skillrt

Crate skillrt 

Source
Expand description

skillrt - runtime and spec for executable markdown skills consumed by AI agents.

Supports two content modes:

  • Prose (Soapstones-compatible): free-form markdown, no frontmatter required
  • Structured: typed SKILL.md with frontmatter schema, inputs, outputs, dependencies

Public API stabilizes in v0.2. Until then everything is subject to change.

Re-exports§

pub use error::Result;
pub use error::SkillError;
pub use skill::Skill;
pub use skill::SkillBody;
pub use skill::SkillKind;

Modules§

error
frontmatter
YAML frontmatter schema for structured skills (v0.1 DRAFT).
parser
Parse a SKILL.md (or soapstone-style markdown) into a Skill.
registry
Local on-disk skill storage.
runtime
Skill execution runtime.
skill
The top-level Skill type.