{
  "schemaVersion": "1.0",
  "item": {
    "slug": "mintclub",
    "name": "Mint Club V2",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/sebayaki/mintclub",
    "canonicalUrl": "https://clawhub.ai/sebayaki/mintclub",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/mintclub",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mintclub",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "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. 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-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/mintclub"
    },
    "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/mintclub",
    "agentPageUrl": "https://openagent3.xyz/skills/mintclub/agent",
    "manifestUrl": "https://openagent3.xyz/skills/mintclub/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/mintclub/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": "Mint Club V2 — Agent Skill",
        "body": "Interact with Mint Club V2 bonding curve tokens on Base using the mc CLI."
      },
      {
        "title": "Setup",
        "body": "npm install -g mint.club-cli\n\nSet your private key:\n\nmc wallet --set-private-key 0x...\n# Or export PRIVATE_KEY=0x..."
      },
      {
        "title": "Read Operations (no key needed)",
        "body": "mc info <token>          # Token info (supply, reserve, price, curve)\nmc price <token>         # Price in reserve + USD\nmc wallet                # Wallet address and balances"
      },
      {
        "title": "Trading",
        "body": "# Buy/sell via bonding curve (reserve token)\nmc buy <token> -a <amount>                    # Buy tokens\nmc sell <token> -a <amount>                   # Sell tokens\n\n# Zap: buy/sell with any token (auto-routes via Uniswap)\nmc zap-buy <token> -i ETH -a 0.01            # Buy with ETH\nmc zap-sell <token> -a 100 -o USDC           # Sell for USDC\n\n# Direct Uniswap swap (any pair, V3 + V4)\nmc swap -i ETH -o HUNT -a 0.001              # Swap tokens\nmc swap -i HUNT -o USDC -a 100 -s 0.5        # Custom slippage"
      },
      {
        "title": "Create Token",
        "body": "mc create -n \"My Token\" -s MYT -r HUNT -x 1000000 \\\n  --curve exponential --initial-price 0.01 --final-price 100\n\nCurve presets: linear, exponential, logarithmic, flat"
      },
      {
        "title": "Transfer",
        "body": "mc send <address> -a 0.01                     # Send ETH\nmc send <address> -a 100 -t HUNT              # Send ERC-20"
      },
      {
        "title": "Token Resolution",
        "body": "Use addresses or known symbols: ETH, WETH, USDC, HUNT, MT"
      },
      {
        "title": "Environment",
        "body": "VariableDescriptionPRIVATE_KEYWallet private key (or use ~/.mintclub/.env)"
      },
      {
        "title": "Notes",
        "body": "All operations are on Base (chain 8453)\nDefault slippage: 1%\nDefault royalty on create: 1% mint + 1% burn\nToken addresses are auto-saved to ~/.mintclub/tokens.json\nCommunity: https://onchat.sebayaki.com/mintclub"
      }
    ],
    "body": "Mint Club V2 — Agent Skill\n\nInteract with Mint Club V2 bonding curve tokens on Base using the mc CLI.\n\nSetup\nnpm install -g mint.club-cli\n\n\nSet your private key:\n\nmc wallet --set-private-key 0x...\n# Or export PRIVATE_KEY=0x...\n\nCommands\nRead Operations (no key needed)\nmc info <token>          # Token info (supply, reserve, price, curve)\nmc price <token>         # Price in reserve + USD\nmc wallet                # Wallet address and balances\n\nTrading\n# Buy/sell via bonding curve (reserve token)\nmc buy <token> -a <amount>                    # Buy tokens\nmc sell <token> -a <amount>                   # Sell tokens\n\n# Zap: buy/sell with any token (auto-routes via Uniswap)\nmc zap-buy <token> -i ETH -a 0.01            # Buy with ETH\nmc zap-sell <token> -a 100 -o USDC           # Sell for USDC\n\n# Direct Uniswap swap (any pair, V3 + V4)\nmc swap -i ETH -o HUNT -a 0.001              # Swap tokens\nmc swap -i HUNT -o USDC -a 100 -s 0.5        # Custom slippage\n\nCreate Token\nmc create -n \"My Token\" -s MYT -r HUNT -x 1000000 \\\n  --curve exponential --initial-price 0.01 --final-price 100\n\n\nCurve presets: linear, exponential, logarithmic, flat\n\nTransfer\nmc send <address> -a 0.01                     # Send ETH\nmc send <address> -a 100 -t HUNT              # Send ERC-20\n\nToken Resolution\n\nUse addresses or known symbols: ETH, WETH, USDC, HUNT, MT\n\nEnvironment\nVariable\tDescription\nPRIVATE_KEY\tWallet private key (or use ~/.mintclub/.env)\nNotes\nAll operations are on Base (chain 8453)\nDefault slippage: 1%\nDefault royalty on create: 1% mint + 1% burn\nToken addresses are auto-saved to ~/.mintclub/tokens.json\nCommunity: https://onchat.sebayaki.com/mintclub"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/sebayaki/mintclub",
    "publisherUrl": "https://clawhub.ai/sebayaki/mintclub",
    "owner": "sebayaki",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/mintclub",
    "downloadUrl": "https://openagent3.xyz/downloads/mintclub",
    "agentUrl": "https://openagent3.xyz/skills/mintclub/agent",
    "manifestUrl": "https://openagent3.xyz/skills/mintclub/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/mintclub/agent.md"
  }
}