Dependency-aware skills
Declare why one skill requires another. The compiler validates the graph and builds self-contained public skills.
Build self-contained agent skill plugins from one explicit authored source, with deterministic output for Claude, Codex, Copilot, Gemini, and Kimi.
Agent skills often start as Markdown files, but a publishable plugin also needs dependency instructions, catalog metadata, lifecycle rules, and host-specific manifests. Maintaining those copies by hand makes incomplete installations and silent drift easy.
Agent Plugin Compiler moves that coordination into a repeatable build:
plugin/plugin.yml + plugin/skills/**
│
▼
validate → generate → check
│
▼
skills/** + provider manifestsThe current public contract is 0.1.0-alpha.4.
npm install --save-dev --save-exact \
@fam-tung-lam/ptlam-agent-plugin-compiler@next
npm exec -- plugin-compiler init
npm exec -- plugin-compiler validate
npm exec -- plugin-compiler generate
npm exec -- plugin-compiler check