Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

Mint Club V2

v1.0.0

Command-line interface for creating, trading, and managing Mint Club bonding curve tokens on Base blockchain with wallet support and Uniswap integration.

0· 728·2 current·2 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for sebayaki/mintclub.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Mint Club V2" (sebayaki/mintclub) from ClawHub.
Skill page: https://clawhub.ai/sebayaki/mintclub
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Canonical install target

openclaw skills install sebayaki/mintclub

ClawHub CLI

Package manager switcher

npx clawhub@latest install mintclub
Security Scan
VirusTotalVirusTotal
Suspicious
View report →
OpenClawOpenClaw
Suspicious
medium confidence
!
Purpose & Capability
The SKILL.md describes interacting with Mint Club via the mint.club-cli npm package, which is coherent with the stated purpose. However the skill metadata declares no required environment variables or config paths while the instructions explicitly require a PRIVATE_KEY or ~/.mintclub/.env and will auto-save token addresses to ~/.mintclub/tokens.json — a clear mismatch between declared requirements and actual operational needs.
!
Instruction Scope
Runtime instructions tell the agent to install and run a third‑party CLI that manages wallet private keys, performs token approvals, and executes on‑chain trades (buy/sell/zap/swap/create). Those operations can move funds and write files under the user's home directory; the instructions therefore go beyond read-only queries and grant the CLI authority to perform sensitive actions.
Install Mechanism
No install spec is present in the registry metadata, but SKILL.md instructs users/agents to run 'npm install -g mint.club-cli' (a public npm package). Installing a global npm package is a typical way to get a CLI, but it involves downloading and executing third‑party code that was not included in the skill bundle and therefore cannot be audited here.
!
Credentials
The instructions request a PRIVATE_KEY (or storing it in ~/.mintclub/.env) and will perform transactions and approvals; yet the skill metadata lists no required credentials or primaryEnv. Requesting direct access to a wallet private key is high-sensitivity and should have been declared and justified in metadata.
Persistence & Privilege
The CLI will create and update files in ~/.mintclub (tokens.json, .env). The skill itself does not request 'always' or other elevated platform privileges, but the side-effect of persistent files in the user's home is not declared in metadata and can persist credentials and token addresses on disk.
What to consider before installing
This skill delegates work to an external npm CLI that will ask for or store your wallet private key and can execute on‑chain trades and token approvals. The registry metadata does not declare the PRIVATE_KEY or config paths that the instructions use — an inconsistency you should treat as a red flag. Before installing or invoking this skill: 1) inspect the npm package source (github link) for malicious or confusing code; 2) never provide a real private key—use a watch-only address or an ephemeral/test wallet with minimal funds; 3) review the package's npm page and maintainers, and prefer pinned, verified releases; 4) be aware the CLI will write files under ~/.mintclub (tokens.json, .env) which may contain sensitive data; 5) if you allow the agent to run it, consider disallowing autonomous invocation or restrict the agent to read-only operations. Additional information that would raise confidence to 'benign': the skill metadata declaring required env/config paths, an included verified source link to the CLI repository, and an audited package release.

Like a lobster shell, security has layers — review code before you run it.

latestvk976f414ms2yxw8487w6xv0m8n8127gw
728downloads
0stars
1versions
Updated 1h ago
v1.0.0
MIT-0

Mint Club V2 — Agent Skill

Interact with Mint Club V2 bonding curve tokens on Base using the mc CLI.

Setup

npm install -g mint.club-cli

Set your private key:

mc wallet --set-private-key 0x...
# Or export PRIVATE_KEY=0x...

Commands

Read Operations (no key needed)

mc info <token>          # Token info (supply, reserve, price, curve)
mc price <token>         # Price in reserve + USD
mc wallet                # Wallet address and balances

Trading

# Buy/sell via bonding curve (reserve token)
mc buy <token> -a <amount>                    # Buy tokens
mc sell <token> -a <amount>                   # Sell tokens

# Zap: buy/sell with any token (auto-routes via Uniswap)
mc zap-buy <token> -i ETH -a 0.01            # Buy with ETH
mc zap-sell <token> -a 100 -o USDC           # Sell for USDC

# Direct Uniswap swap (any pair, V3 + V4)
mc swap -i ETH -o HUNT -a 0.001              # Swap tokens
mc swap -i HUNT -o USDC -a 100 -s 0.5        # Custom slippage

Create Token

mc create -n "My Token" -s MYT -r HUNT -x 1000000 \
  --curve exponential --initial-price 0.01 --final-price 100

Curve presets: linear, exponential, logarithmic, flat

Transfer

mc send <address> -a 0.01                     # Send ETH
mc send <address> -a 100 -t HUNT              # Send ERC-20

Token Resolution

Use addresses or known symbols: ETH, WETH, USDC, HUNT, MT

Environment

VariableDescription
PRIVATE_KEYWallet private key (or use ~/.mintclub/.env)

Notes

  • All operations are on Base (chain 8453)
  • Default slippage: 1%
  • Default royalty on create: 1% mint + 1% burn
  • Token addresses are auto-saved to ~/.mintclub/tokens.json
  • Community: https://onchat.sebayaki.com/mintclub

Comments

Loading comments...