Anthropic Built It. OpenAI and LangChain Just Responded. You Now Have A Decision To Make.

video thumbnail for 'Anthropic Built It. OpenAI and LangChain Just Responded. You Now Have A Decision To Make.'

Three of the biggest names in AI all made moves in the agent space within a single week. Anthropic launched Claude Managed Agents. LangChain answered with Deep Agents Deploy. Then OpenAI shipped the next evolution of its Agents SDK. At first glance, these looked like three separate announcements. They weren’t. They were three different answers … Read more

Anthropic’s Agent Skills Are Just Not Enough. Here’s What Actually Gets You to 99.9%

video thumbnail for 'Anthropic's Agent Skills Are Just Not Enough. Here's What Actually Gets You to 99.9%.'

In 2026, a lot of people expect AI to finally deliver real work and real business value. Not “AI wrote a blog post.” Not “AI drafted a few social messages.” I’m talking about AI systems that can run complex, multi-stage workflows that normally involve humans, spreadsheets, approvals, and a lot of domain knowledge. Examples include … Read more

Claude AGENT TEAMS just built my AI Double Agent

video thumbnail for 'Claude AGENT TEAMS just built my AI Double Agent'

I created an automation that lets powerful cloud language models answer questions about private company documents without ever seeing real sensitive data. The cloud model only ever receives surrogate values. Real names, passport numbers, financials and other secrets stay inside my network. This article explains how I put that together, the challenges I ran into, … Read more

Anthropic Just Changed How Agents Call Tools. I Stole It for My Qwen3.5 Agent

video thumbnail for 'Anthropic Just Changed How Agents Call Tools. I Stole It for My Qwen3.5 Agent'

I created an automation that dramatically reduces unnecessary LLM context and lets the model orchestrate complex workflows with real code. The two design patterns at play are simple in concept but powerful in practice: tool search and programmatic tool calling. Both solve problems that crop up as agents grow: tool definitions bloating the context window, … Read more

Search Is Not Enough — Build AI Agents That Explore

video thumbnail for 'Search Is Not Enough — Build AI Agents That Explore'

I created an automation that treats a knowledge base more like a living file system than a static set of vectors. Instead of relying only on semantic search, this approach lets an AI agent actually explore folders and files, form hypotheses about where answers live, and then dig deeper—just like a developer reading a codebase. … Read more

The Complete Agentic RAG Build: 8 Modules, 2+ Hours, Full Stack

video thumbnail for 'The Complete Agentic RAG Build: 8 Modules, 2+ Hours, Full Stack'

Overview I built a full-featured Agentic RAG application that lets an LLM interact with private company data safely, efficiently, and transparently. The stack is intentionally simple: a React frontend, a Python FastAPI backend, and Supabase for storage, vectors, and auth. I used DocLing for document parsing and LangSmith for observability. The result is a multi-user … Read more

Build Smarter AI Agents with Retrieval Engineering (n8n)

video thumbnail for 'Build Smarter AI Agents with Retrieval Engineering (n8n)'

I built AI agents for businesses and quickly learned that vector search is powerful but not a cure-all. Vector search shines for conceptual, fuzzy queries. It struggles when answers require exact matches, structured calculations, or chaining facts across systems. Over hundreds of projects I helped with, the same blind spots showed up again and again. … Read more

Chunks Aren’t Enough … You NEED Context Expansion (n8n)

video thumbnail for 'This RAG Trick Makes Your AI Agents WAY More Accurate (n8n)'

I built an automation that fixes the single biggest weakness in most retrieval-augmented generation systems. The problem is simple: agents retrieve isolated fragments of documents, but they have no idea where those fragments sit in the document structure. That missing structure strips away the meaning those fragments need. I call the solution context expansion. It … Read more