mintyouragent

Review·Scanned 2/18/2026

This skill is a Python CLI to create and launch Solana tokens via pump.fun, manage a local wallet under ~/.mintyouragent/, upload metadata, and interact with Solana RPC endpoints. It makes network calls to https://pump.fun/api/ipfs and https://www.mintyouragent.com/api, reads/stores MYA_API_KEY and local wallet files, and includes shell instructions like pip install solders requests and python mya.py.

from clawhub.ai·v3.3.4·129.1 KB·0 installs
Scanned from 3.3.4 at 6dd5fed · Transparency log ↗
$ vett add clawhub.ai/operatingdev/mintyouragentReview findings below

MintYourAgent

Launch Solana tokens on pump.fun. Free. You keep all creator fees.

📚 Full docs: https://www.mintyouragent.com/for-agents 🐙 GitHub: https://github.com/operatingdev/mintyouragent 💬 Discord: https://discord.gg/mintyouragent 📜 License: MIT


⚠️ IMPORTANT: Your wallet is stored in ~/.mintyouragent/ (your home directory), NOT in the skill folder. This means your wallet is safe during skill updates. Never manually put wallet files in the skill folder.


Quick Start

# Install dependencies
pip install solders requests

# Create wallet
python mya.py setup

# Check balance
python mya.py wallet balance

# Launch a token
python mya.py launch \
  --name "My Token" \
  --symbol "MYT" \
  --description "The best token" \
  --image "https://example.com/image.png"

All Commands

CommandAliasDescription
setupsCreate a new wallet
walletwWallet management
launchlLaunch a token
tokenstList tokens in wallet
historyhShow command history
backupbBackup/restore wallet
verify-Verify wallet integrity
statusstCheck API/RPC status
trendingtrShow trending tokens
leaderboardlbShow launch leaderboard
stats-Show your stats
airdrop-Request devnet airdrop
transfer-Transfer SOL
sign-Sign a message
configcManage configuration
uninstall-Remove all data

Wallet Commands

# Show address
python mya.py wallet address

# Check balance
python mya.py wallet balance

# Export signing key (for importing to Phantom/Solflare)
python mya.py wallet export

# Get funding instructions
python mya.py wallet fund

# Check launch limits
python mya.py wallet check

# Import existing wallet (secure - via stdin)
python mya.py wallet import < keyfile.txt

# Import wallet (less secure - via CLI)
python mya.py wallet import --key YOUR_BASE58_KEY

Launch Parameters

ParamRequiredDescription
--nameToken name (max 32 chars)
--symbolTicker (max 10 chars, ASCII only)
--descriptionToken description (max 1000 chars)
--imageImage URL (HTTPS)
--image-filealtLocal image path (max 5MB)
--bannerBanner image URL (HTTPS)
--banner-filealtLocal banner path (max 5MB)
--twitterTwitter/X link (HTTPS)
--telegramTelegram link (HTTPS)
--websiteWebsite link (HTTPS)
--initial-buyInitial buy in SOL (default: 0)
--ai-initial-buyLet AI decide buy amount
--slippageSlippage in bps (default: 100 = 1%)
--dry-runTest without launching
--previewPreview parameters
--tipsShow first-launch tips
-y, --yesSkip confirmation prompts

Launch Examples

# Basic launch
python mya.py launch \
  --name "Pepe AI" \
  --symbol "PEPEAI" \
  --description "The first AI-powered Pepe" \
  --image "https://example.com/pepe.png"

# With initial buy
python mya.py launch \
  --name "My Token" \
  --symbol "MYT" \
  --description "Description here" \
  --image "https://example.com/image.png" \
  --initial-buy 0.5 \
  --slippage 200

# AI decides initial buy
python mya.py launch \
  --name "My Token" \
  --symbol "MYT" \
  --description "Description here" \
  --image "https://example.com/image.png" \
  --ai-initial-buy

# With all socials
python mya.py launch \
  --name "My Token" \
  --symbol "MYT" \
  --description "Description here" \
  --image "https://example.com/image.png" \
  --twitter "https://twitter.com/mytoken" \
  --telegram "https://t.me/mytoken" \
  --website "https://mytoken.com"

# Dry run (test without spending)
python mya.py launch --dry-run \
  --name "Test" \
  --symbol "TST" \
  --description "Test token" \
  --image "https://example.com/test.png"

Global Flags

Output Control:

FlagDescription
--jsonOutput as JSON
--formatOutput format: text/json/csv/table
-o, --output-fileWrite output to file
--no-colorDisable colors
--no-emojiDisable emoji
--timestampsShow timestamps
-q, --quietQuiet mode (errors only)
-v, --verboseVerbose logging
--debugDebug mode (show stack traces)

Path Overrides:

FlagDescription
--config-fileCustom config file path
--wallet-fileCustom wallet file path
--log-fileCustom log file path

Network Options:

FlagDescription
--networkmainnet/devnet/testnet
--api-urlOverride API endpoint
--rpc-urlOverride RPC endpoint
--proxyHTTP proxy URL
--user-agentCustom user agent

Behavior:

