Meta-Meta-Prompting: The Secret to Making AI Agents Work
Meta-Meta-Prompting: The Secret to Making AI Agents Work People keep asking me why I am spending my nights coding til 2AM. I have a job and a big one, as CEO of Y Combinator. We help thousands of buil
Meta-Meta-Prompting: The Secret to Making AI Agents Work
And the skillify manifesto explained why LangChain raised $160M and gave you a squat rack and dumbell set without a workout plan, and then gave you that workout plan you needed.
What the Sentence Is Really Saying
The highlighted line is a metaphor about the difference between tools and systems of practice:
“LangChain raised $160M and gave you a squat rack and dumbbell set without a workout plan, and then gave you that workout plan you needed.”
In plain English:
- LangChain provided powerful infrastructure for building AI applications.
- But infrastructure alone is not enough.
- Developers still needed a clear method for turning raw AI capabilities into reliable, useful “skills.”
- The “skillify manifesto” supposedly supplied that missing method: a way to structure, train, reuse, and compose AI behaviors into dependable workflows.
The author is comparing AI agent development to fitness.
A squat rack and dumbbells are valuable, but if you do not know how to train, you may make little progress or even hurt yourself. Similarly, LangChain gives developers primitives for connecting language models to tools, memory, documents, APIs, and workflows—but it does not automatically tell you how to design great agents.
The Fitness Metaphor
The metaphor has three parts:
1. The Gym Equipment: LangChain
LangChain became popular because it offered building blocks for AI applications:
- Prompt templates
- Chains of LLM calls
- Tool use
- Retrieval-augmented generation, or RAG
- Agents
- Memory abstractions
- Integrations with vector databases, APIs, and documents
In the metaphor, these are like:
- Squat racks
- Dumbbells
- Barbells
- Benches
- Resistance machines
They are useful, but they are not a training program.
You can walk into a gym full of equipment and still not know:
- What exercise to do first
- How many sets and reps to perform
- How to progress over time
- How to avoid overtraining
- How to combine exercises into a coherent program
Likewise, you can install LangChain and still not know:
- How to design an agent that reliably completes tasks
- How to decompose work into reusable capabilities
- How much logic should live in code versus prompts
- How to test agent behavior
- How to route tasks to the right model or tool
- How to make the system improve over time
The Missing Workout Plan: “Skillification”
The phrase “gave you that workout plan you needed” refers to the idea of skillifying AI behavior.
To “skillify” something means taking a vague AI capability and turning it into a structured, reusable, testable skill.
For example, a weak instruction might be:
A “skillified” version would be more systematic:
The difference is that the second version is not just a prompt. It is closer to an operational procedure.
That is the “workout plan”: not merely having access to AI tools, but knowing how to organize them into repeatable routines.
Why LangChain Alone Was Not Enough
LangChain’s early appeal was that it made it easier to wire together LLM-based apps. But many developers discovered that agent systems were still fragile.
Common problems included:
- Agents getting stuck in loops
- Agents choosing the wrong tool
- Prompts becoming messy and unmaintainable
- Hard-to-debug chains of reasoning
- Unclear boundaries between deterministic code and probabilistic model behavior
- No obvious way to evaluate whether an agent was improving
So the criticism is not necessarily “LangChain is bad.” It is more subtle:
LangChain provided the equipment, but developers still needed an architecture and discipline for using it effectively.
This is why the article’s broader theme matters: “Meta-Meta-Prompting: The Secret to Making AI Agents Work.” The author is interested in moving beyond isolated prompts toward systems that can create, manage, and improve other prompts, skills, and agents.
Tools vs. Workflows vs. Skills
A helpful distinction:
Tool
A tool is something the AI can call.
Example:
Workflow
A workflow is a sequence of steps.
Example:
Skill
A skill is a reusable capability that combines instructions, tools, context, examples, and output expectations.
Example:
The author is arguing that serious AI systems are built out of skills, not just prompts or tools.
Why This Matters for AI Agents
An AI agent is often described as a model that can reason, use tools, and take actions. But in practice, useful agents need structure.
A simple agent loop might look like this:
Without skills, the agent has to improvise every time.
With skills, the agent can say:
“This looks like a research task. I should use the research synthesis skill.”
“This looks like a personal reflection task. I should use the book mirror skill.”
“This looks like code migration. I should use the migration planning skill.”
That makes the system more reliable.
Connection to the Nearby Context
The nearby article is about treating AI not as a simple chat box, but as an operating system for personal work.
The author lists earlier essays:
- Fat Skills, Fat Code, Thin Harness: Put substantial logic into reusable skills and code, while keeping the orchestration layer minimal.
- Resolvers: Route tasks to the right intelligence or capability.
- Naked models are stupider: A raw language model is like an engine without a vehicle around it.
- Skillify manifesto: Turn vague AI interactions into explicit, reusable skills.
So this sentence is summarizing one piece of that philosophy:
The AI ecosystem got good at giving people components. The next step is teaching people how to assemble those components into repeatable, compounding systems.
Simple Example: From Prompt to Skill
A basic prompt:
A skillified version:
That is exactly what the article later describes with the Pema Chödrön example: the AI does not merely summarize the book. It maps the book onto the author’s life using a structured capability.
The Core Takeaway
The sentence is making a broader point about the evolution of AI development:
- Phase 1: People used raw chatbots.
- Phase 2: Frameworks like LangChain gave developers tools to connect models to the world.
- Phase 3: Builders realized tools were not enough; they needed reusable agent skills, architectures, and evaluation methods.
- Phase 4: Personal AI systems become collections of durable, composable skills.
So the “squat rack and dumbbells” are the AI frameworks and primitives.
The “workout plan” is the methodology for turning them into useful, repeatable, high-leverage agent behaviors.