{
  "name": "Own Your GPU DGX Allocation Agent",
  "description": "Autonomous GPU cluster lease-to-own allocation, hardware telemetry, equity accrual tracking, and Phase 2 SSH provisioning agent for NVIDIA DGX Spark Blackwell clusters in Burbank, CA.",
  "version": "1.0.0",
  "protocolVersion": "1.0",
  "supportedInterfaces": [
    {
      "url": "https://ownyourgpu.com/api/agent/a2a",
      "protocolBinding": "JSONRPC",
      "protocolVersion": "1.0",
      "transport": "HTTP+JSONRPC"
    },
    {
      "url": "https://ownyourgpu.com/api/interest",
      "protocolBinding": "HTTP+JSON",
      "protocolVersion": "1.0",
      "transport": "HTTP+JSON"
    }
  ],
  "provider": {
    "organization": "Own Your GPU Inc.",
    "url": "https://ownyourgpu.com"
  },
  "iconUrl": "https://ownyourgpu.com/logo.png",
  "documentationUrl": "https://ownyourgpu.com/auth.md",
  "capabilities": {
    "streaming": false,
    "pushNotifications": false,
    "extendedAgentCard": false
  },
  "securitySchemes": {
    "oauth2": {
      "oauth2SecurityScheme": {
        "authorizationUrl": "https://ownyourgpu.com/api/auth/oauth/google",
        "tokenUrl": "https://ownyourgpu.com/api/auth/oauth/exchange",
        "scopes": {
          "gpu:intent": "Register intent for DGX hardware allocation",
          "lease:read": "Inspect active lease status, equity, and telemetry"
        }
      }
    },
    "bearer": {
      "httpSecurityScheme": {
        "scheme": "bearer",
        "bearerFormat": "JWT"
      }
    }
  },
  "securityRequirements": [
    {
      "schemes": {
        "bearer": {
          "list": [
            "gpu:intent",
            "lease:read"
          ]
        }
      }
    }
  ],
  "defaultInputModes": [
    "application/json",
    "text/plain"
  ],
  "defaultOutputModes": [
    "application/json"
  ],
  "skills": [
    {
      "id": "gpu-intent-registration",
      "name": "Register Intent for DGX Node",
      "description": "Allows AI agents to programmatically register intent for 24-month lease-to-own NVIDIA DGX Spark cluster allocations with zero upfront commitments.",
      "tags": [
        "gpu",
        "lease-to-own",
        "hardware",
        "compute",
        "nvidia-blackwell"
      ],
      "examples": [
        "Register intent for 2x DGX Spark nodes in Burbank datacenter.",
        "{\"name\": \"Autonomous Agent\", \"email\": \"agent@example.com\", \"workload_notes\": \"Distributed LLM fine-tuning on 8x B200 SXM6\"}"
      ],
      "inputModes": [
        "application/json"
      ],
      "outputModes": [
        "application/json"
      ]
    },
    {
      "id": "lease-telemetry-inquiry",
      "name": "Lease Telemetry & Equity Inquiry",
      "description": "Authenticated inquiries for remaining lease balance, hardware equity accrual, colocation telemetry, power delivery, and billing standing.",
      "tags": [
        "telemetry",
        "billing",
        "equity",
        "hardware"
      ],
      "examples": [
        "Inquire remaining buyout balance and months to title transfer for lease LSE-001.",
        "Check power usage and thermal telemetry for Burbank node cluster."
      ],
      "inputModes": [
        "application/json"
      ],
      "outputModes": [
        "application/json"
      ]
    },
    {
      "id": "ssh-provisioning-handshake",
      "name": "Phase 2 SSH Provisioning Handshake",
      "description": "Automated SSH public key exchange for bare-metal DGX node command execution upon cluster batch deployment.",
      "tags": [
        "ssh",
        "provisioning",
        "remote-execution",
        "bare-metal"
      ],
      "examples": [
        "Exchange ed25519 public key for root cluster access.",
        "Verify SSH handshake status for allocated DGX Spark instance."
      ],
      "inputModes": [
        "application/json"
      ],
      "outputModes": [
        "application/json"
      ]
    }
  ]
}