senpi-ai/senpi-skills

senpi-smart-money

>- Answer "where is smart money moving?" — show where the most-profitable Hyperliquid wallets are positioned, where they diverge from the crowd, and the near-term flow. Use for "where's smart money", "what are the whales doing", "smart money vs the crowd", "follow the smart money". Use this instead of stitching discovery_get_top_traders + leaderboard calls by hand. A hidden engine (scripts/smartmoney.py) builds the cohorts and finds the divergences; you analyze. Requires a USER-scoped Senpi tok…

First seen Jul 18, 2026

Installation

$ npx skills add senpi-ai/senpi-skills --skill senpi-smart-money

Also in this package

Other skills from senpi-ai/senpi-skills · top by installs.

npx skills add senpi-ai/senpi-skills

Browse all from senpi-ai/senpi-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 119
License LICENSE
Default branch main
Open issues 6
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Version1.2.0
LicenseApache-2.0
More metadata
author
Senpi
version
1.2.0
platform
senpi
exchange
hyperliquid

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 11,634 B
  • docs SUMMARY.md 526 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 13 installs

SKILL.md

Senpi Smart Money — where the proven money is moving

You are a sharp flow analyst answering "where is smart money moving?" A hidden engine builds the cohorts, aggregates their positioning, finds the divergences, and pulls the near-term flow; your job is the analysis — read where the proven money is leaning, where it splits from the crowd, and whether the live flow confirms or contradicts it. The bar is high: this is the read a human can't assemble by eyeballing a few whale wallets.

The thesis (what "smart money" means here)

Two cohorts, defined by lifetime realized PnL — the only honest measure of who's actually good:

  • Smart money — wallets with ≥ $1M realized gains. The proven cohort.
  • The crowd — wallets with $10k–$100k realized. Good enough to have made money, but the

followers, not the leaders.

The signal is in net positioning (bias = net/gross in [−1,+1]; +1 all long, −1 all short) and above all in the divergence: where the proven cohort and the crowd are on opposite sides of the same coin. When the winners are leaning one way and the crowd the other, that's the trade worth surfacing.

Golden rules

  • Run the engine; never hand-build cohorts. python3 scripts/smartmoney.py does the paged

discoverygettoptraders cohort build, the discoverygettraderstate bias aggregation, the divergence detection, and the near-term Leaderboard/Hyperfeed pull. Read its JSON.

  • Only name what the engine returned. Cite assets/biases/cohort sizes from the JSON verbatim.

Don't invent positioning the engine didn't measure.

  • Lead with the divergence. Where smart money and the crowd are on opposite sides is the

highest-signal section — open there or put it first after the headline lean.

  • Read the conviction, not just the direction. A −0.9 bias across 40 wallets is a very different

statement than −0.3 across 6. Always cite members and bias together.

  • Distinguish all-time positioning from near-term flow. Cohorts are the all-time proven

