moonpay-feedback
Submit feedback
Goal
Let users submit bug reports, feature requests, or general feedback directly from the CLI. Requires authentication so we can follow up.
Command
mp feedback create \
--type <bug|feature|general> \
--message "<feedback message>"
Types
bug— Something is broken or not working as expectedfeature— A new capability or improvement the user wantsgeneral— Any other feedback
Example flows
Bug report
- User: "The token swap command keeps failing with a timeout error."
- Run:
mp feedback create --type bug --message "token swap times out when swapping SOL to USDC on Solana — getting timeout error after 30s"
Feature request
- User: "I wish I could set up recurring buys."
- Run:
mp feedback create --type feature --message "Add native recurring buy support — e.g. buy $50 of SOL every week automatically"
General feedback
- User: "The CLI is great but the output is hard to read."
- Run:
mp feedback create --type general --message "CLI output formatting could be more readable — consider adding color or table views"
Notes
- User must be logged in (
mp login) before submitting feedback. - Include as much detail as possible in the message — error messages, commands that failed, expected vs actual behavior.
- If the user reports a bug, try to reproduce it first and include the error output in the feedback message.
Related skills
- moonpay-auth — Ensure user is logged in before submitting feedback.
More from moonpay/skills
moonpay-trading-automation
Set up automated trading strategies — DCA, limit orders, and stop losses — by composing mp CLI commands with OS scheduling (cron/launchd).
38moonpay-prediction-market
Trade on prediction markets (Polymarket, Kalshi). Search markets, buy/sell positions, track PnL, and view trade history.
36moonpay-auth
Set up the MoonPay CLI, authenticate, and manage local wallets. Use when commands fail, for login, or to create/import wallets.
33moonpay-swap-tokens
Swap tokens on the same chain or bridge tokens across chains. Use when the user wants to swap, bridge, or move tokens.
33moonpay-price-alerts
Set up desktop price alerts that notify you when tokens hit target prices. Observe-only — no trading, just notifications.
33moonpay-check-wallet
Check wallet balances and holdings. Use for "what's in my wallet", portfolio breakdown, token balances, allocation percentages, and USD values.
32