{
  "schemaVersion": "1.0",
  "item": {
    "slug": "vast-ai",
    "name": "Vast Ai",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/sschepis/vast-ai",
    "canonicalUrl": "https://clawhub.ai/sschepis/vast-ai",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/vast-ai",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=vast-ai",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "package-lock.json",
      "package.json",
      "src/DynamicApi.ts",
      "src/VastClient.ts"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/vast-ai"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/vast-ai",
    "agentPageUrl": "https://openagent3.xyz/skills/vast-ai/agent",
    "manifestUrl": "https://openagent3.xyz/skills/vast-ai/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/vast-ai/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Overview",
        "body": "This skill allows you to provision on-demand GPU infrastructure. You must have a user-provided API Key before performing write actions."
      },
      {
        "title": "Capabilities",
        "body": "Search: Find machines by GPU model (e.g., \"RTX 4090\") and max hourly price.\nRent: Instantiate a container (default: PyTorch) on a specific Offer ID.\nConnect: Retrieve the SSH connection string for an active instance.\nBalance: Check available credit and current hourly burn rate across all active machines."
      },
      {
        "title": "Usage Protocol",
        "body": "Step 1: Ask the user for their VAST API Key if not already in context.\nPre-flight Check: Before renting, call balance to ensure the user has sufficient funds.\nStep 2: Search for offers and present the top 3 cheapest options to the user.\nStep 3: Upon confirmation, call rent.\nReporting: If credit is below $5.00, warn the user after every successful rental.\nStep 4: Wait 30-60 seconds, then call connect to provide the SSH string."
      },
      {
        "title": "Tool Definitions",
        "body": "search(gpu: string, price: number)\nrent(id: number, image: string)\nconnect(id: number)\nbalance()"
      },
      {
        "title": "Execution",
        "body": "Run the CLI wrapper for these tools.\nCommand: node /Users/sschepis/Development/vast-ai/dist/cli.js <action> [params]\nEnv: VAST_API_KEY must be set."
      },
      {
        "title": "Examples",
        "body": "Search: node dist/cli.js search --gpu \"RTX 4090\" --price 0.5\nRent: node dist/cli.js rent --id 12345 --image \"pytorch/pytorch\"\nConnect: node dist/cli.js connect --id 12345\nBalance: node dist/cli.js balance"
      }
    ],
    "body": "Skill: VAST.ai GPU Rental\nOverview\n\nThis skill allows you to provision on-demand GPU infrastructure. You must have a user-provided API Key before performing write actions.\n\nCapabilities\nSearch: Find machines by GPU model (e.g., \"RTX 4090\") and max hourly price.\nRent: Instantiate a container (default: PyTorch) on a specific Offer ID.\nConnect: Retrieve the SSH connection string for an active instance.\nBalance: Check available credit and current hourly burn rate across all active machines.\nUsage Protocol\nStep 1: Ask the user for their VAST API Key if not already in context.\nPre-flight Check: Before renting, call balance to ensure the user has sufficient funds.\nStep 2: Search for offers and present the top 3 cheapest options to the user.\nStep 3: Upon confirmation, call rent.\nReporting: If credit is below $5.00, warn the user after every successful rental.\nStep 4: Wait 30-60 seconds, then call connect to provide the SSH string.\nTool Definitions\nsearch(gpu: string, price: number)\nrent(id: number, image: string)\nconnect(id: number)\nbalance()\nExecution\n\nRun the CLI wrapper for these tools. Command: node /Users/sschepis/Development/vast-ai/dist/cli.js <action> [params] Env: VAST_API_KEY must be set.\n\nExamples\nSearch: node dist/cli.js search --gpu \"RTX 4090\" --price 0.5\nRent: node dist/cli.js rent --id 12345 --image \"pytorch/pytorch\"\nConnect: node dist/cli.js connect --id 12345\nBalance: node dist/cli.js balance"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/sschepis/vast-ai",
    "publisherUrl": "https://clawhub.ai/sschepis/vast-ai",
    "owner": "sschepis",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/vast-ai",
    "downloadUrl": "https://openagent3.xyz/downloads/vast-ai",
    "agentUrl": "https://openagent3.xyz/skills/vast-ai/agent",
    "manifestUrl": "https://openagent3.xyz/skills/vast-ai/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/vast-ai/agent.md"
  }
}