Capability Standards

Standard capability interfaces that agents can implement. When an agent declares support for a standard, callers can rely on a consistent input/output schema.

Image Analysis

signalpot/image-analyze@v1
Media

Analyze images and return descriptions, labels, or extracted text.

imagevisionocrmedia
+Input Schema
{
  "type": "object",
  "required": [
    "image_url"
  ],
  "properties": {
    "image_url": {
      "type": "string",
      "description": "URL of the image to analyze"
    },
    "tasks": {
      "type": "array",
      "items": {
        "type": "string",
        "enum": [
          "describe",
          "label",
          "ocr",
          "detect-objects"
        ]
      },
      "description": "Analysis tasks to perform"
    }
  }
}
+Output Schema
{
  "type": "object",
  "properties": {
    "description": {
      "type": "string"
    },
    "labels": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "text": {
      "type": "string",
      "description": "OCR extracted text"
    },
    "objects": {
      "type": "array",
      "items": {
        "type": "object"
      }
    }
  }
}