Agent skill
pm-data-discovery
用于先搞清楚“有哪些数据可看、怎么搜索目标市场、怎么落地数据样本”的技能。只做数据发现与取数,不做策略假设。
Install this agent skill to your Project
npx add-skill https://github.com/YichengYang-Ethan/oracle3/tree/main/.claude/skills/pm-data-discovery
SKILL.md
PM Data Discovery
当用户要先看数据、找市场、收集研究样本时,使用这个技能。
目标
- 回答 3 个问题:
- 有哪些可用数据源
- 如何搜索到目标市场
- 如何把数据保存成后续策略研究可用的文件
数据入口
- 市场元数据与搜索(在线)
oracle3 market list --exchange polymarket --limit 50 --jsonoracle3 market search --exchange polymarket --query "<关键词>" --limit 50 --jsonoracle3 market info --exchange polymarket --market-id <market_id> --jsonoracle3 market history --market-id <market_id> --interval 1h --limit 500 --json
- 新闻与外部事件(在线)
oracle3 news fetch --source google --query "<关键词>" --limit 30 --jsonoracle3 news fetch --source rss --query "<关键词>" --limit 30 --json
- 本地历史文件研究(离线)
oracle3 research markets --history-file <history.jsonl> --sort-by points --limit 50 --jsonoracle3 research slice --history-file <history.jsonl> --market-id <M> --event-id <E> --output <slice.jsonl> --jsonoracle3 research features --history-file <history.jsonl> --market-id <M> --event-id <E> --output <features.jsonl> --jsonoracle3 research labels --history-file <history.jsonl> --market-id <M> --event-id <E> --horizon-steps 5 --threshold 0.01 --output <labels.jsonl> --json
- 原始流数据录制(在线)
oracle3 data record --exchange polymarket --output <events.jsonl> --duration 3600 --json
推荐流程
- 先
market search/list定义候选市场。 - 对候选市场拉
market info/history看流动性和价格行为。 - 需要离线研究时,用
data record或已有history_file。 - 对重点市场生成
slice/features/labels供策略 agent 阅读。
输出要求
- 给出明确的数据清单:市场、时间范围、文件路径。
- 每个结论都附可复现命令。
- 如果网络不可用,明确切换到本地
research命令,不阻塞流程。
Hard Rules
- 不在此技能里提出策略逻辑假设。
- 只做数据发现、过滤、取样、落盘。
- 命令优先
--json输出,便于后续 agent 消费。
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
pm-data-discovery
用于先搞清楚“有哪些数据可看、怎么搜索目标市场、怎么落地数据样本”的技能。只做数据发现与取数,不做策略假设。
pm-live-trade-ops
用于在明确授权下执行 live trading,并严格执行风险与应急控制。
pm-quant-strategy-authoring
用于把 agent 的量化想法实现为 Strategy 代码,并形成可调参数接口与可验证行为。
pm-paper-trade-ops
用于在策略通过回测后执行 paper trading、监控、干预和归档。
pm-live-trade-ops
用于在明确授权下执行 live trading,并严格执行风险与应急控制。
pm-quant-strategy-authoring
用于把 agent 的量化想法实现为 Strategy 代码,并形成可调参数接口与可验证行为。
Didn't find tool you were looking for?