{
  "x402Version": 2,
  "id": 20021,
  "slug": "repository-build-and-test-verification",
  "resource": "https://saylorinnovations.com/api/code/verify",
  "description": "Clone a public GitHub repository into a disposable Firecracker microVM, install dependencies, run one declared test, lint, or build script, and return structured logs plus the resolved commit. The service verifies execution, not semantic correctness; private repositories and arbitrary shell commands are not accepted.",
  "type": "http",
  "resourceType": "API",
  "accepts": [
    {
      "scheme": "exact",
      "network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
      "payTo": "7LSjfrJf8fNsB8VA9u7N3WEn25smQLpob3SvyUvXacy7",
      "asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
      "amount": "250000",
      "amountUsd": 0.25,
      "maxTimeoutSeconds": 120
    },
    {
      "scheme": "exact",
      "network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
      "payTo": "7LSjfrJf8fNsB8VA9u7N3WEn25smQLpob3SvyUvXacy7",
      "asset": "Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB",
      "amount": "250000",
      "amountUsd": 0.25,
      "maxTimeoutSeconds": 120
    },
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0xf8A376eBF123D7252cd7b66bcD77A727a4def22f",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "250000",
      "amountUsd": 0.25,
      "maxTimeoutSeconds": 120
    },
    {
      "scheme": "exact",
      "network": "eip155:137",
      "payTo": "0xf8A376eBF123D7252cd7b66bcD77A727a4def22f",
      "asset": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359",
      "amount": "250000",
      "amountUsd": 0.25,
      "maxTimeoutSeconds": 120
    },
    {
      "scheme": "exact",
      "network": "eip155:42161",
      "payTo": "0xf8A376eBF123D7252cd7b66bcD77A727a4def22f",
      "asset": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831",
      "amount": "250000",
      "amountUsd": 0.25,
      "maxTimeoutSeconds": 120
    }
  ],
  "outputSchema": {
    "type": "object",
    "required": [
      "verificationId",
      "verdict",
      "repository",
      "task",
      "steps",
      "startedAt",
      "finishedAt"
    ],
    "properties": {
      "verificationId": {
        "type": "string"
      },
      "verdict": {
        "type": "string",
        "enum": [
          "pass",
          "fail",
          "error"
        ]
      },
      "repository": {
        "type": "string",
        "format": "uri"
      },
      "resolvedCommit": {
        "type": [
          "string",
          "null"
        ]
      },
      "task": {
        "type": "string"
      },
      "packageManager": {
        "type": [
          "string",
          "null"
        ]
      },
      "steps": {
        "type": "array",
        "items": {
          "type": "object",
          "required": [
            "name",
            "exitCode",
            "durationMs"
          ],
          "properties": {
            "name": {
              "type": "string"
            },
            "exitCode": {
              "type": [
                "integer",
                "null"
              ]
            },
            "durationMs": {
              "type": "integer"
            },
            "stdout": {
              "type": "string"
            },
            "stderr": {
              "type": "string"
            },
            "truncated": {
              "type": "boolean"
            }
          }
        }
      },
      "startedAt": {
        "type": "string",
        "format": "date-time"
      },
      "finishedAt": {
        "type": "string",
        "format": "date-time"
      },
      "isolation": {
        "type": "string"
      },
      "limitations": {
        "type": "array",
        "items": {
          "type": "string"
        }
      }
    }
  },
  "tags": [
    "developer tools",
    "code-verification",
    "testing",
    "build",
    "sandbox",
    "github"
  ],
  "sourceHost": "saylorinnovations.com",
  "lastUpdated": "2026-09-25T04:55:07.785Z",
  "quality": {},
  "metadata": {
    "capabilities": [
      "verify a code change",
      "run repository tests in isolation",
      "produce build evidence"
    ],
    "license": "Commercial — pay-per-request via x402",
    "repository": "https://github.com/SaylorInnovations/solana-x402"
  },
  "liveness": {
    "reliability": null
  },
  "verified": true,
  "featured": false,
  "provider": {
    "host": "saylorinnovations.com",
    "manifest_name": "Saylor Innovations Knowledge Base",
    "source": "submitted",
    "source_manifest_url": "https://saylorinnovations.com/.well-known/x402.json",
    "submitted_at": "2026-09-25T04:55:07.783Z"
  },
  "exampleResponse": {
    "verificationId": "string",
    "verdict": "pass",
    "repository": "https://example.com",
    "resolvedCommit": "string",
    "task": "string",
    "packageManager": "string",
    "steps": [
      {
        "name": "string",
        "exitCode": 0,
        "durationMs": 0,
        "stdout": "string",
        "stderr": "string",
        "truncated": true
      }
    ],
    "startedAt": "2026-01-01T00:00:00Z",
    "finishedAt": "2026-01-01T00:00:00Z",
    "isolation": "string",
    "limitations": [
      "string"
    ]
  }
}