{
  "schemaVersion": "0.2.5",
  "name": "NURO Public Agent",
  "displayName": "NURO",
  "description": "Public read-only agent surface for NURO.is — the strategic AI consulting and development firm. Exposes the site's discovery documents, service catalog, insights, case studies, and a site-wide keyword search. Agents can also negotiate text/markdown alternates via the Accept header on any public URL.",
  "version": "0.1.0",
  "provider": {
    "organization": "NURO is, Inc.",
    "url": "https://www.nuro.is"
  },
  "contact": {
    "email": "chase@nuro.is",
    "url": "https://www.nuro.is/contact"
  },
  "documentation": {
    "home": "https://www.nuro.is",
    "service": "https://www.nuro.is/llms.txt",
    "skills": "https://www.nuro.is/.well-known/agent-skills/index.json",
    "apiCatalog": "https://www.nuro.is/.well-known/api-catalog",
    "auth": "https://www.nuro.is/auth.md"
  },
  "supportedInterfaces": [
    {
      "protocol": "a2a",
      "version": "0.2.5",
      "status": "planned",
      "card": "https://www.nuro.is/.well-known/agent-card.json",
      "notes": "A2A live endpoint not yet wired up. Contact chase@nuro.is if you have an A2A use case that would benefit from a live endpoint on this domain."
    },
    {
      "protocol": "mcp",
      "version": "2025-06-18",
      "status": "planned",
      "card": "https://www.nuro.is/.well-known/mcp/server-card.json",
      "notes": "MCP server card is published; the live JSON-RPC endpoint is not yet wired up. See the card for detail."
    },
    {
      "protocol": "http",
      "version": "1.1",
      "endpoint": "https://www.nuro.is",
      "notes": "Discovery documents live under /.well-known/, /ai/, and /llms.txt. Fetch any of them as plain HTTP GET."
    }
  ],
  "capabilities": {
    "streaming": false,
    "pushNotifications": false,
    "stateTransitionHistory": false,
    "authentication": {
      "required": false,
      "readOnly": true,
      "discovery": "https://www.nuro.is/.well-known/oauth-protected-resource"
    }
  },
  "defaultInputModes": [
    "text/plain",
    "application/json"
  ],
  "defaultOutputModes": [
    "text/plain",
    "application/json",
    "text/markdown"
  ],
  "skills": [
    {
      "id": "site-search",
      "name": "Search NURO.is",
      "description": "Keyword search across every public page on NURO.is. Returns matching URLs and short excerpts.",
      "tags": [
        "search",
        "discovery"
      ],
      "examples": [
        "search_site(query=\"RevOps OS\")",
        "search_site(query=\"voice agent case study\")"
      ]
    },
    {
      "id": "read-resource",
      "name": "Read a discovery resource",
      "description": "Fetch any of the NURO agent-discovery documents (llms.txt, summary.json, faq.json, service.json, sitemap, feed).",
      "tags": [
        "discovery",
        "read"
      ],
      "examples": [
        "resources/read(uri=\"https://www.nuro.is/ai/service.json\")",
        "resources/read(uri=\"https://www.nuro.is/ai/faq.json\")"
      ]
    },
    {
      "id": "services-catalog",
      "name": "Enumerate NURO services",
      "description": "Return the NURO service catalog — Strategic AI Consulting, AI Agent Development, Custom Software Development, Workflow Automation, and RevOps OS — with descriptions.",
      "tags": [
        "catalog",
        "services"
      ],
      "outputSchema": {
        "type": "object",
        "properties": {
          "services": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "name": {
                  "type": "string"
                },
                "description": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    {
      "id": "contact-nuro",
      "name": "Route a prospect to NURO",
      "description": "Return the canonical NURO contact surface — email, phone, contact form, and the 20-minute Assessment call — so the calling agent can hand off the prospect.",
      "tags": [
        "contact",
        "handoff"
      ]
    }
  ],
  "tags": [
    "ai-consulting",
    "ai-agents",
    "custom-software",
    "workflow-automation",
    "revops",
    "southwest-florida",
    "fort-myers"
  ],
  "areaServed": [
    "United States"
  ]
}