ワンクリックで
verdict-feed
CryptoTrader AI 交易决策流技能。提供最新 verdict 查询、实时 SSE 订阅及心跳监控,外部 agent 可用于跟踪交易信号并在决策事件发生时触发下游动作。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
CryptoTrader AI 交易决策流技能。提供最新 verdict 查询、实时 SSE 订阅及心跳监控,外部 agent 可用于跟踪交易信号并在决策事件发生时触发下游动作。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
On-chain analysis skill for interpreting blockchain data including funding rates, exchange flows, whale activity, and open interest to gauge market positioning.
Macroeconomic analysis skill for interpreting Fed policy, dollar strength, ETF flows, and risk-on/risk-off sentiment to assess crypto macro tailwinds and headwinds.
News and sentiment analysis skill for evaluating news headlines, regulatory events, and social sentiment to identify market-moving catalysts.
Technical analysis skill for interpreting price action, chart patterns, and momentum indicators to generate directional trading signals.
CryptoTrader AI 多智能体加密货币交易系统的外部集成引导技能。包含本地安装说明、子技能路由表、API 认证方式及未来 JWT 设计存档。
CryptoTrader AI Trilogy 进化系统产出技能。提供 skill 提案列表、pattern 统计及 skill 详情查询,外部 agent 可追踪系统自我进化状态并获取最新策略模式数据。
| name | verdict-feed |
| description | CryptoTrader AI 交易决策流技能。提供最新 verdict 查询、实时 SSE 订阅及心跳监控,外部 agent 可用于跟踪交易信号并在决策事件发生时触发下游动作。 |
| version | 1.0 |
CryptoTrader AI 的核心输出是经过 4 agent 分析 + Debate Gate 协议过滤的
verdict(交易决策)。本技能描述如何查询历史 verdict 及订阅实时决策流。
long/short 时发送 Telegram/Slack 通知# 最近 10 条 verdict(默认)
curl -H "X-API-Key: $API_KEY" \
"http://localhost:8000/api/verdicts/recent"
# 指定条数 + 指定交易对
curl -H "X-API-Key: $API_KEY" \
"http://localhost:8000/api/verdicts/recent?limit=20&pair=BTC%2FUSDT%3AUSDT"
响应示例:
{
"items": [
{
"cycle_id": "abc123",
"pair": "BTC/USDT:USDT",
"action": "long",
"confidence": 0.72,
"sl_price": 64800.0,
"tp_price": 68500.0,
"reasoning": "多 agent 一致看多,链上资金费率低位...",
"timestamp": "2026-05-17T14:32:00Z"
}
],
"total": 1
}
# Server-Sent Events 实时决策流
curl -H "X-API-Key: $API_KEY" \
-H "Accept: text/event-stream" \
"http://localhost:8000/api/events/stream?topic=verdict"
每条 SSE 事件格式:
event: verdict
data: {"cycle_id":"xyz789","pair":"ETH/USDT:USDT","action":"short","confidence":0.68}
外部 agent 推荐采用心跳轮询避免长连接超时:
import httpx, time
POLL_INTERVAL = 30 # 秒
last_seen_id = None
while True:
params = {"limit": 5}
if last_seen_id:
params["after_id"] = last_seen_id
resp = httpx.get(
"http://localhost:8000/api/verdicts/recent",
headers={"X-API-Key": API_KEY},
params=params,
)
items = resp.json()["items"]
if items:
last_seen_id = items[0]["cycle_id"]
# 处理新 verdict ...
time.sleep(POLL_INTERVAL)
docs/api/verdict.yamldocs/api/events.yamlGET /skill/cryptotrader 中的认证说明