Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计提醒

raptor-strategy猛禽策略

Agent Skill

raptor-strategy 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

367

周安装

15

GitHub Stars

75

下载量

118
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:raptor-strategy(猛禽策略)
来源仓库:https://github.com/senpi-ai/senpi-skills
仓库路径:skills/raptor-strategy
安装命令:
npx skills add https://github.com/senpi-ai/senpi-skills --skill raptor-strategy
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/senpi-ai/senpi-skills --skill raptor-strategy

简介

raptor-strategy 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位结果。
  • 可结合来源仓库和原始 README 继续核验具体用法,建议确认权限范围。
  • 安装命令:npx skills add https://github.com/senpi-ai/senpi-skills --skill raptor-strategy
  • 安装前建议检查维护状态及是否涉及文件读写或网络请求。

SKILL.md

RAPTOR v3.2 — Hot Streak Follower (entry-price discipline)

Find traders who are already winning big right now, confirm they're quality (ELITE or RELIABLE on TCS), figure out what bet is driving their streak, check the smart money crowd agrees, and piggyback the same trade.

v3.0 — why the complete rewrite

RAPTOR v2.1 traded zero times since deployment. Root cause:

v2.1 used leaderboard_get_momentum_events as the primary signal source and dereferenced three fields on each event — concentration, top_positions, and trader_tags. All three are null on blocked events. And blocked events are ~100% of tier 2 events in normal market conditions (820/820 tier 2 events over a 44-hour window in one recent sample were all blocked — either trader_cooldown_active or system_cooldown_active).

Per the senpi guide for leaderboard_get_momentum_events:

Blocked events are equally valid momentum signals. The blocking only affects notification delivery, not signal quality. Events with top_positions: null (blocked events without position data) will not match any asset filter.

v2.1's filter chain silently dropped every blocked event before ever reaching the SM alignment check. Raptor was mathematically incapable of producing a signal regardless of market conditions.

v3.0 architecture

v3.0 replaces leaderboard_get_momentum_events with a multi-step pipeline that uses populated data sources:

1. leaderboard_get_top(limit=30)
     → top 30 traders by 4h delta PnL (populated data, not blocked)

2. Local filter: delta_pnl ≥ $2M (tier 1 threshold)
     → narrows to currently active hot streaks

3. discovery_get_top_traders(addresses=[...], consistency=["ELITE","RELIABLE"])
     → single batch call filters to quality traders and attaches labels

4. Per quality trader: leaderboard_get_trader_positions(address)
     → per-market delta PnL breakdown with real data

5. Pick the strongest position by |delta_pnl|, compute concentration locally

6. leaderboard_get_markets → SM alignment check on each candidate

7. Score and execute the best candidate via create_position (self-executing)

API cost per scan: 1 (top) + 1 (classify) + up to 10 (positions) + 1 (SM) = ~13 calls/scan. Higher than v2.1's 2 calls/scan, but v2.1 was zero trades/month and v3.0 actually produces signals.

Scoring model

ComponentMaxGate
TCS consistency3ELITE/RELIABLE required
Delta PnL tier3≥$2M required
Concentration2≥0.40 required
SM alignment strength2≥2% SM, ≥10 traders, direction match required
4h + 1h price confirmation2
15m velocity freshness+1/-1

Hard gates before scoring: ELITE/RELIABLE consistency, ≥$500k position delta PnL, ≥40% concentration, SM alignment with matching direction.

Default minScore to trade: 6. Tunable via config/raptor-config.json.

Leverage tiers

Conviction-scaled:

  • Score 6-7: 7x
  • Score 8-9: 8x
  • Score 10+: 10x

Fleet-standard guardrails

  • Self-executing — scanner calls create_position directly via mcporter, matching the Wolverine/Phoenix pattern. No external action layer required.
  • Dynamic daily cap (fleet PR #176) — P&L-aware entry cap: 12 trades/day if +5% PnL, down to 0 trades (HARD STOP) at -25% drawdown.
  • Auto-cancel stale resting orders (fleet PR #177) — has_resting_orders() cancels any non-reduceOnly maker order older than 10 minutes so a stuck FEE_OPTIMIZED_LIMIT order never locks the scanner out.
  • Per-trader event dedupe — won't re-enter the same (trader, asset) pair within 4 hours.
  • Per-asset cooldown — 2-hour cooldown after a trade on any given coin.

Runtime

  • runtime.yaml added (was missing in v2.1)
  • Standard Predators deployment: position_tracker scanner + rule-based action + DSL engine
  • DSL tuned for follow-the-streak trades: hard_timeout 360 min, wide phase 2 tiers to let winners compound

Configuration

All thresholds live in config/raptor-config.json:

  • hotStreak.minDeltaPnl — minimum 4h delta PnL to consider a trader (default $2M)
  • hotStreak.tier2Threshold / tier3Threshold — scoring tier thresholds ($5.5M / $10M)
  • hotStreak.topTraderLimit — how many from leaderboard_get_top to pull (default 30)
  • hotStreak.minConcentration — minimum position concentration (default 0.40)
  • smAlignment.minSmPct / minSmTraders — SM consensus strength gates
  • dedupe.eventDedupeHours — trader-asset dedupe window (default 4h)
  • dedupe.perAssetCooldownMinutes — asset cooldown after any trade (default 120 min)
  • entry.minScore — score floor to fire an entry (default 6)

Deployment

Agents on v2.1 should pull the v3.0 package and restart. The v3.0 repo package includes:

  • raptor/runtime.yaml (NEW)
  • raptor/SKILL.md (NEW)
  • raptor/config/raptor-config.json (NEW)
  • raptor/scripts/raptor_config.py (NEW — was missing in v2.1 even though scanner imported it)
  • raptor/scripts/raptor-scanner.py (REWRITTEN)

Pull command:

curl -s https://raw.githubusercontent.com/Senpi-ai/senpi-skills/main/raptor/scripts/raptor-scanner.py -o /data/workspace/skills/raptor-strategy/scripts/raptor-scanner.py
curl -s https://raw.githubusercontent.com/Senpi-ai/senpi-skills/main/raptor/scripts/raptor_config.py -o /data/workspace/skills/raptor-strategy/scripts/raptor_config.py
curl -s https://raw.githubusercontent.com/Senpi-ai/senpi-skills/main/raptor/config/raptor-config.json -o /data/workspace/skills/raptor-strategy/config/raptor-config.json

Then verify with a single manual run:

python3 /data/workspace/skills/raptor-strategy/scripts/raptor-scanner.py

Expected: clean exit, _raptor_version: "3.0" in output JSON. If leaderboard_get_top returns data and there's at least one ELITE/RELIABLE hot trader, the scanner may emit a candidate signal or fire a trade on the first run.


Skill Attribution

When creating a strategy, include skill_name and skill_version in the call. See references/skill-attribution.md for details.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.32%
按下载量换算40

Claude

29.06%
按下载量换算34

Cursor

18.86%
按下载量换算22

Gemini CLI

9.14%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills