GMGN Skill Cooking

SuspiciousAudited by ClawScan on May 10, 2026.

Overview

This skill is clear about launching real crypto tokens, but it requires a wallet private key and an unpinned external CLI, so it needs careful review before use.

Install or use this only if you trust the gmgn-cli package and understand it can submit irreversible blockchain transactions with your wallet key. Use a dedicated low-balance wallet, verify every command manually, pin or inspect the CLI version, and avoid placing private keys in shared project .env files.

Findings (4)

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.

What this means

A confirmed create command can deploy a public token contract and spend real wallet funds, and the transaction cannot be undone.

Why it was flagged

The skill explicitly performs real financial actions. This is purpose-aligned and disclosed, but the user must understand the impact before any command is run.

Skill content
**This skill executes REAL, IRREVERSIBLE blockchain transactions.**
Recommendation

Only approve a create command after checking the chain, launchpad, wallet address, token name/symbol, buy amount, and slippage. Use a small dedicated wallet.

What this means

If the wrong process, package, workspace, or user gains access to the private key, wallet funds and token-launch authority may be compromised.

Why it was flagged

A wallet private key is high-impact signing authority. The registry requirements list no required env vars or primary credential, so this credential dependency is under-declared outside the skill text.

Skill content
`cooking create` requires both `GMGN_API_KEY` and `GMGN_PRIVATE_KEY` ... configured in `~/.config/gmgn/.env`.
Recommendation

Use a dedicated low-balance wallet, do not reuse a main wallet private key, keep keys out of shared project directories, and verify credential handling before use.

What this means

A compromised or wrong CLI package/version could misuse the private key, submit unintended transactions, or expose wallet credentials.

Why it was flagged

The skill depends on an unpinned globally installed npm package, while the submitted artifact set contains no code or install spec. That package is expected to handle private-key signing and transaction submission.

Skill content
`gmgn-cli` installed globally — if missing, run: `npm install -g gmgn-cli`
Recommendation

Verify the CLI's provenance, pin and inspect the package version, prefer an isolated environment, and do not install or run it with a high-value wallet.

What this means

A user may over-trust the key-safety claim without independently verifying what the external CLI does.

Why it was flagged

This is a reassuring security claim about key handling, but the provided artifacts are instruction-only and do not include the CLI code needed to verify it.

Skill content
The private key never leaves the machine — the CLI uses it only for local signing.
Recommendation

Treat the claim as unverified until the CLI implementation and network behavior have been checked.