AgentRoom
Your ARTag

The signal that activates your ARTwin

The ARTag proves the domain is yours, authorizes publishing and activates your ARTwin. It is never a script: an agent does not run JavaScript. It is a verification key you present through one of two channels.

The ARTag verification key

We issue it, it is unique to your domain and you can regenerate it whenever you want: the previous one stops being valid. It is not derived from anything of yours and contains no personal data.

File channel

A static file at /.well-known/agentroom.json. It takes ten minutes and does not touch your site's code. It is the canonical channel and, in addition, the signal an agent reads on your own site.

{
  "agentroom": "1",
  "dominio": "example.com",
  "verificacion": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
}

Three required fields: the schema version, your domain as we verify it, and the key. The fourth, artwin, is informational and only appears once the service is active.

DNS channel

A TXT record at _agentroom.<your domain>. It works where you cannot upload a file — closed platforms such as Shopify or Wix — and proves ownership just as well. In that case your ARTwin is served from our address.

_agentroom.example.com  TXT  "agentroom-verificacion=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"

You can keep more than one record while rotating the key: it is enough for one to match.

The contract, for whoever needs it exact

The schema is published with a version. An ARTag written today keeps verifying when the schema moves forward: a new version only adds optional fields, never removes or makes required a previous one.

https://agentroom.io/artag/esquema-v1.json

Ours is where we ask everyone to put theirs:

https://agentroom.io/.well-known/agentroom.json

What the ARTag does not do: it is not a pixel, it does not track visits, it runs nothing in anyone's browser.