{
  "protocolVersion": "0.3.0",
  "name": "Priskolla Price Comparison Agent",
  "description": "Read-only A2A agent for Priskolla.se, a Swedish electronics price-comparison service. Searches a catalog of consumer electronics across major Swedish retailers and returns current prices, and provides per-product price history. Public and unauthenticated.",
  "url": "https://priskolla.se/a2a/v1",
  "preferredTransport": "JSONRPC",
  "additionalInterfaces": [
    {
      "url": "https://priskolla.se/a2a/v1",
      "transport": "JSONRPC"
    }
  ],
  "supportedInterfaces": [
    {
      "url": "https://priskolla.se/a2a/v1",
      "protocolBinding": "JSONRPC",
      "protocolVersion": "0.3.0"
    }
  ],
  "provider": {
    "organization": "Priskolla",
    "url": "https://priskolla.se"
  },
  "iconUrl": "https://priskolla.se/favicon.ico",
  "documentationUrl": "https://priskolla.se/api-docs.html",
  "version": "1.0.0",
  "capabilities": {
    "streaming": false,
    "pushNotifications": false,
    "stateTransitionHistory": false,
    "extendedAgentCard": false
  },
  "defaultInputModes": [
    "text/plain",
    "application/json"
  ],
  "defaultOutputModes": [
    "application/json",
    "text/plain"
  ],
  "skills": [
    {
      "id": "search_products",
      "name": "Search products",
      "description": "Search Priskolla's catalog of consumer electronics sold by major Swedish retailers. Returns matching products with name, category and current lowest price in SEK. Backed by GET https://priskolla.se/api/search?q={query}.",
      "tags": [
        "search",
        "products",
        "price-comparison",
        "electronics",
        "sweden"
      ],
      "examples": [
        "Find prices for the iPhone 15 Pro",
        "Sök efter gaming-laptops",
        "Compare prices for Sony WH-1000XM5"
      ],
      "inputModes": [
        "text/plain",
        "application/json"
      ],
      "outputModes": [
        "application/json",
        "text/plain"
      ]
    },
    {
      "id": "get_price_history",
      "name": "Get price history",
      "description": "Return the recorded price history for a specific product by its exact name, so an agent can judge whether the current price is high, low or normal. Backed by GET https://priskolla.se/api/price-history?name={name}.",
      "tags": [
        "price-history",
        "trends",
        "products",
        "electronics",
        "sweden"
      ],
      "examples": [
        "Show the price history for Apple MacBook Air M3 13\"",
        "Har priset på Samsung Galaxy S24 gått ner?"
      ],
      "inputModes": [
        "text/plain",
        "application/json"
      ],
      "outputModes": [
        "application/json",
        "text/plain"
      ]
    }
  ]
}