FlagDescription
--timeoutRequest timeout (seconds)
--retry-countNumber of retries
--priority-feePriority fee (microlamports)
--skip-balance-checkSkip balance verification
-y, --yesSkip confirmation prompts

Environment Variables

VariableDescription
MYA_API_URLOverride API endpoint
MYA_API_KEYAPI key for signed requests
MYA_SSL_VERIFYSet to false to disable SSL
HELIUS_RPCCustom Solana RPC endpoint
SOLANA_RPC_URLAlternative RPC env var

.env File Support

Create a .env file in your project or ~/.mintyouragent/.env:

# .env
MYA_API_KEY=your_api_key
HELIUS_RPC=https://your-rpc.helius.xyz

The CLI loads .env from:

  1. Current directory
  2. ~/.mintyouragent/.env

Backup & Restore

# Create backup
python mya.py backup create
python mya.py backup create --name my_backup

# List backups
python mya.py backup list

# Restore from backup
python mya.py backup restore --file ~/.mintyouragent/backups/wallet_20240101_120000.json

Network Selection

# Use devnet (for testing)
python mya.py --network devnet wallet balance

# Request airdrop (devnet only)
python mya.py --network devnet airdrop --amount 2

# Use custom RPC
python mya.py --rpc-url https://my-rpc.com wallet balance

Security Best Practices

  1. Never share your signing key or RECOVERY_KEY.txt
  2. Use a dedicated wallet - Don't use your main wallet
  3. Only fund with what you need - ~0.05 SOL per launch
  4. Back up regularly - python mya.py backup create
  5. Import keys via stdin - Not CLI args (visible in ps aux)
  6. Verify before real launches - Use --dry-run first

Secure Key Import

# GOOD: Read key from file (not visible in process list)
python mya.py wallet import < keyfile.txt

# GOOD: Pipe from password manager
pass show solana/key | python mya.py wallet import

# AVOID: CLI argument (visible in process list)
python mya.py wallet import --key ABC123...

Data Location

All data stored in ~/.mintyouragent/ (LOCAL only - never transmitted):

  • wallet.json - Wallet with checksum verification
  • config.json - Configuration
  • RECOVERY_KEY.txt - Backup signing key (600 permissions)
  • audit.log - Action log
  • history.json - Command history
  • backups/ - Wallet backups

API Rate Limits

TierDaily Launches
Free3
With $SOUL tokenMore based on holdings

Check your limit: python mya.py wallet check


Error Codes

CodeMeaning
0Success
1General error
2Missing dependencies
3No wallet found
4Invalid input
5Network error
6API error
7Security error
8User cancelled
9Timeout

Troubleshooting

ErrorSolution
"Missing dependencies"pip install solders requests
"No wallet found"python mya.py setup
"Insufficient balance"Send SOL to your wallet
"Symbol must be ASCII"Use only A-Z, 0-9
"SSL verification failed"Set MYA_SSL_VERIFY=false (not recommended)
"Wallet integrity failed"Restore from backup
"Network error"Check internet connection
"Rate limit exceeded"Wait or hold $SOUL token

🤖 AI Agent Guidelines

Before First Launch - Ask the Human:

  1. "Show useful commands?" → python mya.py launch --tips
  2. "Check wallet balance?" → python mya.py wallet balance
  3. "Do a dry run first?" → python mya.py launch --dry-run ...

Initial Buy Decision

When launching, ask:

"Set initial buy yourself, or should I decide based on balance?"

  • You set: --initial-buy 0.5
  • AI decides: --ai-initial-buy
  • No buy: (no flag)

AI Decision Logic (--ai-initial-buy)

  • Reserve 0.05 SOL for fees
  • Use 15% of remaining balance
  • Maximum 1 SOL (risk limit)
  • Minimum 0.01 SOL if buying
  • If balance < 0.06 SOL, no buy

Safety Warnings

  • Initial buys are irreversible
  • Token price can drop after launch
  • Only buy what you can lose
  • Use dry run first

What is pump.fun?

pump.fun is a Solana token launchpad that:

  • Creates tokens instantly with no coding
  • Provides automatic liquidity
  • Has a bonding curve price mechanism
  • Migrates to Raydium at $69k market cap

MintYourAgent uses pump.fun's infrastructure to launch tokens.


Comparison

FeatureMintYourAgentRaw pump.funOther CLIs
AI Integration
Local Signing
CLI
Free
Open SourceVaries

Changelog

See CHANGELOG.md for full history.

v3.0.0

  • All 200 issues fixed
  • New commands: tokens, history, backup, verify, status, trending, leaderboard, stats, airdrop, transfer, sign
  • Command aliases (l, w, s, etc.)
  • .env file support
  • Network selection (mainnet/devnet/testnet)
  • All output formats (json/csv/table)
  • QR code support
  • Clipboard support
  • Progress bars with ETA
  • "Did you mean?" suggestions

v2.3.0

  • All CLI flags
  • Input sanitization
  • Path safety

v2.2.0

  • Security hardening
  • Retry logic
  • Audit logging

v2.1.0

  • Secure local signing
  • AI initial buy

Contributing

See CONTRIBUTING.md for guidelines.


License

MIT License - see LICENSE