References: The Skills System
-
Modular programming - Wikipedia - Foundational coverage of decomposing software into independent modules; the conceptual ancestor of the Skills approach to bundling capability with lazy loading.
-
Lazy loading - Wikipedia - Detailed explanation of the lazy-loading pattern that makes Skills token-efficient; only the trigger description sits in context until the harness needs the body.
-
Plug-in (computing) - Wikipedia - Background on extensible software architectures where third-party capabilities load on demand; Skills are essentially a plug-in system for LLM agents.
-
AI Engineering - Chip Huyen - O'Reilly - Chapters on agent design and tool composition cover the broader patterns Skills implement, including task decomposition and capability binding.
-
Designing Machine Learning Systems - Chip Huyen - O'Reilly - The model-as-component framing in this book applies directly to Skills as composable units of model-augmented capability.
-
Anthropic Skills Documentation - Anthropic - Authoritative reference for the Skill format including frontmatter, body structure, bundled scripts, and the loading lifecycle covered in this chapter.
-
Anthropic Engineering: Building Skills for Claude - Anthropic - The announcement and design rationale for Skills; explains why the trigger-description-then-body architecture saves tokens at scale.
-
Claude Skills GitHub Examples - Anthropic GitHub - Official example Skills demonstrating the format conventions, script delegation patterns, and asset bundling used in this chapter's worked examples.
-
Model Context Protocol (MCP) - Anthropic - The protocol Skills use to expose capabilities to harnesses; relevant for engineers building custom Skills that interact with external systems.
-
Awesome Claude Skills - Dan McCreary GitHub - Curated collection of community-built Skills that demonstrate the trigger-description authoring patterns and script-delegation refactoring discussed in this chapter.