<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Lee Manley</title>
    <description>The latest articles on DEV Community by Lee Manley (@lee_manley_1f3040d70e4caf).</description>
    <link>https://dev.to/lee_manley_1f3040d70e4caf</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3405325%2Feed98501-95e9-433f-9095-3949910226ff.png</url>
      <title>DEV Community: Lee Manley</title>
      <link>https://dev.to/lee_manley_1f3040d70e4caf</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/lee_manley_1f3040d70e4caf"/>
    <language>en</language>
    <item>
      <title>Why I Built IntentQL: A Protocol for AI Agents to Use the Web Natively</title>
      <dc:creator>Lee Manley</dc:creator>
      <pubDate>Sun, 19 Oct 2025 13:42:26 +0000</pubDate>
      <link>https://dev.to/lee_manley_1f3040d70e4caf/why-i-built-intentql-a-protocol-for-ai-agents-to-use-the-web-natively-1pdg</link>
      <guid>https://dev.to/lee_manley_1f3040d70e4caf/why-i-built-intentql-a-protocol-for-ai-agents-to-use-the-web-natively-1pdg</guid>
      <description>&lt;p&gt;For years, web scraping has been the duct tape behind AI agents trying to interact with websites. It works—until it doesn't. HTML changes, pages lag, and what should be a 100ms query becomes a 4-second screen-parsing mess.&lt;/p&gt;

&lt;p&gt;I believe the web needs native infrastructure for agents. Just as robots.txt standardized how crawlers engage with websites, it's time for something similar for AI agents: a declarative, structured protocol.&lt;/p&gt;

&lt;p&gt;So I built IntentQL.&lt;/p&gt;

&lt;p&gt;🔧 The Problem: Scraping Is a Bottleneck&lt;/p&gt;

&lt;p&gt;When an AI agent wants to book a hotel, it doesn't "understand" the page—it scrapes it. That means parsing layout-heavy HTML, guessing at form inputs, and praying nothing broke.&lt;/p&gt;

&lt;p&gt;A recent test showed:&lt;/p&gt;

&lt;p&gt;Scraping the hotel booking UI took 4.46 seconds&lt;/p&gt;

&lt;p&gt;IntentQL took 0.049 seconds&lt;/p&gt;

&lt;p&gt;That's a 91x performance improvement. But more importantly, it's stable. HTML can change without breaking the contract.&lt;/p&gt;

&lt;p&gt;🌐 What Is IntentQL?&lt;/p&gt;

&lt;p&gt;IntentQL is a declarative JSON endpoint websites can serve (like Agent.json) to expose agent-compatible actions. These actions are structured, timestamped, and composable.&lt;/p&gt;

&lt;p&gt;An agent can ask: "What can I do here?" — and get a machine-readable list of intents like:&lt;/p&gt;

