whale-index
npx skills add https://github.com/senpi-ai/senpi-skills --skill whale-index
Agent 安装分布
Skill 文档
Whale Index â Auto-Mirror Top Discovery Traders
Scan the Discovery leaderboard, score traders, create mirror strategies, and rebalance daily. Set your risk level and budget â the agent handles selection, allocation, monitoring, and swaps.
5-Step Flow
Step 1: Onboard the User
Collect: budget, risk tolerance (conservative/moderate/aggressive).
| Budget | Slots |
|---|---|
| $500-$2k | 2 |
| $2k-$5k | 3 |
| $5k-$10k | 4 |
| $10k+ | 5 |
Risk mapping:
| Risk | Allowed Labels | Max Leverage |
|---|---|---|
| Conservative | ELITE only | 10x |
| Moderate | ELITE, RELIABLE | 15x |
| Aggressive | ELITE, RELIABLE, BALANCED | 25x |
Step 2: Discover Traders
2a. Pull candidates: discovery_top_traders(limit=50, timeframe="30d")
2b. Hard filters:
- Consistency label matches risk level
- Risk label matches risk level
- Min 30d track record
- Not already in user’s portfolio
2c. Score remaining candidates:
score = 0.35 Ã pnl_rank + 0.25 Ã win_rate + 0.20 Ã consistency + 0.10 Ã hold_time + 0.10 Ã drawdown
All components normalized 0-100.
2d. Overlap check: Compare active positions across selected traders. Flag >50% position overlap.
2e. Allocation weighting: Score-weighted allocation with 35% cap per slot. Re-normalize after capping.
Step 3: Present & Confirm
Show the user: trader address, rank, labels, win rate, allocation amount. Wait for approval before executing.
Step 4: Execute
For each slot:
- Create mirror strategy via
strategy_create_mirror - Set strategy-level stop loss (-10% conservative, -15% moderate, -25% aggressive)
- Confirm mirroring is active
Step 5: Daily Monitoring (Cron)
See references/daily-monitoring.md for the complete daily check procedure, swap criteria, and rebalance logic.
Swap criteria (ALL must be true):
- Degraded: dropped below rank 50 OR consistency fell OR inactive 48h+ OR drawdown 2Ã historical
- Sustained: WATCH status for 2+ consecutive days (tracked via
watchCount) - Better alternative: replacement scores â¥15% higher
- User’s strategy-level SL not hit
Key principle: The 2-day watch period prevents churn from temporary dips.
Teardown
To exit: close all mirror strategies, return funds to main wallet.
API Dependencies
discovery_top_tradersâ trader leaderboardstrategy_create_mirrorâ create mirror strategystrategy_get_clearinghouse_stateâ check positionsstrategy_close_strategyâ teardown
Fee Estimates
Mirror strategies incur the same trading fees as the mirrored trader’s activity. Budget ~0.5-1% daily in fees for active traders.