<?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: denyn1</title>
    <description>The latest articles on DEV Community by denyn1 (@denyn1).</description>
    <link>https://dev.to/denyn1</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4136562%2F0e317f8c-1707-4683-b2f0-e81a2772b3d3.png</url>
      <title>DEV Community: denyn1</title>
      <link>https://dev.to/denyn1</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/denyn1"/>
    <language>en</language>
    <item>
      <title>AIFeed - signed content permissions for AI web crawlers</title>
      <dc:creator>denyn1</dc:creator>
      <pubDate>Tue, 22 Sep 2026 01:10:00 +0000</pubDate>
      <link>https://dev.to/denyn1/aifeed-signed-content-permissions-for-ai-web-crawlers-cj3</link>
      <guid>https://dev.to/denyn1/aifeed-signed-content-permissions-for-ai-web-crawlers-cj3</guid>
      <description>&lt;p&gt;I built this because robots.txt kept coming up in conversations about AI crawlers&lt;br&gt;
and the answer was always "it's a polite request". AIFeed tries to make it checkable.&lt;/p&gt;

&lt;p&gt;What it is: a publisher signs a small JSON manifest with Ed25519 and anchors the&lt;br&gt;
key in DNS. Agents verify TLS -&amp;gt; domain -&amp;gt; signature -&amp;gt; DNS, then re-check a&lt;br&gt;
revocation list. Two markdown profiles for delivery, plus a signed delta index so&lt;br&gt;
unchanged pages cost nothing.&lt;/p&gt;

&lt;p&gt;Publishing a static site is one command: npx aifeed init --domain example.com --dir ./site&lt;br&gt;
Verifying any domain is three lines with @aifeed/verify.&lt;/p&gt;

&lt;p&gt;Numbers from the local harness: -68.8% bytes vs HTML (-95.7% with the delta index),&lt;br&gt;
0.70 ms per signature check. It's a simulation harness, not a field trial; the&lt;br&gt;
30-day pilot hasn't run.&lt;/p&gt;

&lt;p&gt;Honest limits: no external crypto review yet, the specs are a draft, and&lt;br&gt;
origin+DNS compromise on first contact is undetectable.&lt;/p&gt;

&lt;p&gt;Happy to answer questions about the design (JCS+Ed25519, DNS anchoring,&lt;br&gt;
revocation semantics, MAKO compatibility).&lt;/p&gt;

&lt;p&gt;&lt;a href="https://aifeed.md" rel="noopener noreferrer"&gt;https://aifeed.md&lt;/a&gt;&lt;br&gt;
Run:   npx -y aifeed-mcp-server&lt;br&gt;
Registry: io.github.denyn1/aifeed-mcp-server&lt;br&gt;
Smithery: &lt;a href="https://smithery.ai/server/denyn1/aifeed-mcp-server" rel="noopener noreferrer"&gt;https://smithery.ai/server/denyn1/aifeed-mcp-server&lt;/a&gt;&lt;br&gt;
Repo: &lt;a href="https://github.com/denyn1/aifeed-protocol" rel="noopener noreferrer"&gt;https://github.com/denyn1/aifeed-protocol&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>productivity</category>
      <category>javascript</category>
    </item>
    <item>
      <title>AI crawlers ignore robots.txt, so I built signed content permissions</title>
      <dc:creator>denyn1</dc:creator>
      <pubDate>Mon, 21 Sep 2026 23:57:12 +0000</pubDate>
      <link>https://dev.to/denyn1/ai-crawlers-ignore-robotstxt-so-i-built-signed-content-permissions-3p89</link>
      <guid>https://dev.to/denyn1/ai-crawlers-ignore-robotstxt-so-i-built-signed-content-permissions-3p89</guid>
      <description>&lt;p&gt;I fell down this rabbit hole while reading why publishers keep complaining about AI crawlers. One vendor's data: &lt;strong&gt;1.9 billion crawls ignored robots.txt rules in a six-month window&lt;/strong&gt;. Another measured a &lt;strong&gt;70,900:1 crawl-to-referral ratio&lt;/strong&gt; for one major AI provider. AI bots averaged &lt;strong&gt;4.2% of all HTML requests in 2025&lt;/strong&gt;, peaking at 6.4%.&lt;/p&gt;

&lt;p&gt;The rules are right there in a text file. The file isn't the problem. It's that a text file can't prove who wrote it, can't be revoked, and isn't bound to the domain it claims to speak for.&lt;/p&gt;

&lt;p&gt;So I built AIFeed: an open, signed way for a site to declare what AI agents may do with its content. Here's what it does, what I measured, and what's still missing.&lt;/p&gt;

&lt;h2&gt;
  
  
  Three gaps plain text can't close
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;No proof.&lt;/strong&gt; Anyone can copy a robots.txt to another domain, or edit the one on a compromised host. An agent has no way to check whether the rules it just read actually came from the owner.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;No revocation.&lt;/strong&gt; Once a crawler caches your "allowed for training" file, changing it later does nothing. There is no revocation list and no status to re-check on reuse.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;No binding.&lt;/strong&gt; robots.txt has no notion of "this domain, this key, this revision". Nothing chains the domain to the permissions.&lt;/p&gt;

&lt;p&gt;I wanted something an agent could verify on its own, without calling a service and without trusting a new intermediary.&lt;/p&gt;

&lt;h2&gt;
  
  
  How it works
&lt;/h2&gt;

&lt;p&gt;A publisher generates an Ed25519 key pair and publishes a manifest at &lt;code&gt;/.well-known/ai.json&lt;/code&gt;. The manifest lists per-use permissions (training, retrieval, quoting, summarization), crawl rules, licensing, and a revision number. It's signed over JCS-canonical JSON, and the public key is anchored in a DNS TXT record (&lt;code&gt;_aifeed&lt;/code&gt;).&lt;/p&gt;

&lt;p&gt;An agent verifying a site walks that chain: TLS → domain → signature → DNS anchor. Then it re-checks a multi-signature revocation registry on every use. If the key was rotated or revoked, verification says so.&lt;/p&gt;

&lt;p&gt;For delivery there are two profiles. AIFeed Markdown is the native one (&lt;code&gt;.aifeed.md&lt;/code&gt;, &lt;code&gt;text/aifeed+markdown&lt;/code&gt;) with a permission block in-band. MAKO is supported as a compatibility profile, so the same tooling can serve both. There's a signed delta index too, so an agent that already has unchanged pages doesn't refetch them.&lt;/p&gt;

&lt;p&gt;All of it is zero-dependency. The reference implementation is Node standard library; the independent Python verifier is stdlib-only. No accounts, no SaaS in the middle.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I measured
&lt;/h2&gt;

&lt;p&gt;From the local benchmark harness (60-page corpus, 100 tenants, 4 client profiles):&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;−68.83%&lt;/strong&gt; transferred bytes serving markdown profiles instead of HTML&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;−95.73%&lt;/strong&gt; when a client uses the delta index and only 10% of pages changed&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;−55.19%&lt;/strong&gt; origin bytes and &lt;strong&gt;−56.23%&lt;/strong&gt; origin CPU on the publisher side&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;0.70 ms&lt;/strong&gt; to verify one page's signature&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Caveat, and I'll keep repeating it: this is a simulation harness, not a field trial. The 30-day production pilot hasn't run. The vendor claims of 90%+ token savings you may have seen require semantic summarization, which AIFeed deliberately does not do automatically.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try it
&lt;/h2&gt;

&lt;p&gt;Publisher side, one command:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx aifeed init &lt;span class="nt"&gt;--domain&lt;/span&gt; example.com &lt;span class="nt"&gt;--dir&lt;/span&gt; ./site
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Or sign an existing static build:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx aifeed keygen &lt;span class="nt"&gt;--out&lt;/span&gt; .aifeed
npx aifeed site build ./public &lt;span class="nt"&gt;--domain&lt;/span&gt; example.com &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;--key&lt;/span&gt; .aifeed/aifeed-private.pem &lt;span class="nt"&gt;--llms&lt;/span&gt; &lt;span class="nt"&gt;--inject&lt;/span&gt;
npx aifeed validate ./public &lt;span class="nt"&gt;--domain&lt;/span&gt; example.com
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Agent side, three lines:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="nx"&gt;verifyRemote&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nf"&gt;require&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;@aifeed/verify&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;out&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;await&lt;/span&gt; &lt;span class="nf"&gt;verifyRemote&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;example.com&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="nx"&gt;console&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;log&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;out&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;result&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;out&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;anchor&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;status&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt; &lt;span class="c1"&gt;// VERIFIED anchored&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;There's also an MCP server (&lt;code&gt;npx -y aifeed-mcp-server&lt;/code&gt;) with tools for verifying manifests, fetching token-budgeted markdown, listing assets and verifying their digests. It's listed in the official MCP registry and on Smithery.&lt;/p&gt;

&lt;p&gt;Eight live demo origins are up at &lt;a href="https://aifeed.md" rel="noopener noreferrer"&gt;https://aifeed.md&lt;/a&gt; if you want to poke at real signed manifests: a news site, a docs site, a store, and more.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's still missing
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;No external cryptographic review yet, and the specs are a draft, not frozen.&lt;/li&gt;
&lt;li&gt;Origin + DNS compromise is undetectable on first contact. A signature proves the key signed the file, not that the key was safe.&lt;/li&gt;
&lt;li&gt;Legal review of the permission semantics is pending; the paper labels those claims as needing review.&lt;/li&gt;
&lt;li&gt;The 30-day pilot hasn't happened. If you run a site with real crawler traffic, I'd like to talk.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Where to look
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Specs, tooling, conformance vectors: &lt;a href="https://github.com/denyn1/aifeed-protocol" rel="noopener noreferrer"&gt;https://github.com/denyn1/aifeed-protocol&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Paper draft: &lt;a href="https://aifeed.md/aifeed-preprint.pdf" rel="noopener noreferrer"&gt;https://aifeed.md/aifeed-preprint.pdf&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;npm: &lt;code&gt;@aifeed/verify&lt;/code&gt;, &lt;code&gt;aifeed&lt;/code&gt;, &lt;code&gt;aifeed-mcp-server&lt;/code&gt;, &lt;code&gt;@aifeed/frameworks&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;PyPI: &lt;code&gt;aifeed&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you try it and something breaks, open an issue. There are a few good first issues labeled if you want to help. And if you verify your own domain and get "no manifest found", that's not a bug. Most of the web is still unsigned.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>ai</category>
      <category>security</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
