AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Moonpay Missions

skill-moonpay-skills-moonpay-missions · by moonpay

A series of missions that walk through every MoonPay CLI capability. Use when the user is new or says "get started", "show me what you can do", or "run the missions".

No reviews yet
0 installs
34 views
0.0% view→install

Install

$ agentstack add skill-moonpay-skills-moonpay-missions

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-moonpay-skills-moonpay-missions)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Moonpay Missions? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

MoonPay Missions

Walk the user through a series of missions. Complete each one before moving to the next. After each mission, give a brief summary of what they just did and what's next.

Mission 1: Identity

Goal: Verify who you are and what wallets you have.

mp user retrieve
mp wallet list

If no wallets exist, create one:

mp wallet create --name "main"

Tell the user their email, all wallet addresses (Solana, Ethereum, Bitcoin, Tron), and that keys are encrypted locally with a random key in the OS keychain.

Mission 2: Recon

Goal: See what's trending and research a token.

mp token trending list --chain solana --limit 5 --page 1

Present the top trending tokens. Then ask the user to pick one to research:

mp token search --query "" --chain solana
mp token retrieve --token  --chain solana

Present: name, symbol, price, market cap, liquidity, volume.

Mission 3: Portfolio Check

Goal: See what's in the wallet across chains.

mp token balance list --wallet  --chain solana
mp token balance list --wallet  --chain ethereum
mp bitcoin balance retrieve --wallet 

Present holdings as a multi-chain portfolio report with USD values and total.

Mission 4: Swap

Goal: Execute a swap end-to-end.

Pick a small swap based on what the wallet holds:

mp token swap \
  --wallet main --chain solana \
  --from-token So11111111111111111111111111111111111111111 \
  --from-amount 0.01 \
  --to-token EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v

This builds, signs locally, and broadcasts in one step. Show the result and explain: the transaction was built on the server, signed locally (key never left the machine), and submitted on-chain.

Three commands for moving tokens:

  • mp token swap — same chain, different tokens (e.g. SOL → USDC)
  • mp token bridge — cross chain (e.g. ETH on Ethereum → USDC on Polygon)
  • mp token transfer — same chain, same token, different wallet (e.g. send USDC to a friend)

Mission 5: Buy with Fiat

Goal: Generate a fiat checkout link.

mp buy --token sol --amount 1 --wallet  --email 

Open the checkout URL. Explain: MoonPay's fiat gateway for buying crypto with card or bank transfer.

Mission 6: Message Signing

Goal: Sign a message to prove wallet ownership.

mp message sign --wallet main --chain solana --message "I own this wallet"

Present the signature. Explain: used for wallet verification (e.g. registering with virtual accounts, proving ownership to dApps).

Mission 7: Virtual Account (optional)

Goal: Check if the user has a virtual account for fiat on/off-ramp.

mp virtual-account retrieve

If they have one, show the status and next step. If not, explain what it is and that they can set one up with mp virtual-account create.

Mission 8: Prediction Markets

Goal: Browse prediction markets and understand how they work.

mp prediction-market market trending list --provider polymarket --limit 5

Pick an interesting market and get details:

mp prediction-market market event retrieve --provider polymarket --slug 

Explain: prediction markets let you buy shares on outcomes. Price = implied probability. Shares pay $1 if the outcome resolves YES. Supports Polymarket (Polygon/USDC.e) and Kalshi (Solana/USDC).

Mission 9: Skills

Goal: Show what skills are available and how to manage them.

# List all bundled skills
mp skill list

# View a specific skill's instructions
mp skill retrieve --name moonpay-prediction-market

# Install all skills to Claude Code's skills directory
mp skill install

Explain: skills are guides that teach agents how to use the CLI for specific tasks. mp skill list shows all available skills. mp skill retrieve --name shows the full instructions for a specific skill. mp skill install copies all skills to ~/.claude/skills/ so Claude Code loads them automatically.

Debrief

Summarize everything:

  • Set up a multi-chain HD wallet (encrypted, OS keychain secured)
  • Searched and analyzed tokens
  • Checked portfolio across Solana, Ethereum, Bitcoin
  • Executed a swap (built, signed locally, broadcast)
  • Generated a fiat buy link
  • Signed a message for verification
  • Explored virtual accounts
  • Browsed prediction markets
  • Discovered and installed skills

End with: "You're all set. Run mp --help to see all commands, or ask me anything."

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.