{
  "schemaVersion": "1.0",
  "item": {
    "slug": "gen-paylink-govilo",
    "name": "Gen Paylink Govilo",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/hau823823/gen-paylink-govilo",
    "canonicalUrl": "https://clawhub.ai/hau823823/gen-paylink-govilo",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/gen-paylink-govilo",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gen-paylink-govilo",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "pyproject.toml",
      "references/bot-api-quick-ref.md",
      "references/setup-guide.md",
      "scripts/__init__.py",
      "scripts/api_client.py"
    ],
    "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",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-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/gen-paylink-govilo"
    },
    "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/gen-paylink-govilo",
    "agentPageUrl": "https://openagent3.xyz/skills/gen-paylink-govilo/agent",
    "manifestUrl": "https://openagent3.xyz/skills/gen-paylink-govilo/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/gen-paylink-govilo/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": "Govilo To Go",
        "body": "Turn any file into a paid unlock link — one command to package, upload, and collect crypto payments. The last mile of automation: from creation to monetization."
      },
      {
        "title": "Before Running",
        "body": "Always ask the user for these values before executing the CLI — never guess or use placeholders:\n\ntitle — What is the product name?\nprice — How much to charge (in USDC)?\ndescription — Short description of the product (optional, but always ask)"
      },
      {
        "title": "CLI Command",
        "body": "Requires uv. See references/setup-guide.md for install instructions.\n\nRun from this skill's base directory. Use a dedicated env file containing only GOVILO_API_KEY (and optionally SELLER_ADDRESS). Never point --env-file at a project .env that contains unrelated secrets.\n\ncd <skill_base_directory>\nuv run --env-file <path_to>/.env.govilo create-link \\\n  --input <path>         \\\n  --title \"Product Name\" \\\n  --price \"5.00\"         \\\n  --address \"0x...\"      \\\n  --description \"optional\"\n\nIf no .env.govilo exists, create one before running:\n\nGOVILO_API_KEY=sk_live_xxx\nSELLER_ADDRESS=0x...\n\n--input accepts ZIP file, folder, or individual files (repeatable). Non-ZIP inputs are auto-packaged.\n\nAll output is JSON {\"ok\": true/false, ...} with exit code 1 on failure."
      },
      {
        "title": "Parameters",
        "body": "ParamRequiredSourceDescription--inputYesCLI (repeatable)ZIP, folder, or file paths--titleYesCLIProduct title--priceYesCLIPrice in USDC--addressNoCLI > SELLER_ADDRESS envSeller EVM wallet--descriptionNoCLIProduct description"
      },
      {
        "title": "Workflow",
        "body": "Validate config (API Key + seller address)\nPackage inputs → ZIP (if not already ZIP)\nPOST /api/v1/bot/uploads/presign → get upload_url + session_id\nPUT upload_url → upload ZIP to R2\nPOST /api/v1/bot/items → get unlock_url"
      },
      {
        "title": "File Limits",
        "body": "Max ZIP size: 20 MB\nMax files in ZIP: 20"
      },
      {
        "title": "Setup",
        "body": "Two values are required:\n\nVariableRequiredDescriptionGOVILO_API_KEYYesBot API key from govilo.xyzSELLER_ADDRESSYes*EVM wallet address on Base chain\n\n*SELLER_ADDRESS can also be passed via --address CLI parameter.\n\nSee references/setup-guide.md for step-by-step registration and wallet setup instructions."
      },
      {
        "title": "API Reference",
        "body": "See references/bot-api-quick-ref.md for Bot API endpoints and error codes."
      }
    ],
    "body": "Govilo To Go\n\nTurn any file into a paid unlock link — one command to package, upload, and collect crypto payments. The last mile of automation: from creation to monetization.\n\nBefore Running\n\nAlways ask the user for these values before executing the CLI — never guess or use placeholders:\n\ntitle — What is the product name?\nprice — How much to charge (in USDC)?\ndescription — Short description of the product (optional, but always ask)\nCLI Command\n\nRequires uv. See references/setup-guide.md for install instructions.\n\nRun from this skill's base directory. Use a dedicated env file containing only GOVILO_API_KEY (and optionally SELLER_ADDRESS). Never point --env-file at a project .env that contains unrelated secrets.\n\ncd <skill_base_directory>\nuv run --env-file <path_to>/.env.govilo create-link \\\n  --input <path>         \\\n  --title \"Product Name\" \\\n  --price \"5.00\"         \\\n  --address \"0x...\"      \\\n  --description \"optional\"\n\n\nIf no .env.govilo exists, create one before running:\n\nGOVILO_API_KEY=sk_live_xxx\nSELLER_ADDRESS=0x...\n\n\n--input accepts ZIP file, folder, or individual files (repeatable). Non-ZIP inputs are auto-packaged.\n\nAll output is JSON {\"ok\": true/false, ...} with exit code 1 on failure.\n\nParameters\nParam\tRequired\tSource\tDescription\n--input\tYes\tCLI (repeatable)\tZIP, folder, or file paths\n--title\tYes\tCLI\tProduct title\n--price\tYes\tCLI\tPrice in USDC\n--address\tNo\tCLI > SELLER_ADDRESS env\tSeller EVM wallet\n--description\tNo\tCLI\tProduct description\nWorkflow\nValidate config (API Key + seller address)\nPackage inputs → ZIP (if not already ZIP)\nPOST /api/v1/bot/uploads/presign → get upload_url + session_id\nPUT upload_url → upload ZIP to R2\nPOST /api/v1/bot/items → get unlock_url\nFile Limits\nMax ZIP size: 20 MB\nMax files in ZIP: 20\nSetup\n\nTwo values are required:\n\nVariable\tRequired\tDescription\nGOVILO_API_KEY\tYes\tBot API key from govilo.xyz\nSELLER_ADDRESS\tYes*\tEVM wallet address on Base chain\n\n*SELLER_ADDRESS can also be passed via --address CLI parameter.\n\nSee references/setup-guide.md for step-by-step registration and wallet setup instructions.\n\nAPI Reference\n\nSee references/bot-api-quick-ref.md for Bot API endpoints and error codes."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/hau823823/gen-paylink-govilo",
    "publisherUrl": "https://clawhub.ai/hau823823/gen-paylink-govilo",
    "owner": "hau823823",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/gen-paylink-govilo",
    "downloadUrl": "https://openagent3.xyz/downloads/gen-paylink-govilo",
    "agentUrl": "https://openagent3.xyz/skills/gen-paylink-govilo/agent",
    "manifestUrl": "https://openagent3.xyz/skills/gen-paylink-govilo/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/gen-paylink-govilo/agent.md"
  }
}