MoltMoon Crypto Launcher

Security checks across malware telemetry and agentic risk

Overview

This skill is a crypto trading and token-launch workflow that asks an agent to use a wallet private key and run live Base mainnet transactions, with limited scoping and under-declared credential requirements.

Review this carefully before installing. Only use it with a dedicated wallet you can afford to risk, pin and verify the @moltmoon/sdk package version, and require explicit confirmation before any live launch, approval, buy, sell, claim, or migration transaction.

VirusTotal

65/65 vendors flagged this skill as clean.

View on VirusTotal

Risk analysis

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

#
ASI03: Identity and Privilege Abuse
High
What this means

If used with a funded wallet, the agent or external SDK could sign irreversible blockchain transactions.

Why it was flagged

The skill requires a wallet private key for actions that can spend funds or sign transactions, while the supplied metadata declares no primary credential or required env vars.

Skill content
`MOLTMOON_PRIVATE_KEY=0x...` ... `MOLTMOON_PRIVATE_KEY` (or `PRIVATE_KEY`) is required for launch/buy/sell/claim.
Recommendation

Use only a dedicated low-balance wallet, avoid passing private keys directly when possible, and require explicit user approval for every signing action.

#
ASI02: Tool Misuse and Exploitation
High
What this means

A mistaken or over-eager invocation could approve token spending, buy or sell assets, launch a public token, claim rewards, or migrate tokens on-chain.

Why it was flagged

The documented workflows combine approval and transaction execution for token launches, trades, claims, and migration, but the skill does not clearly bound when the agent may execute them or require confirmation for each live transaction.

Skill content
`launchToken(params)` -> executes approve + create ... `buy(marketAddress, usdcIn, slippageBps?)` - Approve USDC + buy ... `sell(...)` - Approve token + sell ... `migrate(v1Amount)` - Approve V1 + migrate to V2
Recommendation

Treat all non-dry-run commands as high-risk financial actions and require manual review of wallet, market address, token address, amount, slippage, and network before execution.

#
ASI04: Agentic Supply Chain Vulnerabilities
Medium
What this means

The package version resolved at runtime could differ from what the skill author expected, and that package may receive wallet keys or execute transaction logic.

Why it was flagged

The skill directs the agent to install or run an unpinned external package, and the supplied artifacts include no install spec, lockfile, or package code for review.

Skill content
`npm install @moltmoon/sdk` ... `npx -y @moltmoon/sdk moltlaunch --help`
Recommendation

Pin and verify the SDK version, review the package provenance, and avoid using it with valuable wallets until the dependency is trusted.

#
ASI05: Unexpected Code Execution
Low
What this means

The SDK CLI will execute locally with the environment variables and permissions available to the agent.

Why it was flagged

Running a CLI package is expected for this SDK-focused skill, but it is still local code execution initiated by the agent.

Skill content
`npx -y @moltmoon/sdk mltl launch ...`
Recommendation

Run it in a restricted environment and pass only the minimum required wallet and configuration values.