digital-oracle

作者 komako-workshop已验证

AI agent skill that answers macro questions — housing, gold, BTC, geopolitics — with probability estimates mined from 13 financial data sources (Polymarket, Kalshi, CFTC, SEC & more). For Claude Code / Cursor / Codex / OpenClaw. | 让 AI Agent 从金融数据中挖掘宏观趋势的数字先知

789
Stars
160
Forks
Python
语言
2026/8/23
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/komako-workshop/digital-oracle

快速入门

使用 digital-oracle 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

English | 中文

Digital Oracle 📈

Digital Oracle 是一款让 AI Agent 基于从海量金融数据中,挖掘出宏观事件发展趋势的开源 Skill。

适用于 OpenClaw / Claude Code / Cursor / Codex。

我们生活在一个噪音极度泛滥的时代。社交媒体上充斥着情绪化的预测 — 有人说房价要崩了,有人说黄金要上天,有人说明天就打仗。这些观点往往顺应人群情绪,而不是基于客观数据的理性分析。

但交易数据不一样。

价格是绝对理性的 — 当一个人要把自己的钱押在某个结果上时,他会比发一条短视频认真很多。

这就是有效市场理论的核心洞察:所有公开信息都已经被价格消化了。一切信息都在 K 线里。

Digital Oracle 把这个洞察变成了一个可执行的工具。它接入了 13 个权威金融数据源 — 从 Polymarket 和 Kalshi 这样的预测市场,到美国国债收益率曲线、CFTC 机构持仓、SEC 内部人交易、各国央行利率、加密衍生品,以及 A 股的拆单资金流与板块轮动。

它不看报纸不读新闻,不消费文章、短视频、播客,只通过从金融数据中挖掘出的价值信号,来回答房价涨跌、黄金走势、比特币周期、军事冲突概率这类问题,并给出结构化的概率估计和推理链。

某种意义上,这就是新时代的数字先知。

能回答什么问题?

  • "WW3 的概率是多少?"
  • "中国房价还会跌多久?"
  • "AI 是不是泡沫?"
  • "现在适合买黄金吗?"
  • "比特币到底了吗?"
  • "NVDA 期权溢价是不是太高了?"

只要有市场在定价这件事,Digital Oracle 就能给出一个基于交易数据的概率估计。

数据源

Provider数据类型用途
Polymarket预测市场合约事件概率定价
KalshiSEC 监管二元合约美国政治/经济事件
Stooq股票/ETF/外汇/商品价格历史和趋势
Deribit加密衍生品期货 term structure、期权 IV
US Treasury国债收益率利率曲线、通胀预期
CFTC COT期货持仓机构仓位方向(smart money)
CoinGecko加密现货BTC/ETH 价格、市值
SEC EDGAR内部人交易Form 4 买卖信号
BIS央行数据政策利率、信贷/GDP 缺口
World Bank发展指标GDP、人口、贸易
Yahoo FinanceUS 期权链IV、Greeks、put/call ratio
EastmoneyA 股行情与资金流个股/ETF 行情、K 线、拆单量级资金流、板块轮动
Web Search网页搜索VIX、CDS 等补充数据

所有 API 均免费、无需 API Key。

安装

OpenClaw

clawhub install digital-oracle

其他 AI Agent(Claude Code / Cursor / Codex / ...)

直接告诉你的 Agent:

安装这个开源项目并读取 SKILL.md 作为你的工作指令:https://github.com/komako-workshop/digital-oracle

Agent 会自行 clone 代码、阅读方法论、调用 provider。

前置依赖

  • uv — Python 包管理器,skill 运行时用它执行 Python 脚本
  • 13 个数据源中有 12 个零外部依赖(纯 Python 标准库)。期权链分析需要额外安装:
uv pip install yfinance

工作原理

  1. 理解问题 — 拆解核心变量、时间窗口、可定价性
  2. 选择信号 — 根据问题类型选择 3+ 个独立数据源
  3. 并行拉取 — 用 gather() 同时调用多个 provider
  4. 矛盾推理 — 找不同市场之间的分歧,解释为什么它们可以同时正确
  5. 输出报告 — 结构化的多层信号表格 + 概率估计 + 场景分析

项目结构

digital-oracle/
├── SKILL.md                # Skill 定义(OpenClaw 读取这个文件)
├── digital_oracle/         # Python 源码
│   ├── concurrent.py       # 并行执行工具
│   ├── http.py             # HTTP 客户端抽象
│   ├── snapshots.py        # HTTP 响应录制/回放(测试用)
│   └── providers/          # 13 个数据 provider
├── references/             # API 速查
│   ├── providers.md        # Provider API 参考
│   └── symbols.md          # 交易符号目录
├── scripts/                # Demo 脚本
└── tests/                  # 单元测试 + fixtures

设计原则

  • 零依赖优先 — 12/13 个 provider 只用 Python 标准库,无需 pip install
  • 依赖注入 — 所有 provider 接受可选的 http_client 参数,方便测试
  • 部分失败容忍 — 一个数据源挂了不影响其他结果
  • 快照测试 — 录制真实 HTTP 响应,CI 里无网络也能跑测试

License

MIT © 2026 komako-workshop — see LICENSE.

常见问题

What is digital-oracle?

digital-oracle is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by komako-workshop. AI agent skill that answers macro questions — housing, gold, BTC, geopolitics — with probability estimates mined from 13 financial data sources (Polymarket, Kalshi, CFTC, SEC & more). For Claude Code / Cursor / Codex / OpenClaw. | 让 AI Agent 从金融数据中挖掘宏观趋势的数字先知. It has 789 GitHub stars.

Is digital-oracle safe to use?

Yes. digital-oracle passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install digital-oracle?

Clone the repository with "git clone https://github.com/komako-workshop/digital-oracle" and add it to your Claude Code skills directory (see the Installation section above). digital-oracle ships a SKILL.md manifest, so compatible agents can discover and load it automatically.

What programming language is digital-oracle written in?

digital-oracle is primarily written in Python. It is open-source under komako-workshop on GitHub, so you can review or fork the full source.

Are there alternatives to digital-oracle?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh digital-oracle against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI 智能体
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情