The argument in one line.
Skills are not alternatives to agents; they are specialized guides that live inside an agent's harness to replace unpredictable agentic loops with deterministic, repeatable workflows.
Read if. Skip if.
- You're building with Claude or another LLM and are confused about when to add a skill versus let the agentic loop handle the task independently.
- A developer or prompt engineer building multi-step autonomous systems who needs a mental model for where structure helps and where it creates overhead.
- You're wrapping an LLM in a harness or OS and need to understand which components (skills, tools, sensors, memory) belong where in your architecture.
- You're still deciding whether to use an LLM at all, or comparing LLMs to non-AI solutions — this assumes you've already committed to agent-based systems.
- You work primarily with stateless, single-turn LLM calls (like a chatbot) and don't need multi-step reasoning or tool integration.
- You're looking for implementation code or a framework — this is conceptual architecture, not a build-along tutorial with working examples.
The full version, fast.
The skill-versus-agent debate is a category error: an agent is an LLM plus tools plus an agentic loop, a harness is the operating system wrapping that agent, and a skill is one specialized guide living inside the harness alongside sensors, memory, state, and the file system. The real decision is when to add each layer. If the path is known and repeatable, write a skill so output stays deterministic and on-brand. If the path is unknown, let the loop reason its way through. For mixed cases, scaffold the known steps as a skill and let the agent improvise the edges. Reach for sub-agents to isolate context or enforce tool boundaries, and skip AI entirely when plain automation suffices.
Chat with this breakdown — free.
Sign in and you get 23 free chat messages on us — ask for the hook, quote a framework, find the exact transcript moment, generate a markdown action plan. Bring your own key when you want unlimited.
Create a free account →Where the time goes.

01 · Pattern interrupt
Promises to settle 'skill vs agent' then says it's not the right question.

02 · What is an agent
Agent = LLM + tools + agentic loop (ReAct). Claude is always an agent.

03 · What is a harness
Harness = the OS around the model. Six parts: guides, sensors, tools, memory, state, file system. Same model + different harness = different output quality.

04 · Skill defined
A skill lives in the 'guides' slot of the harness — it specializes a general agent for one task.

05 · Live demo: news brief
Two VS Code windows, same 'find me AI news' prompt — one with a daily-AI-news-brief skill, one without. Skill version is slower but scored, niched, repeatable. Vanilla version is faster but generic.

06 · Anthropic's rule
Known path → use a skill (deterministic, repeatable). Unknown path → let the agentic loop figure it out.

07 · The hybrid case
Workflow shell with agentic guts: intake → classify → pull record → RESOLVE (agent yolo) → log → close. Most production systems are workflow shells with agentic guts.

08 · The asymmetry
Agents work without skills. Skills do not work without agents — a skill is just a markdown file until something cooks the recipe.

09 · What is a subagent
A subagent is a saved agent configuration on disk (.claude/agents/<name>.md) — system prompt + tool allowlist + pinned model. Not a magic concept, just a fork off the main chat.

10 · When a subagent earns its keep
Three reasons: preserve context (don't flood main session), tool boundary (security/pin allowed tools at identity), orthogonal job (genuinely different tool belts). Everything else = skill + references.

11 · Pre-engineered harnesses
Anthropic Managed Agents (developer-first, SDK/CLI) vs. Airtable HyperAgent (UI-first, no-code dashboards/Slack/MCP/cron). Same trichotomy, two roads — depends on whether you write code or configure through a UI.

12 · Cheat-sheet ladder
Decision ladder: pure determinism → n8n/Make/Zapier; known repeatable → skill on agent; unknown repeatable → agentic loop + notes; mostly known with edge cases → hybrid scaffold; need context isolation/tool boundary → subagent; don't want to manage any of it → pre-engineered harness.
Lines worth screenshotting.
- Asking whether to use a skill or an agent is a category error — a skill lives inside an agent as part of the harness, not beside it as a separate alternative.
- An agent is three components: a large language model as the brain, tools as functions it can call, and a ReAct loop that lets it think, act, observe, and repeat until done.
- A harness is the operating system wrapped around the model — it provides context, structure, and capabilities that govern how the agent thinks and uses its tools.
- A skill transforms a general-purpose agent into a specialized one for a repeatable workflow — without the skill, the agent can still do the task, just with less precision.
- A repeatable workflow should be stashed as a skill, not typed as a prompt every session — the compounding value is in having the full specification stored and reusable.
- The same model plus a different harness produces measurably different output quality — model choice is less important than the context and structure you wrap around it.
- When to use a sub-agent is distinct from when to use a skill — a sub-agent makes sense when the task requires its own isolated loop, not just specialized instructions.
Steal the reframe-then-ladder structure.
Open by killing the question viewers came in with; close with a six-rung ladder they'll screenshot.
- Lead with 'you're asking the wrong question' — it earns 14 minutes of attention faster than 'here are the 5 differences.'
- Build one core analogy and keep returning to it. CPU/OS is doing the heavy lifting every time he says 'harness' — Joe should pick one (e.g., 'plumbing you own vs. utilities you rent') and use it ten times.
- Hand-drawn ribbon-titled sketch slides outperform polished Figma graphics for technical concepts. They feel like a whiteboard session, not a pitch deck.
- When showing 'with vs without,' run them side-by-side in real time. The skill-less version finishing FASTER but worse is the actual punchline — it would be a worse video without that timing.
- End every long explainer with a single-screen decision ladder ordered least-effort to most-effort. That's the only frame viewers will rewind to.
- Coin one asymmetry sentence per video. 'Agents work without skills; skills do not work without agents' is the line that gets screenshotted.
- Use the 'workflow shells with agentic guts' frame as a slide in any 'how I built it' video — it instantly elevates the conversation past 'AI agent' hype.
Terms worth knowing.
- LLM (large language model)
- The AI model at the core of an agent — such as Claude, Gemini, or GPT — responsible for understanding instructions and generating responses, but unable to take actions in the world without external tools connected to it.
- agentic loop
- The iterative think-act-observe cycle that an AI agent runs through repeatedly to complete a goal — the agent reasons about what to do next, takes an action using a tool, observes the result, and loops until the task is finished.
- agent harness
- The operating system layer wrapped around an AI model that provides it with business context, behavioral rules, memory, tools, and structured guides — determining how the model thinks and what it can do, above and beyond its base training.
- skill (Claude/agent context)
- A specialized markdown guide stored inside an agent's harness that walks the model through a specific, repeatable workflow step by step — transforming a general-purpose agent into a reliable specialist for that task.
- determinism (AI workflows)
- The property of producing the same output given the same input every time — a goal in business automation where predictability and reliability matter more than creative flexibility, achieved by constraining an agent's behavior with explicit skill guides.
- probabilistic AI
- The inherent variability in AI model outputs — the same prompt may produce slightly different results on different runs — contrasted with the deterministic, rule-based behavior that structured skill guides and harnesses are designed to impose on top of it.
- sub-agent
- An independent agent instance spun off from a parent workflow to handle a specific subtask in its own isolated context window — used to prevent the main session's context from being bloated by long-running or unrelated work.
- skill chaining
- The practice of linking multiple skills together in sequence so that the output of one skill becomes the input for the next — enabling complex, multi-step workflows to be broken into modular, reliable units rather than handled in a single monolithic prompt.
- context isolation
- The practice of running a subtask in a separate context window — isolated from the parent session — so that the tokens it consumes, the files it reads, and the tools it uses do not pollute or fill the main agent's available context.
- Claude managed agents
- Anthropic's cloud-hosted infrastructure for running AI agents at scale — providing technical users with control over agent configuration, tool access, and environment setup without the overhead of self-hosting the underlying model.
- HyperAgent (Airtable)
- A pre-packaged, user-friendly agentic system from Airtable that wraps an AI model in a harness designed for non-technical users — allowing them to complete goal-oriented tasks using natural language without configuring agents, tools, or skills manually.
- n8n / Make (automation platforms)
- No-code automation platforms that connect apps and trigger actions between them based on rules — suited for high-volume, fully deterministic workflows where no AI reasoning is needed, only reliable data routing and transformation.
Things they pointed at.
Lines you could clip.
“It's not actually the right question.”
“Same model plus a specific harness means you're going to get different output quality.”
“If the path is known, use a skill. If you don't know the path, that's when you rely on the agentic loop.”
“Bridge the gap between the probabilistic nature of AI and the determinism we need as a business.”
“An agent can work without a skill, but a skill cannot work without an agent.”
“Most production systems are workflow shells with agentic guts.”
“You don't need AI at all for that. It's dumb plumbing. Don't waste AI where it doesn't need to be.”
Word for word.
Don't just watch it. Burn it in.
See every word as it's spoken — crank it to 2× and still catch all of it. The same dual-channel trick behind Amazon's Kindle + Audible.
The bait, then the rug-pull.
The whole framing is a misdirection. Mansel opens by promising to answer 'skill vs agent,' then pulls the rug — the question itself is wrong because skills don't sit next to agents, they sit inside them. Fourteen minutes later you walk away with a six-rung decision ladder, a CPU/OS analogy that finally makes 'harness' click, and the asymmetry sentence everyone will quote: agents work without skills, skills do not work without agents.
Named ideas worth stealing.
Agent anatomy
- LLM (the brain)
- Tools (functions it can call)
- Agentic loop (think, act, observe, repeat)
Three-part definition of an agent, anchored to the ReAct paper (Princeton + Google, 2022).
The Harness (six-part OS around the model)
- Guides
- Sensors
- Tools
- Memory
- State
- File system
CPU/OS analogy: model = CPU, harness = OS. Same CPU + different OS = different output quality. Skills are one entry in the 'Guides' slot.
Anthropic's Rule
- Known path → skill
- Unknown path → agentic loop
- Both happen INSIDE an agent
The simplest decision rule in the video. Examples on slide: cold email = known, why isn't it converting = unknown, lead research = mixed.
Hybrid Case (workflow shell + agentic guts)
- 1. Intake
- 2. Classify
- 3. Pull record
- 4. Resolve (agentic loop fills in)
- 5. Log
- 6. Close
Most production systems are deterministic workflow shells with one or two agentic steps for the unpredictable bits (password reset, billing, refund).
When a Subagent Earns Its Keep
- Preserve context (keep main session clean)
- Tool boundary (security, allowed tools pinned at identity)
- Orthogonal job (genuinely different tool belt)
Default is NOT a subagent — default is skill + references. Subagent only when one of these three triggers fires.
The Cheat-Sheet Ladder
- Pure determinism, high volume → n8n / Make / Zapier (no AI needed)
- Known repeatable task → add a skill on top of an agent
- Repeatable but path unknown → agentic loop + self-learning notes
- Mostly known with unpredictable steps → hybrid skill scaffold + agentic sub-steps
- Need security boundary or context isolation → custom subagent
- Don't want to manage any of this → pre-engineered harness (HyperAgent / managed agents)
Six-rung decision ladder, ordered from least-AI to most-AI. The entire video compressed into one screen.
How they asked for the click.
“Obviously, there are far more complexities behind each of these. I have got deep dives in the description below. Otherwise, you can leave some comments and I'll get back to you as soon as possible or check out the videos on the screen now.”
Soft three-way: descriptions / comments / end-screen videos. No subscribe ask, no product pitch — content credibility play.




































































