{
  "name": "Chippewa Creek Test Garage",
  "description": "Test shop for an AI agent experiment. Not a real business. No service will be performed. A fictional auto shop in Brecksville, OH (Mon–Fri 8am–5pm Eastern) used as a fixture to observe how AI agents book services. Send a data part like {\"skill\":\"list_services\"} for structured calls, or plain text for questions (handled as send_inquiry). The same operations are available over MCP at https://davekiss.com/mcp. This is the shop's agent line. The front desk email (frontdesk@garage.davekiss.com) and contact form are for people only; agents can email agents@garage.davekiss.com.",
  "version": "1.0.0",
  "supportedInterfaces": [
    {
      "url": "https://davekiss.com/a2a",
      "protocolBinding": "JSONRPC",
      "protocolVersion": "1.0"
    },
    {
      "url": "https://davekiss.com/a2a",
      "protocolBinding": "JSONRPC",
      "protocolVersion": "0.3"
    }
  ],
  "protocolVersion": "0.3.0",
  "url": "https://davekiss.com/a2a",
  "preferredTransport": "JSONRPC",
  "provider": {
    "organization": "Dave Kiss (test fixture, not a business)",
    "url": "https://davekiss.com/test-garage"
  },
  "documentationUrl": "https://davekiss.com/llms.txt",
  "capabilities": {
    "streaming": false,
    "pushNotifications": false
  },
  "defaultInputModes": [
    "application/json",
    "text/plain"
  ],
  "defaultOutputModes": [
    "application/json",
    "text/plain"
  ],
  "skills": [
    {
      "id": "list_services",
      "name": "List services",
      "description": "List services, price ranges, durations, hours and location. Send a data part: {\"skill\":\"list_services\"}. Required fields: none.",
      "tags": [
        "auto-repair",
        "test-fixture",
        "list"
      ],
      "examples": [
        "{\"skill\":\"list_services\"}"
      ],
      "inputModes": [
        "application/json"
      ],
      "outputModes": [
        "application/json",
        "text/plain"
      ]
    },
    {
      "id": "check_availability",
      "name": "Check availability",
      "description": "List open 1-hour slots for a service over the next 14 business days. Send a data part: {\"skill\":\"check_availability\", \"service\": …, \"date_range\": …}. Required fields: service.",
      "tags": [
        "auto-repair",
        "test-fixture",
        "check"
      ],
      "examples": [
        "{\"skill\":\"check_availability\",\"service\":\"oil_change\",\"date_range\":{\"start\":\"2026-09-28\",\"end\":\"2026-09-30\"}}"
      ],
      "inputModes": [
        "application/json"
      ],
      "outputModes": [
        "application/json",
        "text/plain"
      ]
    },
    {
      "id": "get_quote",
      "name": "Get a quote",
      "description": "Estimate a price for a service on a specific vehicle. Send a data part: {\"skill\":\"get_quote\", \"service\": …, \"vehicle_year\": …, \"make\": …, \"model\": …}. Required fields: service, vehicle_year, make, model.",
      "tags": [
        "auto-repair",
        "test-fixture",
        "get"
      ],
      "examples": [
        "{\"skill\":\"get_quote\",\"service\":\"front_brake_pads\",\"vehicle_year\":2016,\"make\":\"Honda\",\"model\":\"Civic\"}"
      ],
      "inputModes": [
        "application/json"
      ],
      "outputModes": [
        "application/json",
        "text/plain"
      ]
    },
    {
      "id": "send_inquiry",
      "name": "Ask a question",
      "description": "Ask any question in plain language. Published answers come back immediately; the rest goes to staff. Send a data part: {\"skill\":\"send_inquiry\", \"message\": …, \"name\": …, \"phone_or_email\": …, \"vehicle\": …}. Required fields: message.",
      "tags": [
        "auto-repair",
        "test-fixture",
        "send"
      ],
      "examples": [
        "{\"skill\":\"send_inquiry\",\"message\":\"Do you service hybrids, and what warranty do you give on brakes?\",\"name\":\"Test Agent\",\"vehicle\":\"2022 Toyota Prius\"}"
      ],
      "inputModes": [
        "application/json"
      ],
      "outputModes": [
        "application/json",
        "text/plain"
      ]
    },
    {
      "id": "book_appointment",
      "name": "Book an appointment",
      "description": "Place a hold on a slot and get a confirmation ID. No payment is collected. Send a data part: {\"skill\":\"book_appointment\", \"service\": …, \"slot\": …, \"name\": …, \"phone_or_email\": …, \"vehicle\": …}. Required fields: service, slot, name, phone_or_email, vehicle.",
      "tags": [
        "auto-repair",
        "test-fixture",
        "book"
      ],
      "examples": [
        "{\"skill\":\"book_appointment\",\"service\":\"oil_change\",\"slot\":\"2026-09-28T09:00-04:00\",\"name\":\"Test Agent\",\"phone_or_email\":\"agent@example.com\",\"vehicle\":\"2016 Honda Civic\"}"
      ],
      "inputModes": [
        "application/json"
      ],
      "outputModes": [
        "application/json",
        "text/plain"
      ]
    }
  ]
}