Equipping agents for the real world with Agent Skills
read at source ↗ www.anthropic.com
Equipping agents for the real world with Agent Skills
Source: Anthropic Engineering Date: 2025-10-16 URL: https://www.anthropic.com/engineering/equipping-agents-for-the-real-world-with-agent-skills
Summary
Anthropic describes Agent Skills as organized folders of instructions, scripts, and resources centered on a SKILL.md file, using three-tier progressive disclosure: metadata loads at startup, full SKILL.md loads on relevance match, supplementary files load dynamically. Code within skills executes deterministically rather than through token generation. Skills should only be installed from trusted sources.
Implications
The Claude Code design choices thread. Agent Skills are Anthropic’s answer to the context-pollution problem at the capability level — the three-tier disclosure directly implements the just-in-time retrieval principle from the context engineering post, applied to reusable agent capabilities rather than data retrieval.
Skills as a package ecosystem. The SKILL.md format and trusted-source security warning signals that Anthropic is building toward a skill distribution model — this is plugin architecture for Claude Code agents. The trusted-source warning is the first published security boundary for skill installation, which matters for any shop allowing operator-contributed skills.
Deterministic code execution within skills. Running bundled scripts deterministically (not through token generation) is a meaningful reliability guarantee — scripted operations in skills won’t hallucinate their way through logic. This is a concrete advantage over prompt-only capability definitions.