hertzflow
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
Chinesehertzflow — Crypto trade-decision intelligence (single skill, multi-domain)
hertzflow — 加密货币交易决策智能工具(单技能,多领域)
hertzflowINSTRUCTIONS.mdhertzflowINSTRUCTIONS.md🌐 Language — MANDATORY, read first
🌐 语言设置 — 强制要求,请首先阅读
Detect the language of the user's most recent message and use that
language for everything: your conversation replies AND the generated
report. This is not optional and not a preference the user has to
ask for.
- Message contains CJK characters (, kana, hangul) → operate in Chinese (
一-鿿): reply in Chinese, run the pipeline withzh.--lang zh - Otherwise (English / Latin-script prompt) → operate in English
(): reply in English, run the pipeline with
en.--lang en
Supported report languages are and (static, human-curated
packs). For a prompt in any other language, reply in that language but
generate the report in (closest supported), and say so in one line.
zhenenThe report-body language is locked at pipeline time via
— it cannot be changed at render
time, and narrative fills must be authored in the same language. See the
"Report language" section of for the exact rule.
Getting this wrong forces a full pipeline re-run (re-spends Surf credits),
so set it from the user's language up front.
forensic_pipeline.py --lang {zh|en}alpha/INSTRUCTIONS.md检测用户最新消息的语言,并全程使用该语言:包括对话回复和生成的报告。 这是强制要求,无需用户主动提出偏好。
- 消息包含CJK字符(、假名、谚文)→ 使用中文(
一-鿿):用中文回复,通过zh参数运行流水线。--lang zh - 其他情况(英文/拉丁字母输入)→ 使用英文():用英文回复,通过
en参数运行流水线。--lang en
支持的报告语言为和(静态人工整理包)。若输入为其他语言,用该语言回复,但生成英文报告(最接近的支持语言),并单独用一行说明此情况。
zhen报告正文语言在流水线运行时通过锁定——无法在渲染阶段更改,叙事内容填充必须使用相同语言。具体规则请参见中的“报告语言”章节。若设置错误,将需要重新运行整个流水线(消耗Surf积分),请从用户输入语言出发提前设置正确参数。
forensic_pipeline.py --lang {zh|en}alpha/INSTRUCTIONS.mdRouting table
路由表
| If the user input matches… | Sub-domain | Instructions file |
|---|---|---|
Raw 0x-prefixed 40-hex EVM CA ( | | |
Solana base58 CA (e.g. | | |
Ticker of a token currently on Binance Alpha ( | | |
| Natural-language phrasing about Alpha distribution / 内幕出货 / 链上派发 / quiet insider / chip structure | | |
Perp symbol (e.g. | | — coming soon |
| Bridge protocol name + audit intent | | — coming soon |
| HertzFlow's own contract address + diagnostic intent | | — coming soon |
| 用户输入匹配… | 子领域 | 说明文档 |
|---|---|---|
原始0x前缀的40位十六进制EVM合约地址(CA,如 | | |
Solana的base58格式合约地址(如 | | |
当前Binance Alpha上的代币代码(如 | | |
| 涉及Alpha筹码派发/内幕出货/链上派发/隐秘内幕方/筹码结构的自然语言表述 | | |
永续合约交易对符号(如 | | — 即将推出 |
| 跨链桥协议名称 + 审计需求 | | — 即将推出 |
| HertzFlow自身合约地址 + 诊断需求 | | — 即将推出 |
First action when invoked
触发后的首个操作
- Identify the sub-domain from the routing table above (default: ).
alpha - (paths are relative to this skill's install root — at runtime that's
cat <sub-domain>/INSTRUCTIONS.mdor the equivalent agent skill dir, NOT the repo root. So for the alpha sub-domain, read~/.claude/skills/hertzflow/.) Or read it via the agent's file-read tool) — that file is the full per-domain SKILL.md, including onboarding (Surf CLI install + API key prompt), prerequisites, 3-step workflow (alpha/INSTRUCTIONS.md→ LLM fill →forensic_pipeline.py), writable-slot guide, validator rules, output schema.render_report.py - Follow the instructions in that file verbatim. Do not re-derive the workflow from this router file — the per-domain instructions are authoritative and version-locked.
- 根据上述路由表确定子领域(默认:)。
alpha - 读取文件(路径相对于该技能的安装根目录——运行时为
<sub-domain>/INSTRUCTIONS.md或对应的Agent技能目录,而非代码仓库根目录。例如alpha子领域,读取~/.claude/skills/hertzflow/)。可通过Agent的文件读取工具完成——该文件是各子领域完整的SKILL.md文档,包含入门指导(Surf CLI安装+API密钥提示)、前置条件、三步工作流(alpha/INSTRUCTIONS.md→ LLM填充 →forensic_pipeline.py)、可编辑模块指南、验证规则、输出 schema。render_report.py - 严格遵循该文件中的说明操作。请勿从此路由文件推导工作流——各子领域的说明文档是权威且版本锁定的。
Why this skill is structured this way
该技能的架构设计原因
- Single slash : HertzFlow is one product brand covering multiple research domains (Alpha forensic, perp metrics, bridge audit, HertzFlow core). Users invoke one slash, the router handles dispatch.
/hertzflow - Description bait is wide: the description (above) tells the agent to auto-trigger on natural-language mentions of insider distribution, chip structure, etc. — like Surf, users don't have to type the slash explicitly.
- Sub-domain isolation: each sub-domain lives in its own folder with
its own , helpers, and version tracking. Adding
INSTRUCTIONS.mdlater does not require touchingperp/code.alpha/
- 单一命令入口:HertzFlow是覆盖多个研究领域(Alpha链上取证、永续合约指标、跨链桥审计、HertzFlow核心分析)的单一产品品牌。用户调用一个命令,路由系统处理分发。
/hertzflow - 触发范围广泛:上方描述告知Agent,当用户提及内幕筹码派发、筹码结构等自然语言内容时自动触发——与Surf类似,用户无需明确输入命令即可触发。
- 子领域隔离:每个子领域拥有独立文件夹,包含专属文档、辅助工具和版本跟踪。后续添加
INSTRUCTIONS.md子领域无需改动perp/代码。alpha/
Trust boundaries (apply to every sub-domain)
信任边界(适用于所有子领域)
- Pipeline (Python). Deterministic. Owns all SQL, on-chain reads, evidence-graph IDs. The only layer that touches data.
- LLM (any model). Fills narrative slots inside structured writable fields. Cannot write SQL. Cannot pick the verdict. Cannot decide thresholds.
- Validator. Rejects LLM writes outside the writable slots, references to data not in the evidence graph, duplicated boilerplate, and any attempt to overwrite locked pipeline output.
Every sub-domain's must respect these three boundaries.
INSTRUCTIONS.md- 流水线(Python):具有确定性。负责所有SQL编写、链上数据读取、证据图谱ID生成。是唯一接触数据的层级。
- LLM(任意模型):仅在结构化可编辑字段中填充叙事内容。无法编写SQL,无法判定结论,无法设置阈值。
- 验证器:拒绝LLM在可编辑模块外写入内容、引用证据图谱外的数据、重复模板内容,以及任何覆盖流水线锁定输出的尝试。
所有子领域的文档必须遵守这三个信任边界。
INSTRUCTIONS.mdUpgrade
升级
bash
npx skills update hertzflowThat pulls the latest revision from of .
Run after major releases ( → etc.). Current version is
in the frontmatter () and .
mainHertzFlow/hertzflow-skillsv0.9.xv1.0.0metadata.versionalpha/v06/helpers/_version.pybash
npx skills update hertzflow该命令将从仓库的分支拉取最新版本。请在重大版本发布后运行(如 → 等)。当前版本信息位于前置元数据()和文件中。
HertzFlow/hertzflow-skillsmainv0.9.xv1.0.0metadata.versionalpha/v06/helpers/_version.py