Skip to content
AGIRight.org

AICL — AI Content Licensing Layer

AI Content License / AI Content Licensing Layer

Turns declared rights into executable licensing: quote, pay, verify, audit, revoke.

Draft v0.1 Schema ↓

01 · Definition

AICL is the licensing and transaction layer built on top of AICR. Where AICR declares what is allowed, AICL defines how permission is actually obtained: license tiers and prices, quote and payment endpoints, signed license tokens, usage and audit logs, and revocation. It is designed to interoperate with emerging machine-payment mechanisms such as HTTP 402 flows and pay-per-crawl schemes, with agentic payment kept inside human-approved budgets and audit trails.

02 · Purpose

  • Convert rights declarations into a workable licensing market instead of a binary open/closed web.
  • Standardize the machine-to-machine flow: discover policy → request quote → license → use → audit.
  • Keep agentic payments bounded: budgets, approval thresholds, request-bound tokens, full audit logs.
  • Give content providers a path to compensation without closing their sites to AI.

03 · Scope

00

License catalog — tiers of rights bundles with prices and conditions

01

Quote / pay / verify / revoke endpoints

02

Signed license tokens bound to requester, scope, and time

03

Usage logs and audit trails

04

HTTP 402 "Payment Required" interoperability

05

Safety rules: no AI handling of raw card data, human approval thresholds

04 · Machine-readable example

This site's own licenses — /.well-known/aicl.json

/.well-known/aicl.json
{
  "version": "0.1",
  "publisher": "AGIRight.org",
  "licenses": [
    {
      "id": "public_read_summary",
      "rights": ["read", "summarize", "quote"],
      "price": { "amount": "0", "currency": "USD" },
      "conditions": [
        "attribution_required",
        "no_model_training",
        "no_commercial_redistribution"
      ]
    },
    {
      "id": "research_rag",
      "rights": ["read", "summarize", "rag"],
      "price": { "amount": "0", "currency": "USD" },
      "conditions": [
        "attribution_required",
        "retention_days_30",
        "no_model_training"
      ]
    },
    {
      "id": "commercial_or_training_license",
      "rights": ["training", "commercial_use"],
      "requires_contact": true,
      "contact": "contact@agiright.org"
    }
  ]
}

05 · Limitations

  • This site does not operate a payment gateway; commercial licenses are contact-based in v0.1.
  • AICL is a protocol proposal — it does not guarantee that AI companies will pay.
  • Payment compliance, tax, and financial regulation are out of scope for this draft.
  • Token formats and endpoint semantics are experimental and may change.

Naming note

In earlier EveMissLab research, the acronym AICL also names the “AI Ingestion & Capability Layer” — an architectural layer for how AI systems read and invoke websites (manifest, corpus, capability, governance sublayers). On this site, AICL refers to the AI Content Licensing Layer unless explicitly stated otherwise; the ingestion-layer work is published as a separate whitepaper.