Build a Minimal WebMCP Agent with Playwright and Gemini (2026)

Build a Minimal WebMCP Agent with Playwright and Gemini (2026)

What Is WebMCP? The W3C Standard for Agent-Aware Web Pages WebMCP (Web Model Context Protocol) is the W3C standard for making web pages speak directly to AI agents. Instead of scraping HTML, parsing DOM trees, or hoping your CSS selectors survive the next redesign, a WebMCP-enabled page exposes its capabilities through a standard JavaScript API: document.modelContext.registerTool(). The agent calls document.modelContext.getTools() to discover what the page offers, then invokes those tools by name with typed parameters. ...

July 13, 2026 · 9 min · baeseokjae
UCP vs ACP 2026: Agent Commerce Protocols Compared

UCP vs ACP 2026: Agent Commerce Protocols Compared

The Two Protocols Trying to Define How AI Agents Buy Things By mid-2026, two competing standards are vying to become the default way AI agents handle commerce: Google’s Universal Commerce Protocol (UCP) and OpenAI/Stripe’s Agentic Commerce Protocol (ACP). Both solve the same fundamental problem — how does an AI agent discover products, negotiate a purchase, and complete a transaction on behalf of a human — but they approach it from very different angles. ...

July 13, 2026 · 7 min · baeseokjae
Optimizing for Agents with llms.txt: A Practical Guide (2026)

Optimizing for Agents with llms.txt: A Practical Guide (2026)

What Is llms.txt and Why It Matters for AI Agents in 2026 llms.txt is a plain-text file you place at your website root that tells AI agents and large language models which pages matter most. It’s the web’s first standardized machine-readable surface designed specifically for AI consumption — not for human visitors, not for search engines, but for the growing fleet of automated agents crawling the web. The format is dead simple: a markdown file with a brief site description, a list of essential links with one-line descriptions, and optionally a reference to an llms-full.txt that embeds the complete content of those pages. Anthropic proposed the standard in late 2024, and by mid-2026 it’s shipped by Stripe, Cloudflare, Vercel, Mastercard, ElevenLabs, and hundreds of other sites. ...

July 13, 2026 · 12 min · baeseokjae
Deterministic Agent Loop Failures 2026

Deterministic Agent Loop Failures 2026: Why Your AI Agent Keeps Repeating Itself

Your AI agent is stuck in a loop. It tried the same API call three times, got the same 503, and it’s about to try a fourth. The log looks like a broken record. This is a deterministic agent loop failure — and it’s the single most common reason production agent deployments fail in 2026. I’ve been running autonomous agents in production for the past year, and loop failures are the problem that keeps coming up. Not model quality, not prompt engineering — agents that get stuck repeating the same failing action until they burn through their token budget or hit a hard timeout. The frameworks that work in demos break in production because they treat the LLM as a reliable component. It isn’t. Here’s what I’ve learned about why loops happen and how to actually fix them. ...

July 13, 2026 · 12 min · baeseokjae
AI Agent Overspend Model Line Mistake 2026

AI Agent Overspend Model Line Mistake 2026: How One Missing Config Burned Half My Budget

An AI agent overspend model line mistake is a configuration bug with a billing blast radius. In my case, a missing model value silently routed routine agent steps to a pro-tier model, and the fastest fix was not prompt tuning. It was tracing requested_model, response_model, tokens, tools, retries, and config diffs in one place. What actually happened when the model line was missing? The failure was boring, which is why it was expensive. ...

July 9, 2026 · 13 min · baeseokjae
AI Agent Tooling Layer Selection Comparison 2026

AI Agent Tooling Layer Selection Comparison 2026: Framework-Agnostic Guide

The best AI agent tooling layer in 2026 is not the framework with the loudest benchmark claim. It is the stack that gives your team reliable orchestration, portable tool access, replayable traces, measurable evals, bounded permissions, and a migration path when the agent framework changes under you. Why is AI agent tooling selection harder in 2026? Agent tooling got more serious and more fragmented at the same time. Grand View Research estimates the AI agents market at $10.9B in 2026, with a projected 49.6% CAGR through 2033. That kind of money pulls every cloud provider, model vendor, observability vendor, and open-source framework into the same procurement conversation. ...

July 9, 2026 · 15 min · baeseokjae
Docker SBX vs E2B Daytona gVisor 2026

Docker SBX vs E2B Daytona gVisor 2026: AI Agent Isolation Compared

If you need local coding-agent containment, pick Docker SBX. If you need a hosted code-execution API, pick E2B. If you need long-lived stateful agent computers, pick Daytona. If you already run Docker or Kubernetes and want a runtime isolation primitive, use gVisor. These are not interchangeable products. The mistake I keep seeing is treating “sandbox” as one category. In practice, an AI coding agent running npm install, a hosted Python code interpreter, a persistent GPU workspace, and a Kubernetes pod runtime have different failure modes. Docker SBX, E2B, Daytona, and gVisor all reduce blast radius, but they sit at different layers of the stack. ...

July 9, 2026 · 18 min · baeseokjae
Northflank vs Blaxel vs Modal AI Sandbox: 2026 Agent Infrastructure Compared

Northflank vs Blaxel vs Modal AI Sandbox: 2026 Agent Infrastructure Compared

If I had to choose quickly: Northflank is the enterprise and BYOC pick, Blaxel is the agent-native persistent sandbox pick, and Modal is the Python-first serverless compute and GPU pick. The right answer depends less on “can it run code?” and more on where state, network access, compliance, and cost boundaries live. What does AI agent sandbox infrastructure mean in 2026? An AI agent sandbox used to mean a short-lived container where an LLM could run a Python snippet, maybe install a package, and return stdout. That is still useful, but it is no longer enough for serious agent products. ...

July 9, 2026 · 17 min · baeseokjae
AI Agent API Cost Horror Story 2026

AI Agent API Cost Horror Story 2026: How Runaway Agents Burn Token Budgets

The AI agent API cost horror story in 2026 is not a single expensive prompt. It is usually a loop: an agent retries a tool, hands off to another agent, grows context, and keeps spending after dashboards have already warned you. The fix is hard runtime limits, not better vibes around prompt engineering. Why Are AI Agent API Cost Horror Stories Surging In 2026? AI agent costs are surging because the unit of failure changed. A chatbot request fails once. An agent request can fail for hours. ...

July 8, 2026 · 15 min · baeseokjae
Browser MCP Snapshot Token Cost 2026

Browser MCP Snapshot Token Cost 2026: What Browser Automation Actually Costs

Browser MCP snapshot token cost is not the price of one accessibility tree. In practice, it is tool schema tokens, page snapshots, chat history, model output, retries, and browser runtime added together. The right budget number is dollars per completed task, not dollars per million tokens. What are browser MCP snapshots and why do they cost tokens? Browser MCP servers give an LLM a controlled way to inspect and operate a browser. Microsoft’s Playwright MCP is the clearest example: it lets a model interact with pages through structured accessibility snapshots instead of relying only on screenshots or a vision model. That is useful because the model can see buttons, links, roles, labels, and text in a machine-readable form. ...

July 8, 2026 · 14 min · baeseokjae