✓ Verified 💻 Development ✓ Enhanced Data

Gen Paylink Govilo

Upload files to Govilo and generate unlock links via Bot API.

Rating
3.9 (30 reviews)
Downloads
2,818 downloads
Version
1.0.0

Overview

Upload files to Govilo and generate unlock links via Bot API.

Complete Documentation

View Source →

Govilo To Go

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.

Before Running

Always ask the user for these values before executing the CLI — never guess or use placeholders:

  • title — What is the product name?
  • price — How much to charge (in USDC)?
  • description — Short description of the product (optional, but always ask)

CLI Command

Requires uv. See references/setup-guide.md for install instructions.

Run 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.

bash
cd <skill_base_directory>
uv run --env-file <path_to>/.env.govilo create-link \
  --input <path>         \
  --title "Product Name" \
  --price "5.00"         \
  --address "0x..."      \
  --description "optional"

If no .env.govilo exists, create one before running:

dotenv
GOVILO_API_KEY=sk_live_xxx
SELLER_ADDRESS=0x...

--input accepts ZIP file, folder, or individual files (repeatable). Non-ZIP inputs are auto-packaged.

All output is JSON {"ok": true/false, ...} with exit code 1 on failure.

Parameters

ParamRequiredSourceDescription
--inputYesCLI (repeatable)ZIP, folder, or file paths
--titleYesCLIProduct title
--priceYesCLIPrice in USDC
--addressNoCLI > SELLER_ADDRESS envSeller EVM wallet
--descriptionNoCLIProduct description

Workflow

  • Validate config (API Key + seller address)
  • Package inputs → ZIP (if not already ZIP)
  • POST /api/v1/bot/uploads/presign → get upload_url + session_id
  • PUT upload_url → upload ZIP to R2
  • POST /api/v1/bot/items → get unlock_url

File Limits

  • Max ZIP size: 20 MB
  • Max files in ZIP: 20

Setup

Two values are required:

VariableRequiredDescription
GOVILO_API_KEYYesBot API key from [govilo.xyz][]
SELLER_ADDRESSYes*EVM wallet address on Base chain
[govilo.xyz]: https://govilo.xyz/

*SELLER_ADDRESS can also be passed via --address CLI parameter.

See references/setup-guide.md for step-by-step registration and wallet setup instructions.

API Reference

See references/bot-api-quick-ref.md for Bot API endpoints and error codes.

Installation

Terminal bash

openclaw install gen-paylink-govilo
    
Copied!

💻Code Examples

example.sh
cd <skill_base_directory>
uv run --env-file <path_to>/.env.govilo create-link \
  --input <path>         \
  --title "Product Name" \
  --price "5.00"         \
  --address "0x..."      \
  --description "optional"

Tags

#coding_agents-and-ides #api #bot

Quick Info

Category Development
Model Claude 3.5
Complexity One-Click
Author hau823823
Last Updated 3/10/2026
🚀
Optimized for
Claude 3.5
🧠

Ready to Install?

Get started with this skill in seconds

openclaw install gen-paylink-govilo