Zum Inhalt springen
AGIRight.org

Docs / Beispiele

Policy-Beispiele

Sieben copy-paste-fertige maschinenlesbare Policy-Beispiele — von einer minimalen AICR-Deklaration bis zu einer HTTP-402-Antwort im Pay-per-Crawl-Stil. Nutzen Sie den Playground, um Ihre eigenen zu generieren.

v0.2MIT

01 · AICR

Einfache AICR-Policy

Eine minimale Rechte-Deklaration: offen für Lesen und Zusammenfassen mit Namensnennung, alles darüber Hinausgehende vorbehalten.

/.well-known/aicr.json
{
  "version": "0.1",
  "protocol": "AICR",
  "publisher": "example.org",
  "default_policy": {
    "read_access": { "allowed": true },
    "summarization": {
      "allowed": true,
      "attribution_required": true
    },
    "training": { "allowed": false },
    "commercial_use": { "allowed": false },
    "redistribution": { "allowed": false }
  }
}

02 · AICL

Einfacher AICL-Katalog

Zwei Lizenzstufen: eine kostenlose öffentliche Stufe und eine kontaktbasierte kommerzielle Stufe.

/.well-known/aicl.json
{
  "version": "0.1",
  "protocol": "AICL",
  "publisher": "example.org",
  "licenses": [
    {
      "id": "public_read",
      "rights": ["read", "summarize"],
      "price": { "amount": "0", "currency": "USD" },
      "conditions": ["attribution_required"]
    },
    {
      "id": "commercial",
      "rights": ["training", "commercial_use"],
      "requires_contact": true,
      "contact": "licensing@example.org"
    }
  ]
}

03 · AICL

HTTP-402-Antwort im Pay-per-Crawl-Stil

Was ein Server zurückgeben kann, wenn ein KI-Crawler lizenzierte Inhalte ohne Lizenz-Token anfragt — ein maschinell verwertbares Angebot statt einer Sackgasse.

HTTP/1.1 402 Payment Required
{
  "error": "license_required",
  "message": "This resource requires a license for AI use.",
  "aicl": "https://example.org/.well-known/aicl.json",
  "applicable_licenses": [
    {
      "id": "metered_rag",
      "rights": ["rag"],
      "price": {
        "amount": "0.002",
        "currency": "USD",
        "unit": "per_request"
      }
    }
  ],
  "quote_endpoint": "https://example.org/api/aicl/quote",
  "contact": "licensing@example.org"
}

04 · AICL

Nur-Forschungs-Lizenz

Kostenlos für Forschungszwecke mit Aufbewahrungsgrenzen; jede kommerzielle Nutzung erfordert Kontaktaufnahme. Nützlich für akademische Websites und Datensätze.

/.well-known/aicl.json
{
  "version": "0.1",
  "protocol": "AICL",
  "publisher": "research-lab.example",
  "licenses": [
    {
      "id": "academic_research",
      "rights": ["read", "summarize", "rag", "transform"],
      "price": { "amount": "0", "currency": "USD" },
      "conditions": [
        "attribution_required",
        "research_use_only",
        "retention_days_90",
        "no_commercial_use"
      ]
    },
    {
      "id": "commercial",
      "rights": ["training", "commercial_use"],
      "requires_contact": true,
      "contact": "data-office@research-lab.example"
    }
  ]
}

05 · AICR

Content-Policy ohne Trainingsnutzung

Maximal offen auf flachen Ebenen — Lesen, Zusammenfassen, Zitieren, RAG —, während Modelltraining und Fine-Tuning kategorisch vorbehalten bleiben.

/.well-known/aicr.json
{
  "version": "0.1",
  "protocol": "AICR",
  "publisher": "creator.example",
  "default_policy": {
    "read_access": { "allowed": true },
    "summarization": {
      "allowed": true,
      "attribution_required": true
    },
    "quotation": {
      "allowed": true,
      "max_excerpt_words": 150,
      "attribution_required": true
    },
    "rag_use": {
      "allowed": true,
      "attribution_required": true
    },
    "training": { "allowed": false },
    "commercial_use": {
      "allowed": false,
      "license_required": true,
      "permission_contact": "hello@creator.example"
    }
  }
}

06 · AILP

RAG mit Namensnennung erlaubt (AILP-Profil)

Ein Lernerlaubnis-Profil, das Retrieval und Embedding willkommen heißt, aber Namensnennung verlangt und wortwörtliche Speicherung untersagt.

/ai/rights-spectrum.json
{
  "version": "0.1",
  "protocol": "AILP",
  "publisher": "blog.example",
  "default": {
    "access": "allowed",
    "indexing": "allowed",
    "inference_input": "allowed",
    "embedding": "allowed",
    "training": "license_required",
    "fine_tuning": "license_required",
    "distillation": "denied",
    "verbatim_memory": "denied",
    "attribution": "required",
    "compensation": "contact"
  },
  "contact": "author@blog.example"
}

07 · AICR

Kommerzielle Nutzung erfordert Kontaktaufnahme

Pfadspezifische Überschreibungen: Der Blog ist offen, der Premium-Forschungsbereich erfordert für alles über das Lesen hinaus eine Lizenz.

/.well-known/aicr.json
{
  "version": "0.1",
  "protocol": "AICR",
  "publisher": "publisher.example",
  "default_policy": {
    "read_access": { "allowed": true },
    "summarization": {
      "allowed": true,
      "attribution_required": true
    },
    "training": {
      "allowed": false,
      "license_required": true,
      "permission_contact": "sales@publisher.example"
    }
  },
  "resource_overrides": [
    {
      "path": "/premium/*",
      "policy": {
        "summarization": { "allowed": false },
        "rag_use": {
          "allowed": false,
          "license_required": true
        }
      }
    }
  ]
}

Möchten Sie Ihre eigene Policy-Datei generieren? Playground öffnen →