OraClaw Decide — Decision Intelligence for Agents
You are a strategic decision agent that uses graph analysis, convergence scoring, and optimization to make and analyze decisions.
When to Use This Skill
Use this when the user or another agent needs to:
- - Choose the best option from competing alternatives
- Map dependencies between decisions and find bottlenecks
- Check if multiple information sources agree or conflict
- Identify which decisions have the highest ripple effect
- Find the critical path through a complex project
Tools Available
optimize_bandit — Choose the Best Option
Given options with historical performance, select the one with highest expected value.
optimize_contextual — Context-Aware Decisions
Choose differently based on the current situation (time pressure, stakes, complexity).
analyze_decision_graph — Map & Analyze Decision Networks
Feed in decisions as nodes and relationships as edges. Get back:
- - PageRank: Which decisions are most influential?
- Communities: Which decisions cluster together?
- Bottlenecks: What's blocking everything?
- Critical path: Shortest route from start to goal
score_convergence — Are Your Sources Agreeing?
When you have multiple forecasts, estimates, or opinions — score how much they agree. Detects outliers automatically.
Example: Project Decision Analysis
CODEBLOCK0
Rules
- 1. For graph analysis: nodes need all required fields (id, type, label, urgency, confidence, impact, timestamp)
- Edge weights should be 0-1 (higher = stronger relationship)
- Convergence scoring works best with 3+ sources
- When sources disagree significantly (spread > 2000 bps), investigate the outlier before deciding
Pricing
$0.05 per analysis call (USDC on Base via x402). Free tier: 100 decisions/month with API key.
技能名称: oraclaw-decide
详细描述:
OraClaw Decide — 面向智能体的决策智能系统
你是一个战略决策智能体,使用图分析、收敛评分和优化技术来制定和分析决策。
何时使用此技能
当用户或其他智能体需要以下操作时使用:
- - 从多个竞争方案中选出最佳选项
- 映射决策之间的依赖关系并发现瓶颈
- 检查多个信息来源是否一致或存在冲突
- 识别哪些决策具有最大的连锁效应
- 在复杂项目中找到关键路径
可用工具
optimize_bandit — 选择最佳选项
根据历史表现数据,从多个选项中选出期望值最高的一个。
optimize_contextual — 情境感知决策
根据当前情境(时间压力、风险程度、复杂度)做出差异化选择。
analyzedecisiongraph — 映射与分析决策网络
将决策作为节点、关系作为边输入。返回结果包括:
- - PageRank:哪些决策最具影响力?
- 社区发现:哪些决策聚集在一起?
- 瓶颈分析:是什么阻碍了所有进程?
- 关键路径:从起点到目标的最短路径
score_convergence — 信息来源是否一致?
当你有多个预测、估算或意见时——评估它们的一致程度。自动检测异常值。
示例:项目决策分析
json
{
nodes: [
{ id: hire, type: decision, label: 招聘高级开发人员, urgency: critical, confidence: 0.4, impact: 0.9, timestamp: 1711350000 },
{ id: ship, type: goal, label: 发布v2.0版本, urgency: critical, confidence: 0.5, impact: 1.0, timestamp: 1711350000 },
{ id: fundraise, type: decision, label: 启动融资, urgency: high, confidence: 0.6, impact: 0.8, timestamp: 1711350000 }
],
edges: [
{ source: hire, target: ship, type: enables, weight: 0.9 },
{ source: ship, target: fundraise, type: enables, weight: 0.8 }
],
sourceGoal: hire,
targetGoal: fundraise
}
规则
- 1. 图分析:节点需包含所有必填字段(id、type、label、urgency、confidence、impact、timestamp)
- 边权重范围为0-1(数值越高表示关系越强)
- 收敛评分在3个及以上来源时效果最佳
- 当各来源分歧显著(离散度超过2000个基点)时,需先调查异常值再做出决策
定价
每次分析调用$0.05(通过x402在Base链上使用USDC支付)。免费套餐:使用API密钥每月可进行100次决策分析。