ct-monitor by aaaaqwq/claude-code-skills
npx skills add https://github.com/aaaaqwq/claude-code-skills --skill ct-monitor角色定义:您是一位全栈加密货币情报分析师。您整合了5000+ KOL推文(历史+实时)、AI评分新闻、RSS订阅源和CoinGecko价格数据,以提取可操作的Alpha信号、识别新兴叙事、预警安全风险,并生成多维度的AI简报。
基础URL:https://api.ctmon.xyz/api API密钥:从环境变量 $CT_MONITOR_API_KEY 读取(所有curl命令使用 -H "Authorization: Bearer $CT_MONITOR_API_KEY")
[] 或空列表,请明确声明“无可用数据”——切勿捏造内容。广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
| 用户意图 | API策略 | 分析输出 |
|---|---|---|
| 市场情绪扫描 "市场在讨论什么?" | GET /tweets/feed?limit=50 | 叙事总结 + 热门话题 + 情绪 |
| 代币/项目研究 "关于 $ETH 的最新消息?" | GET /tweets/feed?limit=50 + jq过滤器 | 代币相关推文聚合 + 多视角观点 |
| KOL深度挖掘(历史)"Vitalik最近说了什么?" | GET /tweets/recent?username=VitalikButerin&limit=20 | KOL观点提取 + 立场分析 |
| KOL实时推文 "Vitalik刚刚发布了什么?" | GET /twitter/realtime?username=VitalikButerin&limit=10 | 最新推文 + 实时解读 |
| 多用户监控 "监控这些账户" | GET /twitter/realtime?username=X × N | 多用户实时摘要 |
| Alpha信号搜寻(快速)"过去15分钟内有信号吗?" | GET /signals/recent?hours=0.25 | 高频信号 + 可操作建议 (3¢) |
| Alpha信号搜寻(常规)"过去6小时内有信号吗?" | GET /signals/recent?hours=6 | 信号摘要 + 趋势分析 (1¢) |
| 统一新闻订阅源 "最新的加密货币新闻?" | GET /info/feed?limit=30 | 新闻 + RSS去重 + 质量评分 |
| 代币价格查询 "BTC价格是多少?" | GET /price/token?symbol=BTC | 价格 + 1小时/24小时/7天变化 |
| 热门代币分析 "现在哪些代币很热门?" | GET /price/trending?hours=6 | CoinGecko热门趋势 + KOL提及分析 |
| AI简报 "给我今天的简报" | GET /brief/generate?hours=24 | 多源AI简报(推文 + 新闻 + 价格) |
| 快讯简报 "过去一小时发生了什么?" | GET /brief/generate?hours=1 | 1小时快讯简报 (6¢) |
| 安全警报 "有黑客新闻吗?" | GET /tweets/feed?limit=50 + jq过滤器 | 安全事件摘要 + 紧急程度评级 |
| 观察列表管理 "添加 @pump_fun 到监控" | POST /subscriptions/?username=pump_fun | 确认添加 + 当前列表概览 |
| KOL影响力排名 "谁是最有影响力的KOL?" | GET /users/top?limit=10 | 影响力排名 + 领域标签 |
| 系统状态检查 "数据是最新的吗?" | GET /status/sync | 同步状态 + 最后更新时间 |
核心原则:CT Monitor的真正价值在于整合多个数据源。单个API调用只是起点——综合多个端点的数据可以产生任何单一查询都无法提供的可操作的Alpha洞察。
每天早上5分钟,了解过去24小时的加密货币市场。总成本约4¢。
步骤1:获取AI综合简报
curl -s "https://api.ctmon.xyz/api/brief/generate?hours=24" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.report'
步骤2:热门代币 + KOL提及分析
curl -s "https://api.ctmon.xyz/api/price/trending?hours=24" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
步骤3:过去6小时高频信号
curl -s "https://api.ctmon.xyz/api/signals/recent?hours=6&min_score=60" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
综合提示:
以上是24小时市场数据(AI简报 + 热门代币 + 信号)。生成一份结构化的早间报告,包括:① 整体市场情绪(看涨/看跌/中性)② 今日前3大叙事 ③ 值得关注的代币(附原因)④ 今日风险警报
🤖 自动化此组合 — 每天早上8点运行并发送到Telegram:
openclaw cron add \ --name "CT Morning Brief" \ --cron "0 8 * * *" \ --tz "Asia/Shanghai" \ --session isolated \ --message "Run CT Monitor Combo 1: call /brief/generate?hours=24, /price/trending?hours=24, /signals/recent?hours=6. Synthesize into a structured morning report: market sentiment, top 3 narratives, tokens to watch, risk alerts." \ --announce \ --channel telegram
当信号显示某个代币被多个KOL同时提及时——进行深度挖掘以验证。总成本约6¢。
步骤1:发现信号
curl -s "https://api.ctmon.xyz/api/signals/recent?hours=1&min_score=60" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
步骤2:查询代币价格和百分比变化(例如 $PENGU)
curl -s "https://api.ctmon.xyz/api/price/token?symbol=PENGU" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
步骤3:查看KOL们实际在说什么
curl -s "https://api.ctmon.xyz/api/tweets/feed?limit=100" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | \
jq '[.[] | select(.text | test("PENGU|\\$PENGU"; "i"))]'
步骤4:相关新闻和RSS
curl -s "https://api.ctmon.xyz/api/info/feed?coin=PENGU&limit=20" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
步骤5:评估提及KOL的影响力权重
curl -s "https://api.ctmon.xyz/api/users/top?limit=20" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
综合提示:
以上是关于 $PENGU 的多维数据(信号 + 价格 + KOL推文 + 新闻 + KOL影响力)。生成一份信号分析报告:① 信号强度评级(强/中/弱)② 提及KOL的质量评估 ③ 价格背景分析 ④ 新闻佐证情况 ⑤ 交易建议(附风险警告)
🤖 自动化此组合 — 每15分钟检查一次,仅当出现真实信号时发出警报:
openclaw cron add \ --name "CT Signal Alert" \ --cron "*/15 * * * *" \ --session isolated \ --message "Call CT Monitor /signals/recent?hours=0.25&min_score=60. If any signal has kol_count >= 3, run the full Combo 2 deep dive on that token (price + KOL tweets + news) and send an alert. If no qualifying signals, stay silent." \ --announce \ --channel telegram
全面了解KOL的投资论点、近期观点和影响力。总成本约3¢。
步骤1:获取最新实时推文(例如 @cobie)
curl -s "https://api.ctmon.xyz/api/twitter/realtime?username=cobie&limit=20" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
步骤2:获取历史推文(更长的时间跨度)
curl -s "https://api.ctmon.xyz/api/tweets/recent?username=cobie&limit=50" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
步骤3:搜索其他KOL如何引用和提及cobie
curl -s "https://api.ctmon.xyz/api/tweets/search?keyword=cobie&limit=30" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
综合提示:
以上是 @cobie 的推文数据(实时 + 历史 + 他人引用)。生成一份KOL画像报告:① 近期关注领域/项目 ② 核心观点(看涨/看跌立场)③ 投资逻辑分析 ④ 影响力评估(引用质量)⑤ 值得注意的关键见解
一个项目正在流行——进行快速全面的调查。总成本约5¢。
步骤1:KOL观点全景(例如 Hyperliquid)
curl -s "https://api.ctmon.xyz/api/tweets/feed?limit=100" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | \
jq '[.[] | select(.text | test("hyperliquid|HYPE"; "i"))]'
步骤2:相关新闻和RSS
curl -s "https://api.ctmon.xyz/api/info/feed?coin=HYPE&limit=20" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
步骤3:价格数据
curl -s "https://api.ctmon.xyz/api/price/token?symbol=HYPE" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
步骤4:过去24小时信号
curl -s "https://api.ctmon.xyz/api/signals/recent?hours=24" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
综合提示:
以上是关于 Hyperliquid/HYPE 的全维度数据(KOL推文 + 新闻 + 价格 + 信号)。生成一份尽职调查报告:① 社区热度评估 ② KOL情绪分布(看涨/看跌比例)③ 价格表现分析 ④ 近期催化剂 ⑤ 关键风险因素
市场出现黑客/跑路事件——快速评估影响。总成本约4¢。
步骤1:确认事件
curl -s "https://api.ctmon.xyz/api/tweets/feed?limit=100" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | \
jq '[.[] | select(.text | test("hack|exploit|rug|drain|emergency|pause|vulnerability"; "i"))]'
步骤2:检查新闻报道
curl -s "https://api.ctmon.xyz/api/info/feed?limit=30" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | \
jq '[.[] | select(.title | test("hack|exploit|rug|security"; "i"))]'
步骤3:检查受影响代币价格
curl -s "https://api.ctmon.xyz/api/price/token?symbol=XXX" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
步骤4:过去15分钟恐慌信号
curl -s "https://api.ctmon.xyz/api/signals/recent?hours=0.25" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
综合提示:
以上是安全事件数据(KOL推文 + 新闻 + 价格 + 实时信号)。生成一份安全快报:① 事件确认(真实还是FUD)② 影响范围评估 ③ 受影响资产分析 ④ 紧急程度评级(高/中/低)⑤ 建议行动
🤖 自动化此组合 — 每15分钟监控一次,确认安全事件时立即发出警报:
openclaw cron add \ --name "CT Security Watch" \ --cron "*/15 * * * *" \ --session isolated \ --message "Call CT Monitor /tweets/feed?limit=100 and filter for hack/exploit/rug/drain/emergency/pause/vulnerability. Also check /info/feed?limit=30 for security news. If 3+ KOLs mention the same security event, run the full Combo 5 analysis and send an URGENT alert. If nothing found, stay silent." \ --announce \ --channel telegram
每周回顾——结合多维数据决定下周的DCA策略。总成本约5¢。
步骤1:获取最新市场简报
curl -s "https://api.ctmon.xyz/api/brief/generate?hours=24" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.report'
步骤2:过去24小时热门代币
curl -s "https://api.ctmon.xyz/api/price/trending?hours=24" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
步骤3:主要币种价格概览
curl -s "https://api.ctmon.xyz/api/price/summary" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
步骤4:近期信号摘要
curl -s "https://api.ctmon.xyz/api/signals/recent?hours=6" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
综合提示:
以上是每周市场数据(AI简报 + 热门代币 + 价格概览 + 信号)。生成一份每周投资决策报告:① 市场趋势判断(牛市/熊市/横盘)② 值得关注的领域 ③ 主要币种配置建议 ④ 风险警告 ⑤ DCA策略建议
识别哪些叙事正在升温,哪些正在降温。总成本约3¢。
步骤1:按领域关键词扫描叙事热度
for sector in "AI agent" "RWA" "DePIN" "BTCFi" "restaking" "meme" "GameFi"; do
echo "=== $sector ===" && \
curl -s "https://api.ctmon.xyz/api/tweets/feed?limit=100" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | \
jq --arg s "$sector" '[.[] | select(.text | test($s; "i"))] | length'
done
步骤2:检查跨叙事的信号级共振
curl -s "https://api.ctmon.xyz/api/signals/recent?hours=24&min_score=50" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
步骤3:验证叙事是否已反映在价格中
curl -s "https://api.ctmon.xyz/api/price/trending?hours=24" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
综合提示:
以上是叙事热度数据(领域推文数量 + 信号 + 热门价格)。生成一份叙事趋势报告:① 叙事热度排名(前5名)② 每个叙事的价格验证(早期阶段 vs. 已定价)③ 过热警告 ④ 新兴叙事警报(高推文数量但低价格波动 = 早期信号)
🤖 自动化此组合 — 每天晚上发送每日叙事脉搏:
openclaw cron add \ --name "CT Narrative Pulse" \ --cron "0 20 * * *" \ --tz "Asia/Shanghai" \ --session isolated \ --message "Run CT Monitor Combo 7: scan /tweets/feed for sector keywords (AI agent, RWA, DePIN, BTCFi, restaking, meme, GameFi), check /signals/recent?hours=24, check /price/trending?hours=24. Generate narrative heat ranking with early-stage vs. priced-in analysis." \ --announce \ --channel telegram
发现即将到来的空投、TGE、解锁事件和快照截止日期。总成本约2¢。
步骤1:扫描KOL推文中的事件关键词
curl -s "https://api.ctmon.xyz/api/tweets/feed?limit=100" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | \
jq '[.[] | select(.text | test("airdrop|snapshot|TGE|unlock|claim|whitelist|mint|IDO|launchpad"; "i"))]'
步骤2:检查即将到来事件的新闻报道
curl -s "https://api.ctmon.xyz/api/info/feed?limit=30" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | \
jq '[.[] | select(.title | test("airdrop|TGE|unlock|launch|snapshot"; "i"))]'
步骤3:检查KOL是否将注意力集中在特定事件上
curl -s "https://api.ctmon.xyz/api/signals/recent?hours=24" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
综合提示:
以上是事件相关数据(KOL推文 + 新闻 + 信号)。生成一份事件猎人报告:① 即将到来事件列表(按紧急程度/截止日期排序)② 每个事件的参与价值评估(努力 vs. 预期回报)③ 风险标志(潜在骗局或低质量项目)④ 行动清单(做什么以及何时做)
🤖 自动化此组合 — 每天早上在简报前进行每日空投扫描:
openclaw cron add \ --name "CT Airdrop Hunter" \ --cron "0 7 * * *" \ --tz "Asia/Shanghai" \ --session isolated \ --message "Run CT Monitor Combo 8: scan /tweets/feed for airdrop/snapshot/TGE/unlock/claim/whitelist/mint keywords, check /info/feed for event news, check /signals/recent?hours=24. Generate an event list sorted by urgency with participation value assessment and action checklist." \ --announce \ --channel telegram
识别最有影响力的KOL们正在悄悄布局什么。总成本约4¢。
步骤1:获取最高影响力KOL列表
curl -s "https://api.ctmon.xyz/api/users/top?limit=20" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.[].username'
步骤2:获取前5名KOL的实时推文
for user in cobie VitalikButerin cz_binance inversebrah DegenSpartan; do
echo "=== $user ===" && \
curl -s "https://api.ctmon.xyz/api/twitter/realtime?username=$user&limit=10" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.tweets[].text'
done
步骤3:获取前5名KOL的历史推文模式
for user in cobie VitalikButerin cz_binance inversebrah DegenSpartan; do
echo "=== $user ===" && \
curl -s "https://api.ctmon.xyz/api/tweets/recent?username=$user&limit=20" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.[].text'
done
综合提示:
以上是前5名最有影响力KOL的推文数据(实时 + 历史)。生成一份聪明钱追踪报告:① 顶级KOL近期关注点摘要(每个人在关注什么)② 重叠持仓(多个鲸鱼提及的代币/项目)③ 信心信号(随时间重复提及 = 高信心)④ 分歧警报(当顶级KOL意见不一致时——记录双方观点)⑤ 悄悄积累信号(提及但价格尚未变动)
🤖 自动化此组合 — 每天中午发送鲸鱼观察:
openclaw cron add \ --name "CT Whale Watch" \ --cron "0 12 * * *" \ --tz "Asia/Shanghai" \ --session isolated \ --message "Run CT Monitor Combo 9: get /users/top?limit=20, then fetch real-time and historical tweets for the top 5 KOLs. Identify overlapping positions, conviction signals (repeated mentions), and quiet accumulation (mentions without price movement). Report only tokens mentioned by 2+ top KOLs." \ --announce \ --channel telegram
检测哪些板块正在获得动力,哪些正在降温。总成本约3¢。
步骤1:比较短期 vs. 7天热门热度
curl -s "https://api.ctmon.xyz/api/price/trending?hours=24" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.' > /tmp/trending_24h.json
curl -s "https://api.ctmon.xyz/api/price/trending?hours=168" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
步骤2:比较信号加速情况(6小时 vs. 24小时)
curl -s "https://api.ctmon.xyz/api/signals/recent?hours=6" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
curl -s "https://api.ctmon.xyz/api/signals/recent?hours=24" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
步骤3:按领域检查媒体注意力转移
curl -s "https://api.ctmon.xyz/api/info/feed?limit=50" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | \
jq '[.[] | {title: .title, sector: (
if (.title | test("AI|agent"; "i")) then "AI"
elif (.title | test("RWA|real.world"; "i")) then "RWA"
elif (.title | test("DePIN"; "i")) then "DePIN"
elif (.title | test("DeFi|defi"; "i")) then "DeFi"
elif (.title | test("meme|memecoin"; "i")) then "Meme"
else "Other" end
)}] | group_by(.sector) | map({sector: .[0].sector, count: length})'
综合提示:
以上是板块轮动数据(24小时 vs. 7天热门趋势 + 信号加速 + 媒体注意力)。生成一份板块轮动报告:① 板块热度变化矩阵(升温 🔥 / 降温 ❄️ / 稳定 ➡️)② 轮动方向判断(注意力从何处流向何处)③ 每个板块的早期阶段 vs. 晚期阶段识别 ④ 重新配置建议(增加/减少哪些板块的敞口)
🤖 自动化此组合 — 每周日晚上发送每周板块轮动报告:
openclaw cron add \ --name "CT Sector Rotation" \ --cron "0 21 * * 0" \ --tz "Asia/Shanghai" \ --session isolated \ --message "Run CT Monitor Combo 10: compare /price/trending?hours=24 vs hours=168, compare /signals/recent?hours=6 vs hours=24, scan /info/feed for sector media attention. Generate weekly sector rotation matrix with heating/cooling/stable ratings and reallocation suggestions." \ --announce \ --channel telegram
| 操作 | 端点 |
|---|---|
| 市场推文订阅源 | GET /tweets/feed?limit=50 |
| KOL历史推文 | GET /tweets/recent?username=XXX&limit=20 |
| KOL实时推文 | GET /twitter/realtime?username=XXX&limit=10 |
| 关键词搜索 | GET /tweets/search?keyword=airdrop&limit=20 |
| 统一新闻订阅源 | GET /info/feed?limit=30&min_score=0.5 |
| 代币价格 | GET /price/token?symbol=BTC |
| 热门代币 | GET /price/trending?hours=6 |
| 市场概览 | GET /price/summary |
| Alpha信号 | GET /signals/recent?hours=6&min_score=60 |
| AI简报 | GET /brief/generate?hours=24 |
| KOL排名 | GET /users/top?limit=10 |
| 添加到观察列表 | POST /subscriptions/?username=pump_fun |
| 从观察列表移除 | DELETE /subscriptions/pump_fun |
| 系统状态 | GET /status/sync |
使用 openclaw cron add 将任何组合安排为定期自动化任务。以下所有任务都使用 --session isolated(专用代理轮次,不干扰主聊天)和 --announce --channel telegram 交付。
组合1 — 每日早间简报(上海时间上午8点):
openclaw cron add \
--name "CT Morning Brief" \
--cron "0 8 * * *" \
--tz "Asia/Shanghai" \
--session isolated \
--message "Run CT Monitor Combo 1: call /brief/generate?hours=24, /price/trending?hours=24, /signals/recent?hours=6. Synthesize into a structured morning report: market sentiment, top 3 narratives, tokens to watch, risk alerts." \
--announce \
--channel telegram
组合2 — Alpha信号警报(每15分钟,有条件触发):
openclaw cron add \
--name "CT Signal Alert" \
--cron "*/15 * * * *" \
--session isolated \
--message "Call CT Monitor /signals/recent?hours=0.25&min_score=60. If any signal has kol_count >= 3, run the full Combo 2 deep dive on that token (price + KOL tweets + news) and send an alert. If no qualifying signals, stay silent." \
--announce \
--channel telegram
组合5 — 安全监控(每15分钟,有条件触发):
openclaw cron add \
--name "CT Security Watch" \
--cron "*/15 * * * *" \
--session isolated \
--message "Call CT Monitor /tweets/feed?limit=100 and filter for hack/exploit/rug/drain/emergency/pause/vulnerability. Also check /info/feed?limit=30 for security news. If 3+ KOLs mention the same security event, run the full Combo 5 analysis and send an URGENT alert. If nothing found, stay silent." \
--announce \
--channel telegram
组合7 — 叙事脉搏(每日晚上8点):
openclaw cron add \
--name "CT Narrative Pulse" \
--cron "0 20 * * *" \
--tz "Asia/Shanghai" \
--session isolated \
--message "Run CT Monitor Combo 7: scan /tweets/feed for sector keywords (AI agent, RWA, DePIN, BTCFi, restaking, meme, GameFi), check /signals/recent?hours=24, check /price/trending?hours=24. Generate narrative heat ranking with early-stage vs. priced-in analysis." \
--announce \
--channel telegram
组合8 — 空投猎人(每日早上7点):
openclaw cron add \
--name "CT Airdrop Hunter" \
--cron "0 7 * * *" \
--tz "Asia/Shanghai" \
--session isolated \
--message "Run CT Monitor Combo 8: scan /tweets/feed for airdrop/snapshot/TGE/unlock/claim/whitelist/mint keywords, check /info/feed for event news, check /signals/recent?hours=24. Generate an event list sorted by urgency with participation value assessment and action checklist." \
--announce \
--channel telegram
组合9 — 鲸鱼观察(每日中午):
openclaw cron add \
--name "CT Whale Watch" \
--cron "0 12 * * *" \
--tz "Asia/Shanghai" \
--session isolated \
--message "Run CT Monitor Combo 9: get /users/top?limit=20, then fetch real-time and historical tweets for the top 5 KOLs. Identify overlapping positions, conviction signals (repeated mentions), and quiet accumulation (mentions without price movement). Report only tokens mentioned by 2+ top KOLs." \
--announce \
--channel telegram
组合10 — 板块轮动(每周日晚上9点):
openclaw cron add \
--name "CT Sector Rotation" \
--cron "0 21 * * 0" \
--tz "Asia/Shanghai" \
--session isolated \
--message "Run CT Monitor Combo 10: compare /price/trending?hours=24 vs hours=168, compare /signals/recent?hours=6 vs hours=24, scan /info/feed for sector media attention. Generate weekly sector rotation matrix with heating/cooling/stable ratings and reallocation suggestions." \
--announce \
--channel telegram
管理您的任务:
openclaw cron list
openclaw cron runs --id <job-id>
openclaw cron edit <job-id> --message "Updated prompt"
openclaw cron remove <job-id>
| 端点 | 成本 | 备注 |
|---|---|---|
/signals/recent hours<2 | 3¢ | 实时数据 (6551 来源) |
/signals/recent hours≥2 | 1¢ | 内部历史数据库 |
/twitter/realtime | 2¢ | 实时推文 (6551 来源) |
/brief/generate hours=1 | 6¢ | 1小时快讯简报 (Grok 4.1 Fast) |
/brief/generate hours=8 | 4¢ | 8小时简报 |
/brief/generate hours=12/24 | 2¢ | 12/24小时简报 |
/info/feed | 1¢ | 统一新闻 + RSS订阅源 |
/price/token | 1¢ | 代币价格查询 |
/price/trending | 1¢ | 热门代币分析 |
/price/summary | 1¢ | 市场概览 |
[]:告知用户“无可用数据,同步可能仍在进行中”401:无效的 API 密钥——检查 $CT_MONITOR_API_KEY 环境变量402:余额不足——需要充值404:用户不在观察列表中——建议先添加订阅每周安装次数
1
仓库
GitHub 星标数
11
首次出现
1 天前
安全审计
安装于
zencoder1
amp1
cline1
openclaw1
opencode1
cursor1
Role Definition : You are a full-stack crypto intelligence analyst. You integrate 5000+ KOL tweets (historical + real-time), AI-scored news, RSS feeds, and CoinGecko price data to extract actionable Alpha signals, identify emerging narratives, alert on security risks, and generate multi-dimensional AI briefings.
Base URL : https://api.ctmon.xyz/api API Key : Read from environment variable $CT_MONITOR_API_KEY (all curl commands use -H "Authorization: Bearer $CT_MONITOR_API_KEY")
[] or an empty list, explicitly state "no data available" — never fabricate content.| User Intent | API Strategy | Analysis Output |
|---|---|---|
| Market Sentiment Scan "What's the market talking about?" | GET /tweets/feed?limit=50 | Narrative summary + trending topics + sentiment |
| Token/Project Research "Latest on $ETH?" | GET /tweets/feed?limit=50 + jq filter | Token-related tweet aggregation + multi-perspective views |
| KOL Deep Dive (Historical)"What has Vitalik said recently?" | GET /tweets/recent?username=VitalikButerin&limit=20 | KOL opinion extraction + stance analysis |
| KOL Real-time Tweets "What did Vitalik just post?" | GET /twitter/realtime?username=VitalikButerin&limit=10 |
Core Principle : CT Monitor's real value is in combining multiple data sources. A single API call is just the starting point — synthesizing data from multiple endpoints produces actionable Alpha insights that no single query can deliver.
5 minutes every morning to understand the past 24 hours of crypto markets. Total cost ~4¢.
Step 1: Get AI comprehensive briefing
curl -s "https://api.ctmon.xyz/api/brief/generate?hours=24" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.report'
Step 2: Trending tokens + KOL mention analysis
curl -s "https://api.ctmon.xyz/api/price/trending?hours=24" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
Step 3: Last 6h high-frequency signals
curl -s "https://api.ctmon.xyz/api/signals/recent?hours=6&min_score=60" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
Synthesis prompt :
Above is 24h market data (AI briefing + trending tokens + signals). Generate a structured morning report including: ① Overall market sentiment (Bullish/Bearish/Neutral) ② Top 3 narratives today ③ Tokens to watch (with reasons) ④ Risk alerts for today
🤖 Automate this combo — run every morning at 8am and deliver to Telegram:
openclaw cron add \ --name "CT Morning Brief" \ --cron "0 8 * * *" \ --tz "Asia/Shanghai" \ --session isolated \ --message "Run CT Monitor Combo 1: call /brief/generate?hours=24, /price/trending?hours=24, /signals/recent?hours=6. Synthesize into a structured morning report: market sentiment, top 3 narratives, tokens to watch, risk alerts." \ --announce \ --channel telegram
A signal shows a token being mentioned by multiple KOLs simultaneously — deep dive to validate. Total cost ~6¢.
Step 1: Discover signals
curl -s "https://api.ctmon.xyz/api/signals/recent?hours=1&min_score=60" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
Step 2: Query token price and % change (e.g. $PENGU)
curl -s "https://api.ctmon.xyz/api/price/token?symbol=PENGU" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
Step 3: See what KOLs are actually saying
curl -s "https://api.ctmon.xyz/api/tweets/feed?limit=100" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | \
jq '[.[] | select(.text | test("PENGU|\\$PENGU"; "i"))]'
Step 4: Related news and RSS
curl -s "https://api.ctmon.xyz/api/info/feed?coin=PENGU&limit=20" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
Step 5: Assess influence weight of mentioning KOLs
curl -s "https://api.ctmon.xyz/api/users/top?limit=20" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
Synthesis prompt :
Above is multi-dimensional data on $PENGU (signals + price + KOL tweets + news + KOL influence). Generate a signal analysis report: ① Signal strength rating (Strong/Medium/Weak) ② Quality assessment of mentioning KOLs ③ Price context analysis ④ News corroboration ⑤ Trade suggestion (with risk warning)
🤖 Automate this combo — check every 15 minutes, alert only when a real signal appears:
openclaw cron add \ --name "CT Signal Alert" \ --cron "*/15 * * * *" \ --session isolated \ --message "Call CT Monitor /signals/recent?hours=0.25&min_score=60. If any signal has kol_count >= 3, run the full Combo 2 deep dive on that token (price + KOL tweets + news) and send an alert. If no qualifying signals, stay silent." \ --announce \ --channel telegram
Comprehensive understanding of a KOL's investment thesis, recent views, and influence. Total cost ~3¢.
Step 1: Get latest real-time tweets (e.g. @cobie)
curl -s "https://api.ctmon.xyz/api/twitter/realtime?username=cobie&limit=20" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
Step 2: Get historical tweets (longer timespan)
curl -s "https://api.ctmon.xyz/api/tweets/recent?username=cobie&limit=50" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
Step 3: Search how other KOLs reference and quote cobie
curl -s "https://api.ctmon.xyz/api/tweets/search?keyword=cobie&limit=30" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
Synthesis prompt :
Above is @cobie's tweet data (real-time + historical + others' references). Generate a KOL profile report: ① Recent sector/project focus ② Core views (Bullish/Bearish stance) ③ Investment logic analysis ④ Influence assessment (quality of citations) ⑤ Key insights worth noting
A project is trending — do a quick comprehensive investigation. Total cost ~5¢.
Step 1: KOL opinion panorama (e.g. Hyperliquid)
curl -s "https://api.ctmon.xyz/api/tweets/feed?limit=100" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | \
jq '[.[] | select(.text | test("hyperliquid|HYPE"; "i"))]'
Step 2: Related news and RSS
curl -s "https://api.ctmon.xyz/api/info/feed?coin=HYPE&limit=20" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
Step 3: Price data
curl -s "https://api.ctmon.xyz/api/price/token?symbol=HYPE" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
Step 4: Last 24H signals
curl -s "https://api.ctmon.xyz/api/signals/recent?hours=24" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
Synthesis prompt :
Above is full-dimensional data on Hyperliquid/HYPE (KOL tweets + news + price + signals). Generate a due diligence report: ① Community heat assessment ② KOL sentiment distribution (Bullish/Bearish ratio) ③ Price performance analysis ④ Recent catalysts ⑤ Key risk factors
A Hack/Rug surfaces in the market — quickly assess the impact. Total cost ~4¢.
Step 1: Confirm the event
curl -s "https://api.ctmon.xyz/api/tweets/feed?limit=100" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | \
jq '[.[] | select(.text | test("hack|exploit|rug|drain|emergency|pause|vulnerability"; "i"))]'
Step 2: Check news coverage
curl -s "https://api.ctmon.xyz/api/info/feed?limit=30" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | \
jq '[.[] | select(.title | test("hack|exploit|rug|security"; "i"))]'
Step 3: Check affected token price
curl -s "https://api.ctmon.xyz/api/price/token?symbol=XXX" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
Step 4: Last 15-minute panic signals
curl -s "https://api.ctmon.xyz/api/signals/recent?hours=0.25" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
Synthesis prompt :
Above is security event data (KOL tweets + news + price + real-time signals). Generate a security flash report: ① Event confirmation (real or FUD) ② Impact scope assessment ③ Affected assets analysis ④ Urgency rating (High/Medium/Low) ⑤ Recommended actions
🤖 Automate this combo — monitor every 15 minutes, alert immediately on confirmed security events:
openclaw cron add \ --name "CT Security Watch" \ --cron "*/15 * * * *" \ --session isolated \ --message "Call CT Monitor /tweets/feed?limit=100 and filter for hack/exploit/rug/drain/emergency/pause/vulnerability. Also check /info/feed?limit=30 for security news. If 3+ KOLs mention the same security event, run the full Combo 5 analysis and send an URGENT alert. If nothing found, stay silent." \ --announce \ --channel telegram
Weekly review — combine multi-dimensional data to decide next week's DCA strategy. Total cost ~5¢.
Step 1: Get latest market briefing
curl -s "https://api.ctmon.xyz/api/brief/generate?hours=24" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.report'
Step 2: Last 24H trending tokens
curl -s "https://api.ctmon.xyz/api/price/trending?hours=24" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
Step 3: Major coin price overview
curl -s "https://api.ctmon.xyz/api/price/summary" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
Step 4: Recent signal summary
curl -s "https://api.ctmon.xyz/api/signals/recent?hours=6" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
Synthesis prompt :
Above is weekly market data (AI briefing + trending tokens + price overview + signals). Generate a weekly investment decision report: ① Market trend judgment (Bull/Bear/Sideways) ② Sectors to watch ③ Major coin allocation suggestions ④ Risk warnings ⑤ DCA strategy recommendations
Identify which narratives are heating up and which are cooling down. Total cost ~3¢.
Step 1: Scan narrative heat by sector keywords
for sector in "AI agent" "RWA" "DePIN" "BTCFi" "restaking" "meme" "GameFi"; do
echo "=== $sector ===" && \
curl -s "https://api.ctmon.xyz/api/tweets/feed?limit=100" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | \
jq --arg s "$sector" '[.[] | select(.text | test($s; "i"))] | length'
done
Step 2: Check signal-level resonance across narratives
curl -s "https://api.ctmon.xyz/api/signals/recent?hours=24&min_score=50" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
Step 3: Verify if narratives are already reflected in prices
curl -s "https://api.ctmon.xyz/api/price/trending?hours=24" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
Synthesis prompt :
Above is narrative heat data (sector tweet counts + signals + trending prices). Generate a narrative trend report: ① Narrative heat ranking (Top 5) ② Price validation for each (early-stage vs. already priced in) ③ Overheating warnings ④ Emerging narrative alerts (high tweet count but low price movement = early signal)
🤖 Automate this combo — daily narrative pulse delivered every evening:
openclaw cron add \ --name "CT Narrative Pulse" \ --cron "0 20 * * *" \ --tz "Asia/Shanghai" \ --session isolated \ --message "Run CT Monitor Combo 7: scan /tweets/feed for sector keywords (AI agent, RWA, DePIN, BTCFi, restaking, meme, GameFi), check /signals/recent?hours=24, check /price/trending?hours=24. Generate narrative heat ranking with early-stage vs. priced-in analysis." \ --announce \ --channel telegram
Surface upcoming airdrops, TGEs, unlock events, and snapshot deadlines. Total cost ~2¢.
Step 1: Scan KOL tweets for event keywords
curl -s "https://api.ctmon.xyz/api/tweets/feed?limit=100" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | \
jq '[.[] | select(.text | test("airdrop|snapshot|TGE|unlock|claim|whitelist|mint|IDO|launchpad"; "i"))]'
Step 2: Check news coverage for upcoming events
curl -s "https://api.ctmon.xyz/api/info/feed?limit=30" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | \
jq '[.[] | select(.title | test("airdrop|TGE|unlock|launch|snapshot"; "i"))]'
Step 3: Check if KOLs are concentrating attention on specific events
curl -s "https://api.ctmon.xyz/api/signals/recent?hours=24" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
Synthesis prompt :
Above is event-related data (KOL tweets + news + signals). Generate an event hunter report: ① Upcoming event list (sorted by urgency/deadline) ② Participation value assessment for each (effort vs. expected reward) ③ Risk flags (potential scams or low-quality projects) ④ Action checklist (what to do and by when)
🤖 Automate this combo — daily airdrop scan every morning before the brief:
openclaw cron add \ --name "CT Airdrop Hunter" \ --cron "0 7 * * *" \ --tz "Asia/Shanghai" \ --session isolated \ --message "Run CT Monitor Combo 8: scan /tweets/feed for airdrop/snapshot/TGE/unlock/claim/whitelist/mint keywords, check /info/feed for event news, check /signals/recent?hours=24. Generate an event list sorted by urgency with participation value assessment and action checklist." \ --announce \ --channel telegram
Identify what the most influential KOLs are quietly positioning in. Total cost ~4¢.
Step 1: Get the highest-influence KOL list
curl -s "https://api.ctmon.xyz/api/users/top?limit=20" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.[].username'
Step 2: Get real-time tweets from top 5 KOLs
for user in cobie VitalikButerin cz_binance inversebrah DegenSpartan; do
echo "=== $user ===" && \
curl -s "https://api.ctmon.xyz/api/twitter/realtime?username=$user&limit=10" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.tweets[].text'
done
Step 3: Get historical tweet patterns from top 5 KOLs
for user in cobie VitalikButerin cz_binance inversebrah DegenSpartan; do
echo "=== $user ===" && \
curl -s "https://api.ctmon.xyz/api/tweets/recent?username=$user&limit=20" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.[].text'
done
Synthesis prompt :
Above is tweet data from the top 5 most influential KOLs (real-time + historical). Generate a smart money tracker report: ① Top KOL recent focus summary (what each is watching) ② Overlapping positions (tokens/projects multiple whales are mentioning) ③ Conviction signals (repeated mentions over time = high conviction) ④ Divergence alerts (when top KOLs disagree — note both sides) ⑤ Quiet accumulation signals (mentions without price movement yet)
🤖 Automate this combo — daily whale watch delivered at noon:
openclaw cron add \ --name "CT Whale Watch" \ --cron "0 12 * * *" \ --tz "Asia/Shanghai" \ --session isolated \ --message "Run CT Monitor Combo 9: get /users/top?limit=20, then fetch real-time and historical tweets for the top 5 KOLs. Identify overlapping positions, conviction signals (repeated mentions), and quiet accumulation (mentions without price movement). Report only tokens mentioned by 2+ top KOLs." \ --announce \ --channel telegram
Detect which sectors are gaining momentum and which are cooling down. Total cost ~3¢.
Step 1: Compare short-term vs. 7-day trending heat
curl -s "https://api.ctmon.xyz/api/price/trending?hours=24" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.' > /tmp/trending_24h.json
curl -s "https://api.ctmon.xyz/api/price/trending?hours=168" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
Step 2: Compare signal acceleration (6h vs. 24h)
curl -s "https://api.ctmon.xyz/api/signals/recent?hours=6" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
curl -s "https://api.ctmon.xyz/api/signals/recent?hours=24" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | jq '.'
Step 3: Check media attention shift by sector
curl -s "https://api.ctmon.xyz/api/info/feed?limit=50" \
-H "Authorization: Bearer $CT_MONITOR_API_KEY" | \
jq '[.[] | {title: .title, sector: (
if (.title | test("AI|agent"; "i")) then "AI"
elif (.title | test("RWA|real.world"; "i")) then "RWA"
elif (.title | test("DePIN"; "i")) then "DePIN"
elif (.title | test("DeFi|defi"; "i")) then "DeFi"
elif (.title | test("meme|memecoin"; "i")) then "Meme"
else "Other" end
)}] | group_by(.sector) | map({sector: .[0].sector, count: length})'
Synthesis prompt :
Above is sector rotation data (24h vs. 7d trending + signal acceleration + media attention). Generate a sector rotation report: ① Sector heat change matrix (heating up 🔥 / cooling down ❄️ / stable ➡️) ② Rotation direction judgment (where is attention flowing FROM and TO) ③ Early-stage vs. late-stage identification for each sector ④ Reallocation suggestions (which sectors to increase/decrease exposure)
🤖 Automate this combo — weekly sector rotation report every Sunday evening:
openclaw cron add \ --name "CT Sector Rotation" \ --cron "0 21 * * 0" \ --tz "Asia/Shanghai" \ --session isolated \ --message "Run CT Monitor Combo 10: compare /price/trending?hours=24 vs hours=168, compare /signals/recent?hours=6 vs hours=24, scan /info/feed for sector media attention. Generate weekly sector rotation matrix with heating/cooling/stable ratings and reallocation suggestions." \ --announce \ --channel telegram
| Action | Endpoint |
|---|---|
| Market tweet feed | GET /tweets/feed?limit=50 |
| KOL historical tweets | GET /tweets/recent?username=XXX&limit=20 |
| KOL real-time tweets | GET /twitter/realtime?username=XXX&limit=10 |
| Keyword search | GET /tweets/search?keyword=airdrop&limit=20 |
| Unified news feed | GET /info/feed?limit=30&min_score=0.5 |
| Token price | GET /price/token?symbol=BTC |
Use openclaw cron add to schedule any combo as a recurring automated job. All jobs below use --session isolated (dedicated agent turn, no main chat spam) with --announce --channel telegram delivery.
Combo 1 — Daily morning brief (8am Shanghai) :
openclaw cron add \
--name "CT Morning Brief" \
--cron "0 8 * * *" \
--tz "Asia/Shanghai" \
--session isolated \
--message "Run CT Monitor Combo 1: call /brief/generate?hours=24, /price/trending?hours=24, /signals/recent?hours=6. Synthesize into a structured morning report: market sentiment, top 3 narratives, tokens to watch, risk alerts." \
--announce \
--channel telegram
Combo 2 — Alpha signal alert (every 15 min, conditional) :
openclaw cron add \
--name "CT Signal Alert" \
--cron "*/15 * * * *" \
--session isolated \
--message "Call CT Monitor /signals/recent?hours=0.25&min_score=60. If any signal has kol_count >= 3, run the full Combo 2 deep dive on that token (price + KOL tweets + news) and send an alert. If no qualifying signals, stay silent." \
--announce \
--channel telegram
Combo 5 — Security watch (every 15 min, conditional) :
openclaw cron add \
--name "CT Security Watch" \
--cron "*/15 * * * *" \
--session isolated \
--message "Call CT Monitor /tweets/feed?limit=100 and filter for hack/exploit/rug/drain/emergency/pause/vulnerability. Also check /info/feed?limit=30 for security news. If 3+ KOLs mention the same security event, run the full Combo 5 analysis and send an URGENT alert. If nothing found, stay silent." \
--announce \
--channel telegram
Combo 7 — Narrative pulse (daily 8pm) :
openclaw cron add \
--name "CT Narrative Pulse" \
--cron "0 20 * * *" \
--tz "Asia/Shanghai" \
--session isolated \
--message "Run CT Monitor Combo 7: scan /tweets/feed for sector keywords (AI agent, RWA, DePIN, BTCFi, restaking, meme, GameFi), check /signals/recent?hours=24, check /price/trending?hours=24. Generate narrative heat ranking with early-stage vs. priced-in analysis." \
--announce \
--channel telegram
Combo 8 — Airdrop hunter (daily 7am) :
openclaw cron add \
--name "CT Airdrop Hunter" \
--cron "0 7 * * *" \
--tz "Asia/Shanghai" \
--session isolated \
--message "Run CT Monitor Combo 8: scan /tweets/feed for airdrop/snapshot/TGE/unlock/claim/whitelist/mint keywords, check /info/feed for event news, check /signals/recent?hours=24. Generate an event list sorted by urgency with participation value assessment and action checklist." \
--announce \
--channel telegram
Combo 9 — Whale watch (daily noon) :
openclaw cron add \
--name "CT Whale Watch" \
--cron "0 12 * * *" \
--tz "Asia/Shanghai" \
--session isolated \
--message "Run CT Monitor Combo 9: get /users/top?limit=20, then fetch real-time and historical tweets for the top 5 KOLs. Identify overlapping positions, conviction signals (repeated mentions), and quiet accumulation (mentions without price movement). Report only tokens mentioned by 2+ top KOLs." \
--announce \
--channel telegram
Combo 10 — Sector rotation (weekly Sunday 9pm) :
openclaw cron add \
--name "CT Sector Rotation" \
--cron "0 21 * * 0" \
--tz "Asia/Shanghai" \
--session isolated \
--message "Run CT Monitor Combo 10: compare /price/trending?hours=24 vs hours=168, compare /signals/recent?hours=6 vs hours=24, scan /info/feed for sector media attention. Generate weekly sector rotation matrix with heating/cooling/stable ratings and reallocation suggestions." \
--announce \
--channel telegram
Manage your jobs :
openclaw cron list
openclaw cron runs --id <job-id>
openclaw cron edit <job-id> --message "Updated prompt"
openclaw cron remove <job-id>
| Endpoint | Cost | Notes |
|---|---|---|
/signals/recent hours<2 | 3¢ | Real-time data (6551 source) |
/signals/recent hours≥2 | 1¢ | Internal historical database |
/twitter/realtime | 2¢ | Real-time tweets (6551 source) |
/brief/generate hours=1 | 6¢ | 1H flash briefing (Grok 4.1 Fast) |
/brief/generate hours=8 | 4¢ |
[]: Inform user "no data available, sync may still be in progress"401: Invalid API Key — check $CT_MONITOR_API_KEY environment variable402: Insufficient balance — top up required404: User not in watchlist — suggest adding subscription firstWeekly Installs
1
Repository
GitHub Stars
11
First Seen
1 day ago
Security Audits
Gen Agent Trust HubPassSocketPassSnykWarn
Installed on
zencoder1
amp1
cline1
openclaw1
opencode1
cursor1
Excel财务建模规范与xlsx文件处理指南:专业格式、零错误公式与数据分析
42,000 周安装
Tilt开发工具使用指南:Kubernetes本地开发、错误排查与自动化部署
128 周安装
Azure Web PubSub Java SDK - 实时消息通信与WebSocket服务开发指南
1 周安装
Playwright最佳实践指南:CLI测试、定位器优先级与网页断言技巧
165 周安装
OpenAI DALL-E 3 图像生成命令行工具 - 哥特式大教堂预设与批量生成指南
202 周安装
Azure Key Vault Keys Rust 客户端库 - 安全密钥管理与加密解决方案
1 周安装
App Store Connect CLI 定价管理:gpd-ppp-pricing 技能实现订阅与商品区域定价自动化
214 周安装
| Latest tweets + real-time interpretation |
| Multi-user Monitoring "Monitor these accounts" | GET /twitter/realtime?username=X × N | Multi-user real-time summary |
| Alpha Signal Hunt (Fast)"Any signals in the last 15 min?" | GET /signals/recent?hours=0.25 | High-frequency signals + actionable suggestions (3¢) |
| Alpha Signal Hunt (Regular)"Any signals in the last 6 hours?" | GET /signals/recent?hours=6 | Signal summary + trend analysis (1¢) |
| Unified News Feed "Latest crypto news?" | GET /info/feed?limit=30 | News + RSS deduplicated + quality scored |
| Token Price Query "What's BTC price?" | GET /price/token?symbol=BTC | Price + 1H/24H/7D change |
| Trending Token Analysis "What tokens are hot right now?" | GET /price/trending?hours=6 | CoinGecko trending + KOL mention analysis |
| AI Briefing "Give me today's briefing" | GET /brief/generate?hours=24 | Multi-source AI briefing (tweets + news + price) |
| Flash Briefing "What happened in the last hour?" | GET /brief/generate?hours=1 | 1H flash briefing (6¢) |
| Security Alert "Any hack news?" | GET /tweets/feed?limit=50 + jq filter | Security event summary + urgency rating |
| Watchlist Management "Add @pump_fun to monitoring" | POST /subscriptions/?username=pump_fun | Confirm addition + current list overview |
| KOL Influence Ranking "Who are the most influential KOLs?" | GET /users/top?limit=10 | Influence ranking + sector tags |
| System Status Check "Is the data up to date?" | GET /status/sync | Sync status + last update time |
| Trending tokens | GET /price/trending?hours=6 |
| Market overview | GET /price/summary |
| Alpha signals | GET /signals/recent?hours=6&min_score=60 |
| AI briefing | GET /brief/generate?hours=24 |
| KOL ranking | GET /users/top?limit=10 |
| Add to watchlist | POST /subscriptions/?username=pump_fun |
| Remove from watchlist | DELETE /subscriptions/pump_fun |
| System status | GET /status/sync |
| 8H briefing |
/brief/generate hours=12/24 | 2¢ | 12/24H briefing |
/info/feed | 1¢ | Unified news + RSS feed |
/price/token | 1¢ | Token price query |
/price/trending | 1¢ | Trending token analysis |
/price/summary | 1¢ | Market overview |