๐ Bags Hunter
Mode: bags-hunter ยท Category: Crypto / Solana Memecoins
Solana memecoin specialist for the Bags.fm launchpad. Read-only research, 0-100 scoring, multi-source rug checking, and portfolio review.
๐ Bags Hunter never asks for wallet private keys, seed phrases, or passwords. Every tool uses only public APIs and public on-chain data. The agent cannot execute trades or move funds.
Quick run
From the repo root, after pnpm -r build:
node apps/cli/dist/index.js -a bags-hunter -q "What's trending on Bags.fm right now?"Requirements
LLM provider
Recommended: Anthropic Claude for nuanced risk explanations, Groq for fast iteration.
ANTHROPIC_API_KEY(or any other LLM provider key)HELIUS_API_KEYโ optional but recommended (enables holder distribution + creator analysis)
Plugins used
bagsfm (10 tools), solana, whale, security
Skills bundled
bags-hunter:scan-and-scoreโ discovery flow (trending โ score โ filter โ present)bags-hunter:rug-check-deepโ 4-stage rug heuristic (liquidity, authority, holders, creator)bags-hunter:portfolio-reviewโ basket analysis with rebalancing suggestions
The 10 Bags.fm tools
| Tool | Purpose |
|---|---|
bags_search | Find tokens by name or symbol |
bags_trending | Hottest tokens in last 1h / 6h / 24h |
bags_new_launches | Fresh launches by max age (hours) |
bags_token_analysis | Deep 0-100 score with liquidity, buy/sell, volume, age |
bags_compare | 1-5 tokens side-by-side ranking with composite score |
bags_rug_check | Multi-source rug heuristic (DexScreener + GoPlus) |
bags_holder_distribution | Top-20 holders + concentration risk levels |
bags_volume_pattern | 5m / 1h / 24h momentum and pattern detection |
bags_creator_analysis | Creator wallet history โ serial-launcher detection |
bags_portfolio_score | Basket (up to 10) diversification + performance |
Example sessions
Discovery โ what's hot right now
node apps/cli/dist/index.js -a bags-hunter -q "What's trending on Bags.fm in the last 6 hours? Show top 5 with scores."Agent runs bags_trending, applies first-pass filter, then bags_token_analysis on the survivors. Returns top 5 with scores, liquidity, buy/sell ratios, and risk flags.
Vet a specific token
node apps/cli/dist/index.js -a bags-hunter -q "Vet this Bags.fm token: 7xKXtg2CW87d3a4...y3 โ should I be worried?"Agent runs the full rug-check-deep flow: liquidity health, mint/freeze authority, holder concentration, creator history. Returns a structured verdict.
Compare alternatives
node apps/cli/dist/index.js -a bags-hunter -q "Compare these 3 Bags tokens for me: AAA111, BBB222, CCC333. Which has the best fundamentals?"Uses bags_compare for the side-by-side composite score, then a quick rug check on the winner.
Portfolio review
node apps/cli/dist/index.js -a bags-hunter -q "Review my Bags.fm basket: contracts AAA, BBB, CCC, DDD, EEE. Any rebalancing suggestions?"Runs bags_portfolio_score + targeted rug checks on positions over 10% allocation. Reports diversification status and suggests trims for over-concentrated positions.
Watching for entry/exit signals
node apps/cli/dist/index.js -a bags-hunter -q "Analyze volume patterns for contract XYZ โ any buy or sell signals?"Uses bags_volume_pattern to detect 5m bursts, cooling, accumulation, or distribution patterns.
Scheduled mode (optional)
Bags Hunter ships with a heartbeat checklist in .agents/bags-hunter/HEARTBEAT.md. Default schedule: daily at 9 AM. Disabled by default.
To enable a daily Bags.fm scan delivered to Telegram:
# Edit .agents/bags-hunter/HEARTBEAT.md and set "enabled: true"
# Then register the cron job:
node apps/cli/dist/index.js cron add hb-bags-hunter \
--schedule "0 9 * * *" \
--agent bags-hunter \
--prompt "Run your heartbeat checklist for {{date}}" \
--deliver-to "telegram:@me"What Bags Hunter will NOT do
- Ask for wallet private keys, seed phrases, or passwords (ever)
- Execute trades or move funds
- Promote or shill tokens
- Give financial advice โ only data and patterns
- Make absolute predictions about price direction
Files
Agent files at .agents/bags-hunter/:
SOUL.mdโ persona and principlesIDENTITY.mdโ metadata, model preferencesUSER.mdโ user contextTOOLS.mdโ tool policyHEARTBEAT.mdโ scheduled checklist (opt-in)MEMORY.mdโ long-term memoryskills/scan-and-score/SKILL.mdskills/rug-check-deep/SKILL.mdskills/portfolio-review/SKILL.md