Declare Verify

Signed content permissions for the AI web

AIFeed is an open standard that lets a site declare, sign, and revoke what AI agents may do with its content — training, indexing, summarization, citation — and lets agents verify every claim independently.

Standar terbuka untuk deklarasi izin konten AI: bertanda tangan Ed25519, terverifikasi, dapat dicabut.

# verify a signed declaration in seconds
npm install @aifeed/verify
 
const sdk = require('@aifeed/verify');
const m = await sdk.fetchText('https://example.com/.well-known/ai.json');
const s = await sdk.fetchText('https://example.com/.well-known/ai-signature.json');
const out = sdk.verifyAll({ manifestText: m.text, manifestBytes: m.buffer,
signatureText: s.text, domain: 'example.com' });
console.log(out.result); // VERIFIED

What AIFeed defines

Specifications, profiles, and tooling

New integrations are added over time — follow the repository for updates.

See it working

Live demos — verify them yourself