&lt;p&gt;{&lt;br&gt;
  "intents": [&lt;br&gt;
    {&lt;br&gt;
      "name": "book_room",&lt;br&gt;
      "description": "Book a hotel room",&lt;br&gt;
      "parameters": ["check_in", "check_out"]&lt;br&gt;
    }&lt;br&gt;
  ]&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;No scraping. No guessing. No fragility.&lt;/p&gt;

&lt;p&gt;🚀 Live Demo&lt;/p&gt;

&lt;p&gt;I built a live side-by-side demo:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://widget-k3vj-a6qvo466v-lee-manleys-projects.vercel.app/" rel="noopener noreferrer"&gt;https://widget-k3vj-a6qvo466v-lee-manleys-projects.vercel.app/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Left side: full HTML scraping&lt;/p&gt;

&lt;p&gt;Right side: direct JSON query using IntentQL&lt;/p&gt;

&lt;p&gt;Includes timestamps + graphics&lt;/p&gt;

&lt;p&gt;Try it. Embed it. Share it. This is how agents should interact with the web.&lt;/p&gt;

&lt;p&gt;🚧 Who Is This For?&lt;/p&gt;

&lt;p&gt;Browser teams (Opera, Arc, Perplexity): no more reverse-engineering&lt;/p&gt;

&lt;p&gt;Web devs: expose actions natively without API bloat&lt;/p&gt;

&lt;p&gt;Standards bodies: time to start the conversation&lt;/p&gt;

&lt;p&gt;If you're working on agent-first experiences, this is the missing layer.&lt;/p&gt;

&lt;p&gt;👀 What Happens Next?&lt;/p&gt;

&lt;p&gt;I'm sharing this across Hacker News, Twitter, and with the W3C AI Agent Protocol community. This isn't a product pitch—it's infrastructure. I'm here to help define the standard.&lt;/p&gt;

&lt;p&gt;Spec: &lt;a href="https://intentql.dev" rel="noopener noreferrer"&gt;https://intentql.dev&lt;/a&gt;&lt;br&gt;
Contact: &lt;a href="mailto:lee@intentql.dev"&gt;lee@intentql.dev&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Want to implement this on your site? There's a one-file guide. Need help? I offer consulting.&lt;/p&gt;

&lt;p&gt;Let's give AI agents a better way to use the web.&lt;/p&gt;

&lt;p&gt;Built in the open. Maintained at intentql.dev.&lt;/p&gt;

</description>
      <category>aiagents</category>
      <category>webdev</category>
      <category>showdev</category>
    </item>
    <item>
      <title>The Agentic Web Needs a Protocol</title>
      <dc:creator>Lee Manley</dc:creator>
      <pubDate>Fri, 01 Aug 2025 09:29:54 +0000</pubDate>
      <link>https://dev.to/lee_manley_1f3040d70e4caf/the-agentic-web-needs-a-protocol-4d2b</link>
      <guid>https://dev.to/lee_manley_1f3040d70e4caf/the-agentic-web-needs-a-protocol-4d2b</guid>
      <description>&lt;p&gt;"We built HTML for humans. But we never built a markup for machines."&lt;/p&gt;

&lt;p&gt;Agentic browsers are coming.&lt;br&gt;
Opera just announced Neon, their first browser that takes actions on your behalf. Others will follow. Everyone’s racing to build smarter interfaces that understand intent and can act autonomously.&lt;/p&gt;

&lt;p&gt;But here’s the problem:&lt;/p&gt;

&lt;p&gt;The web isn’t ready.&lt;br&gt;
Even the smartest AI agents today are stuck scraping HTML, reverse-engineering buttons, guessing what elements do — and breaking every time a class name changes.&lt;/p&gt;

&lt;p&gt;We’ve made browsers agentic.&lt;br&gt;
But we’ve left the web opaque to agents.&lt;/p&gt;

&lt;p&gt;Enter: IntentQL&lt;br&gt;
IntentQL is a declarative, SQL-inspired protocol for describing how agents can interact with your site.&lt;/p&gt;

&lt;p&gt;It flips the model:&lt;/p&gt;

&lt;p&gt;Sites publish an agent.json file — like an API manifest for AI.&lt;/p&gt;

&lt;p&gt;Agents send SQL-like queries to express what they want.&lt;/p&gt;

&lt;p&gt;Responses come back as structured data — not HTML hacks.&lt;/p&gt;

&lt;p&gt;sql&lt;br&gt;
Copy&lt;br&gt;
Edit&lt;br&gt;
SELECT name, price, rating&lt;br&gt;
FROM amazon.products&lt;br&gt;
WHERE category = 'laptops'&lt;br&gt;
  AND price &amp;lt; 1000&lt;br&gt;
ORDER BY rating DESC;&lt;br&gt;
This isn’t scraping.&lt;br&gt;
This is structured, intent-driven interaction — designed for agents, not eyeballs.&lt;/p&gt;

&lt;p&gt;Why now?&lt;br&gt;
Three forces are colliding:&lt;/p&gt;

&lt;p&gt;Multimodal AI is better than ever at understanding human intent.&lt;/p&gt;

&lt;p&gt;Agentic browsers are shipping (like Opera Neon).&lt;/p&gt;

&lt;p&gt;The economic value of automating web tasks is massive — but blocked by fragile scraping.&lt;/p&gt;

&lt;p&gt;We need a foundation.&lt;br&gt;
A shared layer of intent between AI agents and websites.&lt;/p&gt;

&lt;p&gt;This isn’t a product. It’s a protocol.&lt;br&gt;
IntentQL is early. It’s not fully spec’d yet.&lt;br&gt;
But it’s being built out in the open — designed to serve any agent, any site, any stack.&lt;/p&gt;

&lt;p&gt;If you're a developer, a standard-maker, or just someone tired of fragile scraping…&lt;br&gt;
You’re invited.&lt;/p&gt;

&lt;p&gt;🔗 &lt;a href="https://github.com/greenhill32/intentql" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;&lt;br&gt;&lt;br&gt;
🌐 &lt;a href="https://intentql.dev" rel="noopener noreferrer"&gt;intentql.dev&lt;/a&gt;&lt;br&gt;&lt;br&gt;
💬 Follow the journey — more soon&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>ai</category>
      <category>intentql</category>
      <category>agents</category>
    </item>
  </channel>
</rss>
