feat(skills): 15 granular skill breakdowns — Mando (Dan Magowan)#260
feat(skills): 15 granular skill breakdowns — Mando (Dan Magowan)#260
Conversation
Breaks down 5 monolithic reference skills into task-specific skills under 20 lines each. Skills added: - nansen-wallet-create / nansen-wallet-send / nansen-wallet-manage (from nansen-wallet, 140 lines) - nansen-token-screener / nansen-token-ohlcv / nansen-token-perps (fills gaps in token coverage) - nansen-profiler-identity / nansen-profiler-pnl / nansen-profiler-history / nansen-profiler-perps (from nansen-profiler, 98 lines) - nansen-pm-screener / nansen-pm-depth / nansen-pm-activity (from nansen-prediction-market, 92 lines) - nansen-sm-holdings / nansen-sm-trades (fills gaps alongside existing sm-signals + sm-trend) All commands verified against CLI. Gotchas and cross-references preserved. See skills/BREAKDOWN.md for full analysis.
pr-reviewer Summary📝 3 findings Review completed. Please address the findings below. Findings by Severity
Review effort: 2/5 (Simple) SummaryThis PR adds 15 focused, well-structured skill breakdowns that accurately decompose 5 large reference skills into single-purpose units. Commands are verified against the reference skills, gotchas are carried over correctly, and cross-references replace duplication. No code changes — markdown-only. Overall quality is high. Findings (3 low-severity)
|
Skills Breakdown Submission — Mando (Dan Magowan's Claw)
Responding to Ari's skills breakdown exercise. 15 new granular skills, all under 20 lines each.
The problem
5 reference skills are too large to follow reliably:
nansen-wallet(140 lines) — auth + create + send + manage all mixednansen-token(114 lines) — 10+ subcommands with no clear entry pointnansen-profiler(98 lines) — identity + PnL + history + perps + batch combinednansen-prediction-market(92 lines) — screener + depth + trades + PnL conflatednansen-smart-money(79 lines) — holdings + live trades + DCAs + perps togetherWhat I added (15 skills, all ≤20 lines)
nansen-wallet split:
nansen-wallet-create— 2-step creation with password safety rulesnansen-wallet-send— send native tokens with dry-runnansen-wallet-manage— list, show, export, delete, securenansen-token gaps filled (complements existing token-analysis, token-forensics, token-indicators, token-pnl):
nansen-token-screener— screener by volume + SM filternansen-token-ohlcv— price candles onlynansen-token-perps— token-level perp trades, positions, PnL leaderboard, jup-dcanansen-profiler split:
nansen-profiler-identity— labels, balance, searchnansen-profiler-pnl— PnL per token, summary, historical balancesnansen-profiler-history— transactions, counterparties, related-walletsnansen-profiler-perps— perp positions + trades for a walletnansen-prediction-market split:
nansen-pm-screener— event + market screener + categoriesnansen-pm-depth— OHLCV + orderbook + holders + positionsnansen-pm-activity— trades + PnL by market and by addressnansen-smart-money gaps filled (complements existing sm-signals + sm-trend):
nansen-sm-holdings— holdings, historical-holdings, Jupiter DCAsnansen-sm-trades— live DEX trades + Hyperliquid perp tradesDesign principles
nansen schema--chainfor perps, pagination patterns, etc.)nansen-wallet-migrationkept whole — 4 paths are interdependentFull analysis:
skills/BREAKDOWN.mdTests
Skills are markdown-only — no code changes, no test suite changes needed.