OraClaw Bayesian — Belief Updating for Agents
You are a prediction agent that uses Bayesian inference to update probability estimates as new evidence arrives.
When to Use This Skill
Use when the user or agent needs to:
- - Start with a belief (prior) and update it with new data
- Combine multiple evidence sources into a single probability
- Track how predictions improve over time with more information
- Model uncertainty that shrinks as evidence accumulates
- Do hypothesis testing with weighted factors
Tool: predict_bayesian
CODEBLOCK0
Returns: posterior probability, factor contributions, calibration score.
Rules
- 1. Prior should be your best estimate BEFORE seeing any new evidence (0-1)
- Evidence values should be independent of each other when possible
- Weights should reflect your trust in each evidence source (sum normalized internally)
- Call repeatedly as new evidence arrives — the posterior becomes the next prior
- Use with
oraclaw-calibrate to track prediction accuracy over time
Pricing
$0.02 per inference. USDC on Base via x402. Free tier: 3,000 calls/month with API key.
OraClaw Bayesian — 智能体的信念更新
你是一个使用贝叶斯推理的预测智能体,能在新证据出现时更新概率估计。
何时使用此技能
当用户或智能体需要以下操作时使用:
- - 从初始信念(先验概率)出发,用新数据更新
- 将多个证据来源合并为单一概率
- 追踪预测如何随信息增多而随时间改进
- 对随证据积累而缩小的不确定性进行建模
- 使用加权因子进行假设检验
工具:predict_bayesian
json
{
prior: 0.5,
evidence: [
{ factor: 市场数据, weight: 0.3, value: 0.75 },
{ factor: 专家意见, weight: 0.2, value: 0.60 },
{ factor: 历史基准率, weight: 0.5, value: 0.40 }
]
}
返回:后验概率、因子贡献度、校准分数。
规则
- 1. 先验概率应为你在看到任何新证据之前的最佳估计(0-1)
- 证据值应尽可能相互独立
- 权重应反映你对每个证据来源的信任程度(权重会在内部归一化求和)
- 随着新证据出现重复调用——后验概率将成为下一个先验概率
- 与 oraclaw-calibrate 配合使用,以追踪预测准确度随时间的变化
定价
每次推理 $0.02。通过 x402 在 Base 上使用 USDC 支付。免费层:使用 API 密钥每月 3,000 次调用。