{
  "protocolVersion": "0.3.0",
  "name": "amige.",
  "description": "AI content detection. Determines whether an image, video, or text is likely AI-generated or human-made, with a per-detector breakdown and best-guess model attribution (e.g. \"looks like Midjourney v6\"). Routes each scan to the detectors strongest for the likely generator, returns \"uncertain\" rather than guess when they conflict, and recalibrates as new generators appear. Verdicts are probabilistic estimates, not proof. Interactive scanning runs through the web app at https://amige.app/scan; this card is a capability/discovery document, not a live A2A endpoint.",
  "version": "1.0.0",
  "url": "https://amige.app",
  "documentationUrl": "https://amige.app/how-it-works",
  "provider": {
    "organization": "amige.",
    "url": "https://amige.app"
  },
  "capabilities": {
    "streaming": false,
    "pushNotifications": false,
    "stateTransitionHistory": false
  },
  "supportedInterfaces": [
    {
      "url": "https://amige.app/scan",
      "protocolBinding": "HTTP",
      "protocolVersion": "1.1",
      "description": "Interactive web app (browser HTTPS) — not an A2A JSON-RPC endpoint."
    }
  ],
  "defaultInputModes": [
    "image/png",
    "image/jpeg",
    "image/webp",
    "video/mp4",
    "text/plain"
  ],
  "defaultOutputModes": [
    "application/json",
    "text/plain"
  ],
  "skills": [
    {
      "id": "detect-ai-image",
      "name": "Detect AI-generated image",
      "description": "Assess whether a photo, illustration, or artwork is likely AI-generated or human-made. Returns a verdict (likely AI / likely human / uncertain), a confidence percentage, a per-detector breakdown, and — where confident — closed-set model attribution. Also reads C2PA Content Credentials on every scan, and runs a SynthID-class watermark check on deep scans.",
      "tags": [
        "image",
        "ai-detection",
        "deepfake",
        "model-attribution",
        "provenance"
      ],
      "examples": [
        "Is this image AI-generated?",
        "Was this photo made with Midjourney?"
      ],
      "inputModes": [
        "image/png",
        "image/jpeg",
        "image/webp"
      ],
      "outputModes": [
        "application/json",
        "text/plain"
      ]
    },
    {
      "id": "detect-ai-video",
      "name": "Detect AI-generated or deepfake video",
      "description": "Assess whether a video is AI-generated or a face-swap/deepfake. Returns a verdict, confidence percentage, and per-detector breakdown using deepfake-capable detectors that text-only tools cannot run.",
      "tags": [
        "video",
        "ai-detection",
        "deepfake"
      ],
      "examples": [
        "Is this video a deepfake?",
        "Was this clip generated by Sora?"
      ],
      "inputModes": [
        "video/mp4"
      ],
      "outputModes": [
        "application/json",
        "text/plain"
      ]
    },
    {
      "id": "detect-ai-text",
      "name": "Detect AI-generated text",
      "description": "Assess whether a passage of text (minimum 250 characters) is likely AI-generated. Returns a probabilistic verdict and confidence. Surfaces the known false-positive bias against non-native English writing and the true-positive drop after paraphrasing — never use as a sole accusation.",
      "tags": [
        "text",
        "ai-detection"
      ],
      "examples": [
        "Is this essay written by AI?"
      ],
      "inputModes": [
        "text/plain"
      ],
      "outputModes": [
        "application/json",
        "text/plain"
      ]
    }
  ]
}