AI agents ·
the complete guide
by a non-dev.
Hey, I'm Jérémy. I'm not a developer. And yet, in 2026, I've built several AI agents that I use every single day. On this page, I'm pulling together everything I've learned: what an agent really is, the three levels for building one (no-code, low-code, full code), the workflows that work, the cost, the architecture, the common mistakes. All in plain English, no pointless jargon.
What is an
AI agent?
In one sentence
An AI agent is a large language model you've given tools, an execution loop and a goal. Simon Willison, one of the clearest voices on the topic, sums it up with the formula: LLM + tools + loop + goal. That's it. No magic, just four building blocks working together.
In practice, an AI agent starts from an intention you give it in plain English (or French, or any language an LLM understands). Instead of just replying with text like a classic chatbot, it decides to call tools: read a file, query a database, send an email, run a web search. It observes the result, thinks, and starts over if needed. The loop stops when the goal is reached, or when a human takes back the wheel.
Agent vs chatbot · the core difference
A chatbot answers. An agent acts. ChatGPT in classic chat mode is a chatbot: you ask a question, it generates text. An AI agent is different: you tell it "send a brief to my last 10 leads" and it actually reads your CRM, opens Gmail, writes 10 personalized emails, and asks you to approve before sending them. That ability to take real-world actions is what changes everything.
This distinction is recent. In 2023, we mostly talked about "AI assistants" that suggested text. In 2024, the first real agent frameworks shipped (LangChain, AutoGen). In 2025, LLM reasoning crossed a threshold that made agents reliable on complex tasks. 2026 is the year AI agents became usable in everyday life, even for non-developers.
Why 2026 is the year of agents
Three things changed at the same time. First, the models got better at reasoning: Claude Sonnet 4.x, GPT-5 and Gemini 2 reason across several steps without losing the thread. Second, the MCP standard took off: since late 2024, any agent can plug into Sanity, Stripe, Telegram or any service through the Model Context Protocol. Third, no-code agents emerged: Lindy, Crew AI Studio, Zapier AI Actions let you put together an agent in an hour, no code required.
The result: what took a team of devs and two months of work in 2023 gets done in an afternoon in 2026. That's why I wrote this page: the barrier to entry has collapsed, and a lot of people don't know it yet.
The quote to remember
"An agent is an LLM running a tool loop in an environment to reach a goal." — Simon Willison, creator of Datasette, a go-to observer of LLMs since 2022.
The 3 levels to
build an agent.
Before asking which tool to choose, you need to know which level you want to play at. I've tested all three. Each has its own logic, its limits, its audience. Here's my way of reading it.
Level 1 · No-code (the on-ramp)
No-code is the option to start with. You don't write a single line of code. You drag and drop blocks in a visual interface. The agent is built as an assembly of bricks. My four favorite tools at this level:
- Lindy · mainly an email agent, but also calendar, research, automations. Very clean, free plan, paid at $49 a month if you're serious.
- Zapier AI Actions · the no-code giant shipped an AI layer. You connect your usual 7,000 apps with an agent on top. Handy if you already live in Zapier.
- Crew AI Studio · the no-code version of CrewAI, the open-source framework. You build teams of agents that collaborate. More visual and more complete than Lindy for multi-agent workflows.
- n8n + AI · n8n is an open-source automation tool you can self-host for free. Its AI layer is solid, and you keep control of your data.
My advice: if you're starting out, begin with Lindy or Crew AI Studio. You'll have a working agent in an hour. It's the best way to understand the logic before leveling up.
Level 2 · Low-code (the sweet spot)
Low-code is my favorite level. You write a bit of configuration in YAML, JSON or markdown, but the tool does the heavy technical lifting. You keep control, without the effort of a full-code project. My three options at this level:
- Claude Code + skills + MCP · my daily stack. Claude Code is Anthropic's terminal agent, skills are folders of instructions that trigger automatically, and MCP lets you plug in any external service. The complete guide is here.
- OpenAI Custom GPTs · you build an agent in a few minutes through a guided interface inside ChatGPT. Limited to OpenAI tools (search, code interpreter, DALL-E), but very accessible.
- Anthropic Skills (in Claude Desktop) · same logic as Claude Code skills but without a terminal. Mac and Windows. The lowest barrier to entry of them all.
My advice: if you do writing, marketing, sales, or any knowledge work, Claude Code will give you 10× more leverage than a no-code tool. The learning curve is a few days, not a few months.
Level 3 · Full code (for real projects)
Full code is when you want to build an agent that goes to production with hard constraints: performance, optimized cost, deep integration into an existing system, a technical team behind it. The reference frameworks in 2026:
- LangGraph · the evolution of LangChain, the most widely used Python framework for orchestrating complex agents. State graphs, persistence, native human in the loop.
- Anthropic Agent SDK · Anthropic's official SDK for Python and TypeScript. Simpler than LangGraph, more opinionated. Ideal if you're building everything around Claude.
- AutoGen (Microsoft) · a conversational multi-agent framework, strong for setups where several agents collaborate.
- OpenAI Agents SDK · the equivalent on the OpenAI side. Public release in late 2025, maturing fast.
My advice: only go full code when low-code no longer cuts it. For 90% of personal and even SMB use cases, Claude Code covers the need. Full code is useful when you want to self-host, scale to thousands of users, or have fine-grained control over token cost.
Comparison table
| Level | Effort | Price | Control | Scalability |
|---|---|---|---|---|
| No-code | 1 hr for your first agent | €0 to €100/mo | Limited (fixed bricks) | Low (quick ceiling) |
| Low-code | 1 day to get going properly | €20 to €200/mo | High (skills + MCP) | Good (personal and SMB) |
| Full code | Weeks to months by scope | Variable (API tokens) | Total (custom architecture) | Unlimited (production) |
My own journey
I started in 2024 with Lindy to understand the basics. In 2025, I switched to Claude Code and never looked back. I dabbled in full code once for a client project. Bottom line: low-code Claude Code covers 95% of my needs.
Popular AI agent
workflows in 2026.
Here are the six agent workflows I see working best in 2026, both in my own use and from what I track. For each, I give the pitch, the tool I recommend, and a link to a deeper tutorial when one exists.
Email agent
Sort your inbox, reply to the simple emails, draft the complex replies, prioritize. It's the agent that saves the most time on average, because everyone is drowning in email.
My stack: Claude Code + Gmail MCP, or Lindy for no-code. One-hour setup, daily savings of one to two hours.
Contract agent
Review a supplier contract, spot the risky clauses, compare against a template, generate a list of points to negotiate. Heavily used in legal, finance, procurement. Immediate ROI.
My stack: Claude Code with a custom legal-review skill. You hand it the PDF, it gives you an analysis brief in 3 minutes.
Research agent
Run several web queries in parallel, read the sources, synthesize, deliver a sourced report. More powerful than a simple Perplexity search when the topic is complex or needs precise data.
My stack: the deep-research skill on Claude Code, or OpenAI Deep Research. A sourced 5-10 page output in 10-20 minutes.
Sales agent
Qualify a lead, brief you before a call, write a personalized follow-up, update your CRM. The agent that saves time across the whole sales cycle, without replacing the human who closes.
My stack: Claude Code + Sanity or HubSpot MCP. I built an agent that served me well in my last job before Jerwis.
Watch agent
Scan 100+ sources (RSS, Reddit, Hacker News, YouTube, X), filter by relevance, cluster the hot topics, deliver a daily or weekly digest. It's what runs behind the scenes for my AI Playbook newsletter.
My stack: Claude Code subagents in parallel + custom scoring. The Jerwis News digest is generated every day by this agent.
Personal agent
Calendar, tasks, reminders, appointments, a to-do that updates itself. The agent that acts as your personal assistant: you talk to it in plain English in the morning, it organizes your day. The biggest use of Lindy in 2026.
My stack: Lindy for no-code or Claude Code + Google Calendar MCP for low-code. ROI: 30 min to 1 hr saved per day.
Workflows that often fail
Three use cases where AI agents disappoint in 2026: fully autonomous customer support (humans are still better on complex cases), agents that make financial decisions on their own (too risky, keep a human), creative agents with no review (the quality is uneven, you have to edit afterward). Don't make these your first attempts.
The cost of an AI agent
in 2026.
The cost of an agent depends on three things: the tool you choose (no-code, low-code, full code), the AI model behind it (Claude, GPT, Gemini, Llama), and how intensively you use it. Here are the real ranges I see around me in May 2026.
Indicative pricing table
| Level | Typical tool | Monthly price | What it covers |
|---|---|---|---|
| No-code | Lindy Pro plan | $49 | 1 personal agent, 1,000 actions/mo |
| No-code | n8n self-hosted | €5-15 (server) | Unlimited workflows, you just pay for the infra |
| Low-code | Claude Pro | $20 | Claude Code included, 100+ messages/day |
| Low-code | Claude Max | $100 | Heavy usage, 1M token context |
| Low-code | OpenAI Plus + Custom GPTs | $20 | Build and use your Custom GPTs |
| Full code | Claude API by the token | €50-500 by usage | Total freedom, pay for what you use |
| Full code | OpenAI API by the token | €50-500 by usage | Same on the OpenAI side |
The hidden costs people forget
What shows up on the invoice is never the real cost of an agent. Here are the hidden costs I see come up all the time.
- Maintenance · an agent that works today can break tomorrow if a third-party tool's API changes. Budget 2-3 hours a month of maintenance for an agent in production.
- Debugging · when an agent goes haywire, you have to figure out why. Tracing tools (LangSmith, Helicone) cost an extra $20-50 a month.
- Monitoring · if the agent runs unsupervised, you can wake up one morning to a €500 API bill because it looped on an error all night. Always set a daily cost cap.
- Learning · the time you spend learning the tool and iterating on your prompts. The first week, budget 10-15 hours for a clean setup.
When a paid agent is worth it
My simple rule: an agent is worth its price when it saves you at least 3 hours a month. At €50 a month, with 3 hours saved at €25 an hour (your baseline personal time), you're already in the black. For a sales or contract agent that saves you 10 hours a month, the ROI is massive.
What's not worth it: paying for an agent you only use to show off. No need to subscribe to a $99 tool just to go "wow, I have an AI agent." Start with Claude Pro at $20 or a free n8n, and upgrade when the real need shows up.
My setup and its real cost
For Jerwis, I'm on Claude Max ($100/mo) + Anthropic API on top (~$50/mo by usage) + a few free MCP servers. Total: $150-180 a month for 5-6 agents running all the time. Reckon ~10 hours saved per week. ROI: comfortably positive.
The architecture of an agent ·
the technical building blocks.
Whether you're in no-code, low-code or full code, an AI agent is always made of the same building blocks. Understanding these blocks helps you choose your tools better and debug more easily when something breaks. Here are the six fundamental blocks.
Block 1 · The LLM (the brain)
This is the language model that reasons, decides which tool to call, interprets the results. In 2026, the leaders are Claude (Anthropic), GPT (OpenAI), Gemini (Google) and Llama (Meta, open-source). The choice of LLM affects reasoning quality, speed and cost. For a personal agent, Claude Sonnet 4.x or GPT-5 mini are solid choices. Read the LLM entry.
Block 2 · Tools (function calling)
Tools are what the agent can call. Read a file, send an email, run a web search, query an API. Technically, this is what's called function calling: you describe a function to the agent (name, parameters, what it does), and it decides when to call it. Without tools, the agent is just a chatbot. Read the Tool use entry.
Block 3 · MCP (Model Context Protocol)
MCP is the open standard launched by Anthropic in late 2024 that lets any agent plug into any external service. Instead of coding a custom integration for each tool (Sanity, Stripe, Telegram, GitHub), you install an MCP server and the agent can use it as if it had been built for it. This is what made the agent ecosystem explode in 2025-2026. Read the MCP entry.
Block 4 · Memory
Without memory, an agent forgets everything between runs. Memory breaks down into two layers: short term (the current conversation context, limited to 200K-1M tokens depending on the model) and long term (often implemented via embeddings stored in a vector database like Pinecone, Supabase pgvector or Weaviate). Long-term memory lets the agent remember your preferences, your past interactions, your documents.
Block 5 · The execution loop (agentic loop)
This is the heart of what separates an agent from a chatbot. The typical loop: the agent thinks, picks a tool, runs it, observes the result, and starts over if the goal isn't reached. This loop can run once or 100 times depending on the complexity of the task. It's these iterations that give an agent its autonomy. Read the Agentic workflow entry.
Block 6 · Guardrails and human in the loop
Guardrails are the rules that stop the agent from messing up: no touching certain files, no exceeding a budget, no sending an email without approval. Human in the loop means asking a human to approve sensitive actions before they're carried out. These two blocks are essential the moment the agent touches real data. Without them, it's only a matter of time before it slips up.
A simplified diagram of the architecture
Here's how these blocks fit together in practice:
- You give an intention to the agent in plain English.
- The LLM breaks it down into sub-tasks.
- For each sub-task, the agent picks a tool (read a file, run a search, call an API).
- The tool runs via MCP or native function calling.
- The agent observes the result, saves it to memory if relevant, and decides the next step.
- On sensitive actions, the agent hands off to the human for approval.
- The loop continues until the goal is reached, the budget is spent or it's explicitly stopped.
It's this architecture that lets an agent deliver a client-qualification brief in 3 minutes, or generate a complete newsletter in 10 minutes. It's not magic, it's just orchestration.
To go further on context engineering (the art of giving the right context at the right moment to an agent), I'd suggest reading the dedicated entry or following me through the newsletter — it's a topic that deserves several articles all on its own.
Common mistakes when
you build your first agent.
I've made every one of these mistakes at least once. If you're starting out, here are the six most frequent pitfalls and how to avoid them. This section will save you weeks.
Mistake 1 · Over-trusting the agent
The first time an agent delivers something impressive, you think "great, I can let it run on its own." Bad idea. An agent that works 9 times out of 10 will let you down on the 10th, on the most important action. Rule: if a mistake by the agent could cost you dearly (email sent to the wrong client, data deleted), keep a human in the loop.
Mistake 2 · No logs
When the agent goes haywire, you want to understand why. Without detailed logs (which prompt was sent, which tool was called, which result came back), you're flying blind. Set up minimal logging from day 1. For Claude Code, it's native. For other tools, wire up LangSmith, Helicone or a basic log file.
Mistake 3 · No timeout or budget cap
An agent can loop indefinitely on an error, burning tokens with every iteration. I've seen real cases where an agent running on its own generated €200 of tokens in one night because it was stuck in an error loop. Always set a max number of iterations (say 20) and a daily budget cap.
Mistake 4 · Plaintext credentials
Connecting an agent to your Gmail requires OAuth credentials. If you paste those credentials into a prompt or an unprotected file, it's game over the moment they leak. Always use environment variables (.env) and add them to .gitignore. For agents that touch sensitive data, I use a secrets vault (1Password CLI, Doppler, Vercel env).
Mistake 5 · A prompt that's too vague
"Sort my emails" is a prompt that will produce a mediocre result. "Sort my emails into 4 categories: Urgent, reply today; Reply this week; Newsletters to archive; Spam to delete. For each email, give your confidence as a %" will produce a result 10× better. The more precise and structured the prompt, the better the agent. That's the whole art of context engineering.
Mistake 6 · Trying to do everything at once
The first agent you build should do ONE thing, well. Not sort emails AND plan your day AND generate summaries. Start simple, add capabilities one by one, test at every step. An agent that does one thing well beats an agent that tries to do everything badly. That's been true of software engineering for 50 years, and it's just as true for agents.
Mistake 7 · Ignoring maintenance cost
You build an agent in an hour, it works, you move on. Three months later, the Gmail API changes an endpoint, the agent fails silently, you miss important emails for two weeks before you notice. Set up a simple alert (an email to yourself, a Telegram notification) that warns you if the agent stops running as expected.
The rule that sums it all up
Treat your agent like a smart but inexperienced intern. You give it clear instructions, you check its work at first, you give it more and more autonomy as you come to trust it. And you ask it to check with you before doing anything irreversible. With that mindset, you avoid 90% of the problems.
Essential articles
on AI agents.
On Jerwis, I've published several longer articles on AI agents. Each one rounds out an angle of this guide. Here's the order I'd recommend reading them in, depending on where you're starting from.
The complete guide to building your AI agent
The big guide where I get into the detail: technical building blocks, use cases, how it actually works step by step. Read this first if you're starting from scratch.
Read the article → 10 min · Step by stepBuilding a Hermes Agent step by step
The tutorial where I show you how I built my Hermes agent that notifies me on Telegram when my Vercel builds pass or fail. Real setup, real code.
Read the article → 8 min · Practical tutorialGmail Agent · the complete tutorial
How to connect an AI agent to your Gmail inbox to sort, draft and reply. The use case that gets going best for a first personal agent.
Read the article → 10 min · Pro tutorialContract Agent · the tutorial
Review a supplier contract, spot the risky clauses, generate a list of points to negotiate. Useful for lawyers, procurement, finance, or any founder who signs contracts.
Read the article → 12 min · TheorySelf-improving agents
Andrej Karpathy popularized the idea of agents that evaluate and improve themselves. I break down his work and show you how to apply these principles to your own agents.
Read the article → 12 min · Real caseThe sales tool I built in Claude Code
The sales agent use case I put together for my last job. Architecture, tool choices, what worked, what broke. The honest post-mortem.
Read the article →AI agent
glossary.
The 12 terms you'll run into constantly when you build AI agents. A short definition here, a link to the detailed entry to dig deeper.
- Agent An LLM with tools, an execution loop and a goal. It's the basic unit. See the glossary →
- Subagent An agent that another agent launches to delegate a sub-task, often in parallel. Detailed entry →
- Agentic workflow A sequence of actions orchestrated by one or more agents to reach a goal. Detailed entry →
- Tool use An LLM's ability to call external functions (read a file, run a search, etc.). Detailed entry →
- MCP Model Context Protocol, Anthropic's open standard for plugging an agent into any external service. Detailed entry →
- Skill agent A folder of instructions that triggers automatically when the agent recognizes the domain of your request. Detailed entry →
- Human in the loop Having a human approve the agent's sensitive actions before execution. Detailed entry →
- Guardrail A rule that stops the agent from taking certain risky actions. Detailed entry →
- Context engineering The art of giving the right context at the right moment to an agent, so it makes the best decisions. Detailed entry →
- Agentic RAG An agent that decides for itself when to search its knowledge base, rather than searching every time. Detailed entry →
- Embedding A vector representation of a text that lets an agent compare documents by meaning, not by words. Detailed entry →
- Hallucination When an LLM makes up false info and presents it as true. The worst enemy of reliable agents. Detailed entry →
The exhaustive
AI agent FAQ.
The 15 questions I get most often in May 2026 about AI agents. Short answers, based on my direct experience.
What is an AI agent in one sentence?
An AI agent is a large language model (LLM) you've given tools, an execution loop and a goal. Simon Willison sums it up with the formula LLM + tools + loop + goal. Instead of just answering a question, it acts, checks the result, and starts again until it reaches its goal.
Do you need to be a developer to build an AI agent?
No. I'm not a developer and I've built several. No-code tools (Lindy, Zapier, n8n, Crew AI Studio) let you put together a working agent in an hour without writing any code. To go further, Claude Code and Custom GPTs move you into low-code with a reasonable learning curve. The barrier to entry completely collapsed in 2025-2026.
How much does an AI agent cost in 2026?
Three ranges. A no-code agent costs between 15 and 100 euros a month (Lindy at $49, n8n self-hosted free, Zapier from $30). A low-code agent plugged into Claude or GPT runs between 20 and 200 euros a month depending on API usage. A homemade full-code agent costs whatever you pay in tokens, usually between 50 and 500 euros a month for regular personal use.
AI agent vs chatbot · what's the difference?
A chatbot answers questions in a conversation. An agent acts in the world. The chatbot returns text; the agent reads an email, edits a file, fires off an API call, checks the result. The core difference is the ability to run tools and loop on the result until it reaches a goal.
What are the best frameworks for building an agent?
For no-code, Lindy and Crew AI Studio. For low-code, Claude Code (skills + MCP) and OpenAI's Custom GPTs. For full code, LangGraph (LangChain), the Anthropic Agent SDK, Microsoft's AutoGen and CrewAI are still the references. My go-to for getting started is Claude Code, because it's what gives me the most control without forcing me to write Python.
Can an AI agent mess things up?
Yes. An agent with access to your inbox, your database or your GitHub can send a message to the wrong person, delete a file or push a broken commit. Protection comes down to three things: guardrails (forbidding certain actions), a human in the loop before sensitive actions, and logs so you can roll back. I never give an agent full autonomy over financial or sensitive customer data.
How do you monitor an agent in production?
Three basics: detailed logs of every action (prompt, tool called, result, duration), alerts on errors or timeouts, a daily cost dashboard in tokens. To go further, LangSmith, Helicone or Langfuse offer step-by-step tracing that's handy for understanding why an agent made a bad decision. For my personal agents, I simply wire Telegram to critical events.
Which use cases really work in 2026?
The six that work best in my experience and from what I track: email agent (sorting and drafting replies), contract agent (review and risky clauses), research agent (synthesizing several sources), sales agent (lead qualification and call briefs), watch agent (daily digest) and personal agent (calendar, tasks, reminders). The ones that often fail: autonomous customer-support agents, agents that make financial decisions on their own, creative agents with no human review.
What are the known limitations of today's agents?
Four limits I hit regularly: hallucination on data they don't know, drift on very long sessions beyond 500,000 tokens, the inability to learn from their mistakes between runs without an external memory mechanism, and cost that can blow up if you let an agent loop with no budget cap. No agent in 2026 is truly 100% reliable yet, even the most advanced ones.
How do I stop my agent from hallucinating?
Three techniques that work in combination: RAG (Retrieval Augmented Generation) to plug the agent into a reliable knowledge base, a prompt that forces the agent to cite its sources and to say "I don't know" rather than make things up, and intermediate verification tools (web search, reading up-to-date docs via context7). Hallucination drops to around 5% with a good setup, versus 20 to 30% in purely generative mode.
Do you need a human in the loop?
For any irreversible or sensitive action: yes, no hesitation. Sending an email to a client, signing a document, deleting data, authorizing a payment. For low-stakes, easily reversible actions: no, the agent can run on its own. The rule I apply at home is human in the loop for anything that touches money, a direct client or legal data.
Agent + RAG · how do you combine them?
RAG gives the agent a knowledge base to draw from before answering. Concretely, you index your documents as embeddings, store that in a vector database (Pinecone, Supabase pgvector, Weaviate), and give your agent a search_knowledge_base tool. When it needs domain info, it searches your base first before falling back on its general knowledge. It's the most powerful combination in 2026 for enterprise agents.
Privacy of the data an agent processes?
Yes, it's a serious topic. Three risk zones: the LLM provider's APIs (Anthropic and OpenAI keep conversations for 30 days by default for abuse moderation, except in Zero Data Retention mode on Enterprise accounts), the third-party tools you plug in via MCP, and your own agent's logs. For sensitive data, I prefer a self-hosted model (Llama, Mistral on your server) over an external API.
Open-source or proprietary?
To get started and learn, proprietary: Claude, GPT, Gemini are simpler to plug in, more reliable, better documented. To scale to heavy usage or for sensitive data, open-source becomes relevant: Llama 4, Mistral, Qwen run on your own infra, marginal cost close to zero, and you keep control of the data. The winning mix in 2026 at a lot of companies is Claude or GPT for reasoning tasks, local Llama for bulk processing.
Which Claude or GPT model for building an agent?
My go-to in 2026: Claude Sonnet 4.x for 80% of agent tasks (fast, cheap, good reasoning), Claude Opus 4.7 when the task is complex or needs long context (up to 1 million tokens), GPT-5 when I want variety or for very creative tasks. For agents doing research in a loop, Sonnet does the job. For critical architecture decisions, Opus.
Resources
and useful links.
External resources (the essentials)
Anthropic · Agents and Tools
Anthropic's official docs on building agents with Claude. Tool use, computer use, Agent SDK. Reference number 1.
Official docsOpenAI · Function Calling
OpenAI's docs on function calling, the basic building block of an agent on the GPT side. Essential if you're building on their stack.
FrameworkLangGraph (LangChain)
The most complete Python framework for orchestrating complex agents. State graphs, persistence, native human in the loop.
BlogSimon Willison · LLM tag
Simon Willison's blog, one of the clearest voices on LLMs and agents since 2022. One to add to your RSS feeds.
StandardModel Context Protocol
The official site for the MCP standard. Spec, SDKs, a list of available MCP servers. Essential the moment you want to plug an agent into external tools.
GitHubGitHub · agents topic
The list of GitHub repos tagged "agents." A goldmine of open-source templates for kicking off an AI agent project.
Internal resources (my content on Jerwis)
Learn AI in order
The complete learning path, from the basics to advanced agents. If you're starting from scratch, begin here.
GlossaryAI glossary · 40 terms
All the vocabulary of AI in 2026, explained simply. Agents, LLM, MCP, RAG, hallucination, embeddings and 35 more.
PillarClaude Code · the complete guide
My pillar guide on Claude Code, the tool I use for 95% of my agents. Install, skills, MCP, workflows, FAQ.
AudioAI Wars podcast
My weekly podcast where we break down the AI news. Several episodes dedicated to agents and their use cases.
Get my next AI agent tests.
Every week, my AI Playbook newsletter shares the agents I'm testing, what works, what breaks. No news recap, no fluff. Unsubscribe in 1 click.
Subscribe to the newsletter