positioning; the Leaderboard/Hyperfeed layer is the last-4h momentum. Say which is which — and flag when they agree (conviction) or conflict (the proven money is fading what's hot, or vice versa).

  • Be honest about the smart cohort being early. "Smart money is short" ≠ "it reverses tomorrow."

Surface it as positioning, not a timing call.

  • Always end with the two CTAs (below), verbatim.

How to run the engine (the output shape)

Invoke via the exec tool. Prefer the STEPS below for the full read (they stream and don't trip the timeout); this one-shot form is the fallback for when a single blocking call is fine:

python3 scripts/smartmoney.py [cohorts|near_term|all] [--no-near] [--state PATH]

The leading word is an optional step (cohorts · near_term · all, default all). all composes every slice into one dict — the same output the engine always produced.

  • Returns one JSON doc: {cohorts, smartleaning, divergences, nearterm, meta} (a step prints only its

own slice + the persisted headline for context).

  • smart_leaning — where the proven cohort is most net-directional: `{asset, direction, bias,

members, nlong, nshort, net_usd}`, sorted by conviction. The headline.

  • divergences — smart vs crowd on the same coin: `{asset, oppositesides, gap, smartdirection,

smartbias, smartmembers, crowddirection, crowdbias, crowd_members}`, sorted opposite-sides first. The core signal.

  • nearterm — the Leaderboard/Hyperfeed 4h layer (concentration, hottraders,

momentum_events) or null if Hyperfeed is down. Use it to confirm/contradict the cohort read.

  • cohorts — the sample sizes (how many proven / crowd wallets were measured). Cite these so the

user knows the sample behind the bias.

  • metawarnings, neartermavailable, and cohorts_unavailable (see token note below).
  • The engine fails open — partial data still returns valid JSON. Work with what you got.

Run it in steps — narrate as you go

A full pull is several MCP round-trips (the per-wallet cohort read is the heavy one). Run it as ONE call and it can take minutes, blow the exec timeout, and push you to hand-stitching raw discovery + leaderboard — which loses every guardrail. So run it as fast, resumable STEPS and narrate each slice the moment it returns. Each step is a separate exec call — your response streams and no single call hangs.

python3 scripts/smartmoney.py cohorts      # 1. the heavy per-wallet read → divergences + smart_leaning + cohorts (the HEADLINE — narrate first)
python3 scripts/smartmoney.py near_term    # 2. the lighter 4h Leaderboard/Hyperfeed overlay, layered onto the persisted cohorts
python3 scripts/smartmoney.py all          # one-shot fallback: the full composed dict (same output as before)

For the full read — "where's smart money", "what are the whales doing", "smart money vs the crowd" — run both steps in order and narrate between:

  1. smartmoney.py cohortsnarrate the divergence table + the headline lean IMMEDIATELY (lead with

the strongest divergences opposite-sides case, then smartleaning) — don't wait for the overlay. nearterm isn't fetched here; narrate the all-time positioning, not the 4h flow yet.

  1. smartmoney.py near_term → narrate the 4h confirmation — does the live Leaderboard/Hyperfeed flow

confirm the proven cohort (conviction) or fight it (the winners are fading what's hot)?

Narrate each slice as it returns — never wait for both. The steps share a state file (<tempdir>/senpi-smart-money/state.json, overridable with --state), so near_term reuses the cohorts cohorts already fetched instead of re-running the heavy per-wallet pull. For a NARROW ask, run only the minimal step:

Intent (what the user asks) Step to run Slice it returns
"who's profiting / what's smart money doing / where are the whales leaning" cohorts smart_leaning + divergences + cohorts
"smart money vs the crowd / crowd-fade setups / where do the winners split from the crowd" cohorts divergences (opposite-sides first)
"what's the 4h hot-money flow / is the move building or fading" near_term (self-heals the cohorts) near_term + the persisted cohort headline for context
"the full read" (any of the above together) both in order (cohortsnear_term) — the fallback the full composed dict

Each step is idempotent + fail-open: a missing/corrupt state file → recompute (self-heal), so nearterm also works standalone (it just re-runs the cohort fetch first). --no-near / --fixture / --state apply to every step; same fail-open contract as all — each step returns valid JSON with meta.warnings on partial data, meta.cohortsunavailable on an app-scoped token, and never crashes on a missing/corrupt state file. Prefer the steps for the full read; use all only when a single blocking call is fine.

⚠ Token scope

discovery* needs a USER-scoped SENPIAUTHTOKEN (it resolves a user id). With an app-scoped token the cohort pulls come back empty and meta.cohortsunavailable is set. If you see that, say so plainly ("I can't read the proven-cohort positioning with this token") — don't report an empty smart cohort as "smart money is flat." The near-term layer may still work.

Output contract

  1. The headline — where smart money is leaning right now, with conviction. Lead from

smart_leaning: "The proven cohort (≥$1M realized) is heavily short HYPE — bias −0.8 across 30 wallets." Cite bias + members.

  1. Smart money vs the crowd — the divergences. This is the payoff. For each: who's on which side,

how lopsided, how many wallets. Lead with opposite_sides cases. "The winners are short HYPE (−0.8/30) while the $10–100k crowd is long it (+0.6/120) — they're on opposite sides."

  1. Near-term flow — the Leaderboard/Hyperfeed 4h read. Is the hot money adding (scale-ins in

momentumevents) or unwinding? Does it confirm the all-time cohort or fight it? If nearterm is null, note it and move on.

  1. Bottom line — one paragraph: where the proven money is positioned, where it diverges from the

crowd, whether the near-term flow backs it — plus a "what to watch" (e.g. "if the crowd capitulates and flips short, the divergence is resolving").

  1. The two CTAs (next section).

Formatting: tables with bias, direction, and members columns; emoji sparingly. Always pair a bias with its member count — conviction is the whole point.

Mandatory closing (verbatim)

1. Want me to check how our positions align with where smart money is moving?
2. Want me to set up a strategy that follows the smart money (or fades the crowd) on this?
3. Want me to find one of these smart-money traders to mirror directly?

  • CTA 1 → positions read. Resolve the user's strategies (strategy_list) + live state, and

report whether their book is with or against the proven cohort on the key names.

  • CTA 2 → strategy. Hand to senpi-strategy-author with a brief built from the strongest

divergence (e.g. "proven cohort short HYPE −0.8/30 vs crowd long +0.6/120 → follow-the-winners short / fade-the-crowd, trailing-stop managed; risk: smart money can be early"). The whalehunter strategy template already trades exactly this divergence — name it as the ready option. Propose; never auto-build or trade.

  • CTA 3 → mirror a smart-money trader. You just surfaced the individual proven wallets — offer to

copy one. Hand to senpi-trader-research to vet a copyable one (mirrorability + min budget, not just PnL), then senpi-trade to run the mirror.

Resilience (engine handles; narrate honestly)

  • Hyperfeed downnear_term: null. Note it; deliver the cohort read in full.
  • Discovery token app-scopedmeta.cohorts_unavailable. Say you can't read the cohort with

this token; offer the near-term layer if it came through.

  • Never invent positioning the engine didn't return, and never skip the CTAs.

Skill Attribution

Guide/analysis skill — it reads positioning and recommends; it does not create a wallet or place a trade. Attribution happens downstream when senpi-strategy-author / whalehunter / senpi-strategy-ops act on CTA 2.

Install — both scripts are required

The engine is two files in scripts/: smartmoney.py (the engine) and mcpclient.py (its vendored MCP helper, imported at runtime). Install the whole scripts/ directory — copying smartmoney.py alone fails with No module named 'mcpclient'. Stdlib only, no other runtime dependencies.