decision-advisor
Decision-making advisor using Tree of Thoughts for exploring options, analyzing trade-offs, and providing data-driven recommendations.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/banxian87/decision-advisorDecision Advisor
AI-powered decision advisor that uses Tree of Thoughts to explore multiple options, analyze trade-offs, and provide structured recommendations for complex decisions.
Use Cases
🎯 Technical Decisions
- Technology stack selection
- Architecture patterns
- Build vs buy decisions
- Tool evaluation
💼 Business Decisions
- Product feature prioritization
- Investment analysis
- Strategic planning
- Risk assessment
👥 Personal Decisions
- Career choices
- Education paths
- Major purchases
Features
🌳 Option Exploration
- Generate multiple alternatives
- Consider non-obvious options
- Explore different perspectives
⚖️ Trade-off Analysis
- Pros and cons for each option
- Risk assessment
- Cost-benefit analysis
- Long-term implications
📊 Structured Framework
- Decision criteria definition
- Weighted scoring
- Sensitivity analysis
- Recommendation with confidence level
Usage
const advisor = new DecisionAdvisor();
const decision = await advisor.advise({
decision: 'Choose frontend framework for enterprise app',
options: ['React', 'Vue', 'Angular'],
criteria: [
{ name: 'Performance', weight: 0.3 },
{ name: 'Developer Experience', weight: 0.25 },
{ name: 'Ecosystem', weight: 0.25 },
{ name: 'Long-term Support', weight: 0.2 }
],
context: 'Team of 20 developers, 5-year project lifespan'
});
console.log(decision.recommendation);
console.log(decision.analysis);
Example Output
## Decision Analysis: Frontend Framework Selection
### Options Evaluated
1. React
2. Vue
3. Angular
### Scoring Matrix
| Criteria | Weight | React | Vue | Angular |
|-----------------------|--------|-------|-----|---------|
| Performance | 30% | 8.5 | 8.0 | 7.5 |
| Developer Experience | 25% | 9.0 | 8.5 | 7.0 |
| Ecosystem | 25% | 9.5 | 7.5 | 8.5 |
| Long-term Support | 20% | 9.0 | 7.0 | 9.0 |
| **Weighted Score** | | **8.95** | 7.85 | 7.95 |
### Recommendation
**React** is recommended with a weighted score of 8.95/10.
### Key Reasons
1. Largest ecosystem and community
2. Excellent developer experience
3. Strong corporate backing (Meta)
4. Proven at scale
### Risks & Mitigations
- **Risk**: Frequent breaking changes
- **Mitigation**: Use stable LTS versions, invest in testing
### Confidence Level: High (85%)
Architecture
Decision Request
↓
Tree of Thoughts Agent
├─ Generate options
├─ Explore variations
└─ Identify criteria
↓
Evaluation Phase
├─ Score each option
├─ Analyze trade-offs
└─ Assess risks
↓
Recommendation Engine
├─ Weighted scoring
├─ Sensitivity analysis
└─ Confidence calculation
↓
Structured Report
Installation
clawhub install decision-advisor
License
MIT
Version
1.0.0
Created
2026-04-02
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-banxian87-decision-advisor": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
agent-architecture-patterns
AI Agent architecture patterns library with 10 patterns for single and multi-agent systems
ai-code-generator
AI code generator using Plan-and-Solve + ReAct for generating complete, runnable code from requirements and specifications.
ai-email-master
Professional email writing assistant with tone adjustment, template library, grammar checking, and response suggestions. Supports formal, casual, persuasive, and empathetic tones for business communication.
research-assistant
Research assistant using ReAct + Plan-and-Solve for web research, information synthesis, and report generation with citations.
content-creator-assistant
AI writing assistant using Reflection + Tree of Thoughts for high-quality content creation. Generates articles, blogs, and documentation with iterative refinement.