Skills Overview
Skills are prompt-level capability modules for AgentOS. They are not runtime extensions; they teach an agent when and how to use tools, workflows, and external systems through SKILL.md content.
The 3-Tier Skills Architecture
AgentOS skills are split into three public layers:
@framers/agentos/skillsThe runtime engine. This is whereSkillLoader,SkillRegistry, snapshots, and path helpers live.@framers/agentos-skillsThe curated content package. It shipsSKILL.mdfiles plus the generatedregistry.jsonindex.@framers/agentos-skills-registryThe catalog SDK. It provides query helpers, lazy loading, and factories over the curated content package.
Start Here
- Use Skills (SKILL.md) to author and structure skills.
- Use
@framers/agentos-skillswhen you need the curated content pack. - Use
@framers/agentos-skills-registrywhen you need catalog search, lazy loading, or factories.
Skills vs Extensions
- Extensions are runtime code: tools, guardrails, workflows, and providers.
- Skills are prompt content: they explain operating procedures, decision rules, and tool-usage patterns to the model.
Both can participate in discovery, but they solve different layers of the system.