The.Weekly ISSUE #04 · 2026-W23 · JUN 05 2026
Agent Architecture

Agent Skills — the modular layer for AI capability

Prompts told an agent what to do. Tools gave it hands. Skills are the missing middle: portable, versioned packages of know-how an agent loads only when the task demands it. Here's how the skills ecosystem actually works — packaging, discovery, dynamic loading, governance — and why it's becoming the unit of reuse for production agents.

Index · what's inside

01

What an Agent Skill actually is

An Agent Skill is a reusable capability package that teaches an agent how to perform a specific task or workflow. Strip away the marketing and it is something refreshingly boring: a folder. Inside that folder sits a manifest, a set of instructions, and any supporting templates, examples, scripts, and reference files the agent might need to do the job well.

"Agent Skills are a lightweight, open format for extending AI agent capabilities with specialized knowledge and workflows." — Agent Skills, agentskills.io

The framing that has stuck across the ecosystem: skills are folders of instructions, scripts, and resources that the model loads dynamically to perform better on specialized tasks. The important word is dynamically. A skill is not baked into a system prompt and it is not a fine-tune. It sits on disk, inert, until the agent decides the current task matches it — then its contents flow into context.

Why does this matter for practitioners? Because it decouples capability from the model and from the prompt. You can ship a "fill out an SOC 2 evidence request" skill the same way you ship an npm package: write it once, version it, hand it to every agent in the org. The skill becomes the unit of reuse — the thing you author, review, and improve — instead of copy-pasting paragraphs of guidance into every project.

02

Packaging: the SKILL.md and its contracts

The specification defines a skill as a folder containing a SKILL.md plus optional resources. The SKILL.md carries metadata in frontmatter and instructions in the body. The metadata is not decoration — it is the routing layer. The description field in particular is what the agent reads to decide whether the skill is relevant, so a vague description means a skill that never fires.

---
name: soc2-evidence-request
description: Draft & format SOC 2 evidence
              responses from a control ID.
version: 1.4.0
tags: [compliance, security, audit]
---

# Instructions
1. Resolve the control ID against controls.csv
2. Pull the evidence template from templates/
3. Validate completeness with rules below
...

What a well-formed skill carries:

So what

Treat the description and contract as the public API. Everything else is implementation detail you can refactor freely — but change the contract and you've shipped a breaking change to every agent that depends on it.

03

Discovery: how an agent finds the right skill

Once you have more than a handful of skills, finding the right one becomes the whole game. Mature skill platforms behave like package registries crossed with a search engine. The catalogue is searchable, skills are grouped into categories and tags, and increasingly the match is semantic — the agent's task description is embedded and compared against skill descriptions rather than matched on exact keywords.

Public libraries already list thousands of discoverable skills across engineering, analytics, marketing, and design. That scale is exactly why discovery is hard: a flat list of 5,000 skills is useless to an agent with a finite context window. The retrieval quality — does the agent surface the right three skills for this task — now matters as much as the skills themselves. This is the same lesson RAG taught us, applied to capability instead of knowledge.

04

Dynamic loading: pay for context only when you use it

The defining behaviour of skills is progressive disclosure. Rather than stuffing every instruction into the system prompt up front, the agent loads a skill's full contents only when the task calls for it. At rest, the agent knows just enough — the name and one-line description — to decide relevance. The expensive payload arrives on demand.

The economics are the point. Context is a fixed budget paid on every single turn. A 4,000-token skill loaded eagerly costs you on every request whether or not it's used; loaded lazily it costs nothing until the one task that needs it. Modern agent systems lean hard on this on-demand retrieval rather than front-loading all instructions — it's what lets a single agent plausibly "know" hundreds of skills without drowning in its own prompt.

Practitioner note

Cache the skill body once loaded within a session. Re-reading the same SKILL.md on every turn of a multi-step task quietly burns the savings progressive disclosure was supposed to buy you.

05

The execution framework: how to think, made repeatable

A skill is more than a paragraph of advice — it encodes a procedure. The execution layer is where step-by-step workflows, tool orchestration, validation checks, error handling, and retry strategies live. The skill says "do these steps in this order, validate after step 3, and if the API 429s back off and retry twice."

