Token导航 LogoToken导航TokenDH.com
待分类external-servicegithub未标认证来源可访问许可证需确认审计提醒

mantis-strategy螳螂策略

Agent Skill

mantis-strategy 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,126

周安装

46

GitHub Stars

75

下载量

364
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

mantis-strategy 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中整理项目状态与协作事项。

  • 适用于策略制定、任务分解或协作流程管理场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前建议确认权限范围、维护状态及是否触发文件读写或网络请求。
  • 具体用法可结合原始 README 和仓库内容进一步核验。

SKILL.md

🦎 MANTIS v5.0 — Slipstream

The mantis is patience plus speed. Stillness, then strike.

What Mantis does

Mantis monitors the cross-asset flow tool every 60 seconds. When a leader (BTC, eventually ETH/SOL/HYPE) makes a significant 4h move (>2%), the tool surfaces correlated alts that *historically follow that leader* but haven't yet responded. Mantis filters those laggards by strict criteria, picks the highest-confidence one, and opens a position in the direction the leader moved — sized by confidence, with a hard timeout calibrated to the alt's typical lag distribution.

The thesis

Pure statistical edge with quantified time bounds:

  • Edge: alts that follow a leader 85%+ of the time, with low timing variance, are likely to catch up after a leader move
  • Timing: the alt's historical avg_lag_minutes defines the trade's window
  • Exit: the catchup either happens within avg_lag × 1.5 minutes — or it doesn't happen at all
  • Veto: if the leader reverses mid-position, the entire thesis is invalidated and Mantis closes immediately

Entry criteria (all must pass)

FilterThresholdWhat it ensures
follow_rate≥ 0.85Alt historically follows leader 85%+ of moves
confidence≥ 0.75Composite of correlation + follow + lag + SM alignment
gap_pct≥ 1.5% (abs)Catchup opportunity is meaningful
sm_starting_to_rotatetrueSmart money is confirming the catchup
lag_stddev_minutes≤ 90Timing is predictable enough to trade
Assetnot in cooldown4-hour per-asset cooldown after any strike
Assetnot already openNo doubling up on same asset

Sizing — conviction tiers

Sizing scales directly off the confidence score:

ConfidenceMargin %Leverage
≥ 0.9275%8x
≥ 0.8550%7x
≥ 0.7525%5x

Hard cap: 8x leverage, 75% notional of available margin.

Direction

Match the leader: positive leader 4h move → LONG the laggard, negative → SHORT. Mantis never goes against the leader's direction; the entire setup is "the alt is going to catch up to where the leader is."

Exit logic

Three layers, in priority order:

  1. Leader-reversal veto — every scan tick, Mantis checks the current 4h leader move vs. the leader's move at entry. If the leader has reversed by >1% from entry, Mantis closes immediately. The thesis was the leader's move; if it dies, the trade dies.
  2. Dynamic hard timeoutavg_lag_minutes × 1.5, clamped to [30, 240] minutes. If the alt hasn't caught up within that window, the catchup probably isn't happening — exit.
  3. DSL trail — standard Phase 1 / Phase 2 trailing logic for in-window winners:

- Phase 1 max loss: 12% - Phase 2 trail tiers: 5/30, 10/60, 15/75, 25/85 - Weak peak cut: 20 min, 1.5% min value

Risk controls

ControlValueWhy
Max concurrent positions2Diversify across catchup setups, don't concentrate
Per-asset cooldown240 minPrevent re-strike whipsaw on same asset
Daily entry cap6Behavioral fee-churn ceiling
Max position notional75%of available margin

State files (persistent, survive session clears)

  • state/asset-cooldowns.json — per-asset cooldown timestamps
  • state/entry-log.jsonl — append-only log of every Mantis decision (STRIKE, NO_ENTRY, LEADER_REVERSAL_EXIT, DAILY_CAP_REACHED, POSITION_CLOSED_DETECTED)
  • state/position-metadata.json — per-position leader/lag metadata for veto tracking

MCP tools used

  • market_get_cross_asset_flows — primary signal source (the new cross-asset flow detection tool)
  • strategy_get_clearinghouse_state — current positions + account value
  • create_position — entry execution (called by runtime from STRIKE action)
  • close_position — exit execution (called by runtime from VETO_CLOSE action or DSL)

Cron cadence

Scanner runs every 60 seconds. The cross-asset flow data itself is refreshed daily at 00:00 UTC by the hyperliquid-cross-asset-flow-cron job; Mantis just consumes the live output.

Install

mkdir -p /data/workspace/skills/mantis-strategy/{config,scripts,state}

gh repo clone Senpi-ai/senpi-skills /tmp/senpi-skills
cp -r /tmp/senpi-skills/mantis/* /data/workspace/skills/mantis-strategy/

cp /data/workspace/skills/mantis-strategy/config/mantis-config.example.json \
   /data/workspace/skills/mantis-strategy/config/mantis-config.json

# Set wallet + telegram in runtime.yaml
sed -i 's/${WALLET_ADDRESS}/<WALLET>/' /data/workspace/skills/mantis-strategy/runtime.yaml
sed -i 's/${TELEGRAM_CHAT_ID}/<CHAT_ID>/' /data/workspace/skills/mantis-strategy/runtime.yaml

openclaw senpi runtime create --path /data/workspace/skills/mantis-strategy/runtime.yaml
openclaw senpi runtime list

Status

v5.0 — initial release. Scanner is production-ready. Currently BTC-only as the leader (per the cross-asset flow tool's pre-computed lag coverage). Adding ETH/SOL/HYPE as leaders is a one-line config change in mantis_config.py once Sarvesh ships pre-computed lag data for those assets.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.39%
按下载量换算125

Claude

31.75%
按下载量换算116

Cursor

17.27%
按下载量换算63

Gemini CLI

8.21%
按下载量换算30

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

通过

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills