The argument in one line.
Anthropic engineers build Claude skills as composable tools with real code and APIs rather than prompt-only folders, then improve them after every use so they compound over time instead of starting from scratch each session.
Read if. Skip if.
- A developer or technical founder using Claude Code who writes new prompts for each task and wants to systematize repetitive work into reusable skills.
- A product team member building AI agents who needs to understand Anthropic's actual engineering approach to prompting beyond generic best practices.
- Someone already using Claude who's hit diminishing returns with one-off prompts and is ready to shift to a skills-based mental model.
- You're looking for foundational Claude basics or how to write your first prompt — this assumes you're already comfortable with Claude and want to level up.
- You work primarily with other AI models or don't use Claude Code — the four rules are Claude-specific and won't transfer cleanly.
The full version, fast.
Most people prompt Claude Code by writing fresh instructions every session, but Anthropic's own engineers operate one layer up by building skills, the application layer that sits above models and prompts. A skill is a folder with three parts: a sharp description so Claude auto-invokes it, step-by-step instructions, and actual tools like saved scripts and API calls, and the leverage lives in that third layer most people skip. Keep skills small and composable rather than one mega-skill, so fixes compound and pieces chain together. Save deterministic code inside skills to swap expensive tokens for cheap compute, use the user-invocable and model-invocable flags to gate risky actions, and update the skill after every run so day thirty beats day one.
Chat with this breakdown.
Modern Creator members can chat with any breakdown — ask for the hook, quote a framework, find the exact transcript moment. Unlocks at T2: refer 3 friends + add your own API key.
Create a free account →Where the time goes.

01 · Cold open + promise
Pattern-interrupt claim: everyone is prompting wrong. Four rules from Anthropic engineers, no technical experience required.

02 · Rule 1 -- Prompt skills, not Claude
Mental model shift from one-off prompts to reusable skills. Skills = folders of composable procedural knowledge. Layer diagram: AI models -> agents/prompts -> skills (the app layer). Frame: Anthropic builds the phone, you build the apps.

03 · Rule 2 -- Skills are more than prompts
Three layers inside a skill: description (when to invoke), instructions (how to execute), tools (scripts/APIs/files). Most users stop at layer 2. Eric Schluntz (Anthropic) clip mocking bare-bones tool definitions. Live domain-checker skill demo.

04 · Rule 3 -- Composable skills, not custom skills
Composable, portable, efficient, powerful. One giant skill became unmanageable; split into focused skills. Three benefits: issues are easy to spot, improvements compound, reuse instead of rebuild.

05 · Pattern 1 -- Save scripts inside skills
Barry Zhang (Anthropic): Claude kept rewriting the same Python slide-styling script. Save it in the skill folder once. Code is deterministic; AI is not. Trading tokens for code compute = cheaper, faster, repeatable.

06 · Pattern 2 -- Control who invokes what
Two YAML frontmatter flags: user-invocable: false (agent-only) and disable-model-invocation: true (human-gated for high-risk actions like deploy or send-message).

