Token导航 LogoToken导航TokenDH.com
运维和基础设施需要联网github未标认证来源可访问许可证需确认审计通过

hodlmm-pulse霍德姆脉冲

Agent Skill

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

总安装

494

周安装

21

GitHub Stars

5

下载量

173
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/aibtcdev/skills --skill hodlmm-pulse

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 通过 npx skills add 命令从指定仓库安装并使用。
  • 建议确认权限范围和维护状态,注意是否会触发联网或文件读写操作。
  • hodlmm-pulse 属于运维和基础设施类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

HODLMM Pulse

Fee velocity and volume momentum tracker for Bitflow HODLMM (DLMM) concentrated liquidity pools.

What it does

Answers the question "is now a good time to deploy liquidity?" by tracking *how fast* fees are being generated relative to the 7-day rolling baseline. A pool earning 3× its daily average in fees is in an active volume spike — the prime window to enter, capture fees, and exit before volume normalises.

Two modes of operation:

  1. Single-shot (scan) — instant momentum ranking across all pools from a single API call. Useful for quick triage.
  2. Time-series (track + report) — run track on a cron (e.g. every 5 min) to build a local snapshot history. The more data collected, the more accurate the trend direction (accelerating / stable / cooling). report surfaces the full picture.

Why agents need it

hodlmm-advisor tells you *where* to deploy (which pool has the best risk-adjusted yield). hodlmm-pulse tells you *when* — detecting fee spikes and volume acceleration before they appear in slow-moving APR averages. Together they form a complete LP entry decision loop:

  1. hodlmm-pulse scan → identify pools with active momentum
  2. hodlmm-pulse track --pool-id <id> → confirm trend direction over multiple polls
  3. hodlmm-advisor entry-plan --pool-id <id> → get exact bin range + strategy
  4. Execute only when both pulse signal is spike/elevated and advisor returns "Deploy now"

Safety notes

  • Read-only — never submits transactions or moves funds
  • No wallet required — safe to call from any agent without authentication
  • Mainnet-only — Bitflow HODLMM API is mainnet-only
  • State file written to ~/.hodlmm-pulse-state.json (local disk only, no network writes)
  • Rolling window: last 288 snapshots per pool (~24h at 5-min polling intervals)

Commands

doctor

Checks all data sources and state file readiness.

bun run hodlmm-pulse/hodlmm-pulse.ts doctor

scan

Fetches all pools in one call, computes momentum scores, ranks by fee velocity. Use for quick triage without needing prior tracking history.

bun run hodlmm-pulse/hodlmm-pulse.ts scan
bun run hodlmm-pulse/hodlmm-pulse.ts scan --min-tvl 10000

Options:

  • --min-tvl <usd> — exclude pools below this TVL (default: 500)

track

Appends a timestamped snapshot for a single pool to local state, then outputs the current signal and trend direction. Trend accuracy improves with each successive call.

bun run hodlmm-pulse/hodlmm-pulse.ts track --pool-id dlmm_1

Options:

  • --pool-id (required) — pool identifier (e.g. dlmm_1, dlmm_3)

Recommended: run via cron every 5 minutes for each pool of interest.

report

Reads all stored snapshots and outputs a trend summary per pool: current signal, trend over the full tracking window, peak momentum seen. Prioritises pools with active signals at the top.

bun run hodlmm-pulse/hodlmm-pulse.ts report
bun run hodlmm-pulse/hodlmm-pulse.ts report --pool-id dlmm_1

Options:

  • --pool-id (optional) — limit output to one pool

Momentum model

Fee velocity

Primary signal. Ratio of today's fees to the 7-day daily average:

feeVelocity = feesUsd1d / (feesUsd7d / 7)

1.0 = average day. 3.0 = earning 3× the daily average.

Volume velocity

Secondary signal. Same ratio applied to volume:

volumeVelocity = volumeUsd1d / (volumeUsd7d / 7)

APR spike ratio

Tertiary signal. How much today's realized APR exceeds the long-run average:

aprSpike = apr24h / apr

Momentum score (composite, weighted)

momentumScore = feeVelocity × 0.6 × 50 + volumeVelocity × 0.3 × 50 + aprSpike × 0.1 × 50

50 = average day. Higher = more active than usual.

Signal thresholds

SignalConditionMeaning
🔥 spikefeeVelocity ≥ 3×Exceptional activity — prime entry window
📈 elevatedfeeVelocity ≥ 1.5×Above average — monitor closely
〰️ normal0.5× ≤ feeVelocity < 1.5×Within baseline — no special action
📉 coolingfeeVelocity < 0.5×Below baseline — not an entry window
⬜ flatFees + volume near zeroInactive pool — skip

Trend direction (time-series only)

TrendMeaning
⬆️ acceleratingFee velocity rising across recent snapshots
↔️ stableFee velocity flat — activity sustained
⬇️ coolingFee velocity declining — window closing
🆕 newInsufficient history (< 2 snapshots)
— flatPool is inactive

Output contract

All outputs are JSON to stdout.

Success:

{ "status": "success", "network": "mainnet", "timestamp": "...", ... }

Error:

{ "error": "descriptive message" }

Data sources

SourceDataEndpoint
Bitflow App API (pools list)All pools: feesUsd1d, feesUsd7d, volumeUsd1d, volumeUsd7d, apr, apr24h, tvlUsdbff.bitflowapis.finance/api/app/v1/pools
Bitflow App API (pool detail)Single pool detail (used by track)bff.bitflowapis.finance/api/app/v1/pools/{id}
Bitflow Quotes APIPool list sanity checkbff.bitflowapis.finance/api/quotes/v1/pools
Local state fileSnapshot history for trend computation~/.hodlmm-pulse-state.json

Known constraints

  • feesUsd1d and volumeUsd1d are 24h rolling windows from Bitflow's API — they update in near-real-time but are not per-minute granularity
  • Trend direction requires at least 2 snapshots; spike signal is actionable from a single scan
  • State file is local to the machine — tracking history does not persist across machines
  • Low-TVL pools (< $500) are filtered by default; their fee metrics are noisy

Origin

Winner of AIBTC x Bitflow Skills Pay the Bills competition. Original author: @ghislo749 Competition PR: https://github.com/BitflowFinance/bff-skills/pull/94

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.68%
按下载量换算63

Claude

31.56%
按下载量换算55

Cursor

19.15%
按下载量换算33

Gemini CLI

9.62%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills