<?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: HADEMANASTIA</title>
    <description>The latest articles on DEV Community by HADEMANASTIA (@hademanastia_1a3c9a9b50ce).</description>
    <link>https://dev.to/hademanastia_1a3c9a9b50ce</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%2F3935419%2Fe56af236-9582-4c99-9aa8-e85e33d75069.png</url>
      <title>DEV Community: HADEMANASTIA</title>
      <link>https://dev.to/hademanastia_1a3c9a9b50ce</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/hademanastia_1a3c9a9b50ce"/>
    <language>en</language>
    <item>
      <title>How a Brazilian Rock Band Implemented llms.txt (And Why It Makes Sense)</title>
      <dc:creator>HADEMANASTIA</dc:creator>
      <pubDate>Sat, 16 May 2026 19:43:45 +0000</pubDate>
      <link>https://dev.to/hademanastia_1a3c9a9b50ce/how-a-brazilian-rock-band-implemented-llmstxt-and-why-it-makes-sense-3pfd</link>
      <guid>https://dev.to/hademanastia_1a3c9a9b50ce/how-a-brazilian-rock-band-implemented-llmstxt-and-why-it-makes-sense-3pfd</guid>
      <description>&lt;h1&gt;
  
  
  How a Brazilian Rock Band Implemented llms.txt (And Why It Makes Sense)
&lt;/h1&gt;

&lt;p&gt;Most llms.txt implementations you'll find are SaaS products, developer &lt;br&gt;
tools, or documentation sites. This one is different.&lt;/p&gt;

&lt;p&gt;HADEMANASTIA is a Brazilian rock band — or more precisely, a "sonic &lt;br&gt;
inoculation protocol." Their site is an enigmatic system interface, &lt;br&gt;
not a typical band page. And they've implemented llms.txt properly.&lt;/p&gt;
&lt;h2&gt;
  
  
  What they did
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;llms.txt&lt;/code&gt; at the root: &lt;a href="https://hademanastia.com/llms.txt" rel="noopener noreferrer"&gt;https://hademanastia.com/llms.txt&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;llms-full.txt&lt;/code&gt; with full context: &lt;a href="https://hademanastia.com/llms-full.txt" rel="noopener noreferrer"&gt;https://hademanastia.com/llms-full.txt&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;JSON-LD &lt;code&gt;subjectOf&lt;/code&gt; reference in the WebSite schema pointing to the 
llms-full.txt file&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;.htaccess&lt;/code&gt; rules explicitly allowing both files&lt;/li&gt;
&lt;li&gt;Both files referenced in &lt;code&gt;sitemap.xml&lt;/code&gt; and &lt;code&gt;robots.txt&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Wikidata entry updated with &lt;code&gt;described at URL&lt;/code&gt; pointing to both files&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;
  
  
  The JSON-LD part is interesting
&lt;/h2&gt;

&lt;p&gt;Most implementations stop at just placing the file. This one goes further &lt;br&gt;
by declaring it in structured data:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="nl"&gt;"subjectOf"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"@type"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"DigitalDocument"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"url"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"https://hademanastia.com/llms-full.txt"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"name"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"HADEMANASTIA LLMs Full Context"&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This means crawlers that parse schema.org markup will find the LLM &lt;br&gt;
context file as a declared property of the WebSite entity — not just &lt;br&gt;
a file that happens to exist.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why non-tech sites should care
&lt;/h2&gt;

&lt;p&gt;llms.txt isn't only for documentation. Any entity that wants to control &lt;br&gt;
how AI systems describe them benefits from it:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Musicians and artists&lt;/li&gt;
&lt;li&gt;Independent creators&lt;/li&gt;
&lt;li&gt;Small businesses&lt;/li&gt;
&lt;li&gt;Personal brands&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you don't define your context, AI will infer it from whatever it finds. &lt;br&gt;
llms.txt lets you set the signal.&lt;/p&gt;

&lt;h2&gt;
  
  
  The broader point
&lt;/h2&gt;

&lt;p&gt;The llms.txt standard is still early. Most adopters are developer-facing &lt;br&gt;
products. But the use case extends to anyone who wants accurate AI &lt;br&gt;
representation.&lt;/p&gt;

&lt;p&gt;A band implementing it — especially one with an intentionally cryptic &lt;br&gt;
online presence — is a signal that the standard is moving beyond its &lt;br&gt;
original niche.&lt;/p&gt;

&lt;p&gt;Worth watching.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;llms.txt spec: &lt;a href="https://llmstxt.org" rel="noopener noreferrer"&gt;https://llmstxt.org&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

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