The clean mental model — popularised in IBM's developer writing on the topic — is that skills define how the agent should perform a task, while tools provide the actions available to the agent. A skill is the recipe; tools are the kitchen. This separation is what makes skills portable: the same "reconcile an invoice" skill can run against whatever payment tools a given deployment happens to expose, as long as the contract is satisfied.

06

Skills vs. MCP: how to think vs. how to act

The most useful distinction in the whole space, and the one people get wrong most often. Skills and MCP servers are not competitors — they are complementary layers, and a serious agent uses both.

Skills

How to think. Instructions, workflows, judgement, the procedure for getting a task right. Knowledge that lives in context.

+

MCP Servers

How to act. Discoverable tools, external system access, capability descriptions. The actions the agent can actually take.

The integration points matter: MCP handles server discovery and tool capability descriptions; the skill maps its workflow onto whatever tools are available, reaching external systems through them. You can have great tools and no idea how to sequence them (capable but aimless), or a beautiful workflow with no way to touch the world (a plan with no hands). Production agents need the pair: a skill that knows the procedure, bound to MCP tools that execute it.

07

Versioning: skills are software, treat them that way

The moment a skill is shared across teams, it inherits every problem of shared software. Workflows evolve, a regulation changes, an internal API is deprecated — and the skill must move with them without silently breaking the agents that depend on it.

This is mundane and absolutely essential, especially in enterprise settings where an agent's behaviour is part of an audited process. A skill bumped from 1.4.0 to 2.0.0 should signal a breaking contract change as loudly as any library would. The teams getting this right are pinning skill versions per agent and rolling upgrades the way they roll dependency bumps — staged, observable, reversible — not editing a shared SKILL.md in place and hoping nothing downstream notices.

08

Governance: the lifecycle of a skill library

Once skills carry real organizational authority — they encode SOPs, security guidelines, coding standards — who is allowed to publish one becomes a governance question, not a technical one. Recent research is squarely focused on the lifecycle of large skill libraries: collection, recommendation, and evolution over time.

"SkillsVote: Lifecycle Governance of Agent Skills from Collection, Recommendation to Evolution." — arXiv:2605.18401

The security angle deserves emphasis. A skill that ships executable scripts is, functionally, code you are letting an autonomous agent run on your behalf. An unreviewed skill in a shared catalogue is a supply chain risk dressed up as a productivity feature. The same review rigor you apply to a dependency — provenance, what it executes, what it can reach — belongs on every skill before it enters the library.

09

Analytics & composition: measure, then chain

You cannot improve a library you don't measure. Skill analytics close the loop: which skills fire often, which succeed, which are expensive, which quietly fail. Usage frequency, success rate, user feedback, cost and latency — together they tell you which skills are load-bearing and which are dead weight worth retiring.

The frontier is composition. Real work rarely maps to a single skill — it needs several, chained, with parent-child relationships and dependency graphs between them. Emerging research shows agents do better when skills are retrieved and grouped as workflow units rather than pulled in as isolated instructions.

"Group of Skills: Group-Structured Skill Retrieval for Agent Skill Libraries." — arXiv:2605.06978

The implication for builders: stop authoring skills as lonely islands. Design them to compose — explicit dependencies, clean contracts at the seams — so the retrieval layer can assemble the right bundle for a task instead of betting everything on one perfect monolith.

10

The library ecosystem: where skills live today

The market has already produced public skill libraries, and their design choices preview where this is heading. Three are worth knowing:

The recommended architecture that falls out of all this looks remarkably like a well-structured software package:

Skill/
├── Metadata      # name, description, version, tags
├── Instructions  # the workflow
├── Resources     # templates, examples, knowledge
├── Tool Bindings # MCP tools, APIs, local functions
├── Validation    # rules
└── Tests

The throughline of this whole issue: skills are turning organizational knowledge into reusable agent capability, and the disciplines that make them work — packaging, versioning, review, measurement — are the ones software engineering already knows by heart. The teams that treat their skill library like a codebase, not a junk drawer of prompts, are the ones whose agents will compound.