{
  "schemaVersion": "1.0",
  "item": {
    "slug": "whop-cli",
    "name": "Whop Store Management",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/G9Pedro/whop-cli",
    "canonicalUrl": "https://clawhub.ai/G9Pedro/whop-cli",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/whop-cli",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=whop-cli",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "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. 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. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "slug": "whop-cli",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-11T01:19:17.550Z",
      "expiresAt": "2026-05-18T01:19:17.550Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=whop-cli",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=whop-cli",
        "contentDisposition": "attachment; filename=\"whop-cli-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "whop-cli"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/whop-cli"
    },
    "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/whop-cli",
    "agentPageUrl": "https://openagent3.xyz/skills/whop-cli/agent",
    "manifestUrl": "https://openagent3.xyz/skills/whop-cli/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/whop-cli/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. 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. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Whop Store Management",
        "body": "Manage your Whop digital products store via API."
      },
      {
        "title": "Setup",
        "body": "Get API key from Whop dashboard → Settings → Developer\nSet environment variables:\nexport WHOP_API_KEY=\"apik_...\"\nexport WHOP_COMPANY_ID=\"biz_...\""
      },
      {
        "title": "Usage",
        "body": "import { default as Whop } from '@whop/sdk';\nconst client = new Whop();\nconst CID = process.env.WHOP_COMPANY_ID;\n\n// List products\nconst products = await client.products.list({ company_id: CID });\n\n// Create product\nconst product = await client.products.create({\n  company_id: CID,\n  title: 'My Product'\n});\n\n// Create pricing plan\nconst plan = await client.plans.create({\n  product_id: product.id,\n  company_id: CID,\n  plan_type: 'one_time', // or 'renewal'\n  initial_price: 29,\n  base_currency: 'usd'\n});\n// plan.purchase_url = checkout link\n\n// Check payments\nconst payments = await client.payments.list({ company_id: CID });\n\n// Check memberships\nconst members = await client.memberships.list({ company_id: CID });"
      },
      {
        "title": "Available Resources",
        "body": "products, plans, payments, memberships, experiences, files, webhooks,\npromoCodes, courses, forums, chatChannels, checkoutConfigurations,\nreviews, leads, notifications"
      },
      {
        "title": "Built by Versatly",
        "body": "Store: https://whop.com/versatly-holdings/\nProducts: https://store.versatlygroup.com"
      }
    ],
    "body": "Whop Store Management\n\nManage your Whop digital products store via API.\n\nSetup\nGet API key from Whop dashboard → Settings → Developer\nSet environment variables:\nexport WHOP_API_KEY=\"apik_...\"\nexport WHOP_COMPANY_ID=\"biz_...\"\n\nUsage\nimport { default as Whop } from '@whop/sdk';\nconst client = new Whop();\nconst CID = process.env.WHOP_COMPANY_ID;\n\n// List products\nconst products = await client.products.list({ company_id: CID });\n\n// Create product\nconst product = await client.products.create({\n  company_id: CID,\n  title: 'My Product'\n});\n\n// Create pricing plan\nconst plan = await client.plans.create({\n  product_id: product.id,\n  company_id: CID,\n  plan_type: 'one_time', // or 'renewal'\n  initial_price: 29,\n  base_currency: 'usd'\n});\n// plan.purchase_url = checkout link\n\n// Check payments\nconst payments = await client.payments.list({ company_id: CID });\n\n// Check memberships\nconst members = await client.memberships.list({ company_id: CID });\n\nAvailable Resources\n\nproducts, plans, payments, memberships, experiences, files, webhooks, promoCodes, courses, forums, chatChannels, checkoutConfigurations, reviews, leads, notifications\n\nBuilt by Versatly\n\nStore: https://whop.com/versatly-holdings/ Products: https://store.versatlygroup.com"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/G9Pedro/whop-cli",
    "publisherUrl": "https://clawhub.ai/G9Pedro/whop-cli",
    "owner": "G9Pedro",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/whop-cli",
    "downloadUrl": "https://openagent3.xyz/downloads/whop-cli",
    "agentUrl": "https://openagent3.xyz/skills/whop-cli/agent",
    "manifestUrl": "https://openagent3.xyz/skills/whop-cli/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/whop-cli/agent.md"
  }
}