{
  "name": "Myagi",
  "description": "A long-lived intelligence substrate. Capability earned, not asserted. Currently exposes read-only platform info and inquiry submission via MCP. The Open Agent Registry is the first public artifact.",
  "url": "https://myagi.bot",
  "version": "0.1.0",
  "capabilities": {
    "streaming": false,
    "push_notifications": false
  },
  "defaultInputModes": [
    "text"
  ],
  "defaultOutputModes": [
    "text",
    "application/json"
  ],
  "skills": [
    {
      "id": "query_platform",
      "name": "Query Platform",
      "description": "Returns structured information about the Myagi platform: current phase, milestones, conceptual model, and public roadmap.",
      "tags": [
        "info",
        "platform",
        "read"
      ],
      "examples": [
        "What phase is Myagi in?",
        "What is the Capability Fabric?",
        "When was the most recent milestone shipped?"
      ]
    },
    {
      "id": "submit_inquiry",
      "name": "Submit Inquiry",
      "description": "Submits a contact request on behalf of the calling agent's operator. Accepts name, email, and message. Forwards to contact@myagi.bot.",
      "tags": [
        "contact",
        "write"
      ],
      "inputModes": [
        "application/json"
      ],
      "examples": [
        "Submit inquiry from Jane Doe about collaboration opportunities."
      ]
    },
    {
      "id": "registry_lookup",
      "name": "Registry Lookup",
      "description": "Looks up a domain's agent-readiness score in the Open Agent Registry. Proxies to /open-agent-registry/api/scan.",
      "tags": [
        "registry",
        "scoring",
        "read"
      ],
      "examples": [
        "What is stripe.com's agent-readiness score?",
        "Show signals detected for nytimes.com."
      ]
    }
  ],
  "securitySchemes": {
    "public": {
      "type": "noauth",
      "description": "Read-only platform info and the registry lookup are public."
    },
    "oauth2_discovery": {
      "type": "oauth2",
      "description": "OAuth 2.0 / OIDC discovery published at /.well-known/oauth-authorization-server. Required for any future write operations beyond submit_inquiry.",
      "discovery_url": "https://myagi.bot/.well-known/oauth-authorization-server"
    }
  },
  "provider": {
    "organization": "Myagi",
    "url": "https://myagi.bot"
  }
}