07 · Rule 4 -- Skills get smarter every session
Barry Zhang: Claude on day 30 is better than day 1. After every run: one-time fix or permanent rule? If permanent, update the skill. The compounding loop: Use skill -> Get output -> Update skill.
Lines worth screenshotting.
- Anthropic engineers prompt skills, not Claude — they have made the mental shift from writing custom prompts for each task to building reusable skill folders for recurring work.
- A skill has three layers: a description that tells Claude when to use it, instructions that tell it how to execute, and tools (code, APIs, scripts) that give it hands to act.
- Most people obsess over the prompt layer (layer two) and skip the tools layer (layer three) — Anthropic engineers do the opposite.
- A beautiful detailed prompt paired with bare-bones tools with parameters named a and b is like giving an engineer a vague function signature — the model cannot work with it effectively.
- Skills should be small and composable, not large and monolithic — a single content-creation skill that does everything breaks and is impossible to improve without breaking adjacent functions.
- Splitting a monolithic skill into YouTube idea research, YouTube script writer, and LinkedIn post allows each to be improved independently and chained together automatically.
- When a focused skill breaks, you know exactly where to look — when a giant skill breaks, debugging requires eliminating every possible failure point.
- Improvements to small composable skills compound — updating the script writer skill improves every workflow that calls it, not just the one you were fixing.
- A properly described skill has a label specific enough that Claude uses it automatically without being explicitly invoked by name.
- The application layer of the AI world is the skills layer — Anthropic builds the models, you build the skills, and the skills are where the leverage lives.
- After every skill run, updating the skill based on what broke and what worked is the maintenance habit that makes the system compound over time.
- The correct mental model is that you are building apps on top of the AI platform — you are the app developer, not just a user of the model.
Stop Prompting Claude — Start Building Skills
Anthropic engineers do not write one-off prompts — they build reusable, composable skills that get smarter every session through a compounding update loop.
- Almost everyone is prompting Claude Code wrong — four rules from Anthropic engineers, no technical background required
- Mental model shift: stop writing one-off prompts for repetitive tasks, start building reusable skill folders
- Anthropic builds the model; you build the apps on top — skills are the app layer
- Three layers inside a skill: description of when to invoke, instructions for how to execute, and tools like scripts and APIs
- Most users stop at instructions — the tools layer is where skills become genuinely powerful
- One giant skill becomes unmanageable — split into focused skills that each do one thing
- Composability means issues are easy to spot, improvements compound, and skills transfer across projects
- If Claude keeps rewriting the same script, save it in the skill folder once — code is deterministic, AI is not
- Trading tokens for code compute is cheaper, faster, and more repeatable
- user-invocable: false restricts invocation to agents only
- disable-model-invocation: true requires a human to trigger high-risk actions like deploy or send-message
- After every run: was that fix one-time or permanent? If permanent, update the skill
- The compounding loop — use, get output, update — means Claude on day 30 is measurably better than day one
Terms worth knowing.
- Claude Code skill
- A folder of organized files — instructions, tool definitions, and templates — that packages a reusable workflow for Claude Code to follow, replacing one-off custom prompts for recurring tasks.
- Composable skills
- Small, single-purpose Claude Code skills designed to be combined with each other like building blocks, so complex workflows can be assembled from focused, independently maintainable pieces.
- Procedural knowledge (AI context)
- Step-by-step instructions that tell an AI agent how to complete a specific task — the 'how to do it' as opposed to factual knowledge — stored in a skill file so it can be reused.
- Application layer (AI)
- In the AI stack, the layer above raw models and base prompts where developers build specialized tools, skills, and workflows that end users interact with — analogous to apps on a smartphone.
- Prompt engineering
- The practice of crafting precise input instructions to guide an AI model toward a desired output, including structuring context, examples, and constraints to improve response quality.
- Slash command (Claude Code)
- A shortcut typed with a leading '/' in Claude Code that triggers a named skill or built-in function, replacing the need to write out a full prompt each time.
- Skill compounding
- The practice of updating and refining a Claude Code skill after each use so that improvements accumulate over time, making the skill progressively more accurate and useful.
- AI code summit
- An Anthropic-hosted developer event where engineers share internal best practices, tooling updates, and architectural patterns for building with Claude Code and related APIs.
Things they pointed at.
Lines you could clip.
“Stop thinking in traditional prompts. Start thinking in prompting Claude skills.”
“A skill is more than a prompt.”
“People obsess over the prompt and skip the tools, the third layer of a skill. Anthropic engineers do the opposite.”
“Code is deterministic. If you give it the same input, it will give you the same output every single time. Whereas in the AI world, that's not necessarily the case.”
“Claude on day 30 of working with you is gonna be a lot better on Claude on day one.”
“Is this a one-time fix or should this be in the skill forever?”
Word for word.
The bait, then the rug-pull.
Austin Marchese walked out of the AIE/Code summit with a finding most Claude Code users won't stumble on by accident: the engineers who built the thing aren't writing prompts at all. They're building skills -- reusable, tool-backed, self-improving slash commands that get sharper every session. Four rules. No technical experience required.
Named ideas worth stealing.
The Three Layers of a Skill
- Description (metadata -- when to invoke)
- Instructions (playbook -- how to execute)
- Tools (scripts, APIs, files -- what it can do)
Layer 3 (tools) is where all the leverage lives and where most users stop short.
The Composability Rules
- Issues are easy to spot in focused skills
- Improvements compound across every workflow using that skill
- Reuse instead of rebuild
Keep skills small and single-purpose so they chain cleanly instead of collapsing into monoliths.
The Session Compounding Loop
- Use skill
- Get output
- Ask: one-time fix or forever?
- If forever: update the skill
- Next session starts smarter
Skills accumulate institutional knowledge across sessions. The loop turns day 1 AI into day 30 AI.
The Two Invocation Flags
- user-invocable: false -- agent-only, hidden from slash menu
- disable-model-invocation: true -- human-gated, model cannot auto-run
Fine-grained control over who triggers what. Essential for high-risk skills.
How they asked for the click.
“if you like this, you will love this video where I break down how Boris Churney, the creator of Claude code, uses Claude skills”
Clean next-video CTA with explicit relevance bridge. Subscribe ask buried inside an anti-slop agreement bit mid-video at 8:42 rather than at the end -- unusual placement but effective for watch time.









































































