Token导航 LogoToken导航TokenDH.com
研究检索权限需确认clawhub未标认证来源可访问clear审计提醒

tree-of-thoughts思想之树

Agent Skill

tree-of-thoughts 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

16,558

周安装

704

GitHub Stars

公开资料未说明

下载量

5,801
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:tree-of-thoughts(思想之树)
来源仓库:https://github.com/tobisamaa/tree-of-thoughts
安装命令:
openclaw skills install tree-of-thoughts
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install tree-of-thoughts

简介

支持复杂问题的多路径推理,评估多个解决方案并选择最优路径。

  • 适用于困难决策、创意生成和策略优化等场景。
  • 通过分支探索和结果评估机制提升推理深度。tree-of-thoughts 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 需确认计算资源和执行时间限制是否满足任务需求。
  • 建议结合具体用例阅读原始文档了解实现细节。

SKILL.md

name
tree-of-thoughts
version
2.0.0
description
Multi-path reasoning for complex problems. Explore multiple solution branches → Evaluate each → Select optimal path. Use for: difficult decisions, creative problems, ambiguous situations, optimization challenges.\
metadata
openclaw
emoji
🌳
os
["darwin", "linux", "win32"]

Tree of Thoughts (ToT) Reasoning (Enhanced v2.0.0)

v2.0.0 Enhancement: Parallel execution + intelligent caching (FoT pattern) Speed Improvement: 3-5x faster for complex problems Cache Benefit: 50-200x faster for similar cached problems

Advanced reasoning through systematic exploration of solution spaces.

What is Tree of Thoughts?

Traditional reasoning (Chain of Thought):

Problem → Step 1 → Step 2 → Step 3 → Solution
(Single linear path)

Tree of Thoughts:

                    Problem
                   /   |   \
              Path A Path B Path C
               /  \    |    /  \
            A1   A2   B1  C1   C2
             |    |    |   |    |
          [eval] [eval] ... [eval]
             \    |    |   /    /
              \   |    |  /    /
               Best Solution

Key differences:

  • Explores MULTIPLE paths
  • Evaluates EACH branch
  • Can BACKTRACK from dead ends
  • SELECTS optimal solution
  • More robust than linear thinking

When to Use ToT

Use ToT for:

  • Multiple possible solutions exist
  • Problem is ambiguous or complex
  • Need to compare approaches
  • High cost of failure
  • Creative/optimization problems
  • Uncertain which method works

Skip ToT for:

  • Simple, clear problems
  • Single obvious solution
  • Time-critical decisions
  • Routine operations
  • Well-known procedures

Parallel Execution + Caching (v2.0.0)

Performance Improvements

ScenarioBeforeAfterSpeedup
3-branch exploration3.0s1.0s3x
5-branch exploration5.0s1.2s4.2x
Deep tree (depth 4)8.0s2.0s4x
Similar cached problem5.0s0.025s200x

Parallel Tree Generation

async def parallel_tree_of_thoughts(problem, branches=5, depth=3):
    """
    Generate and evaluate thought tree in parallel.
    
    Benefits:
    - 3-5x faster than sequential
    - All branches generated simultaneously
    - Evaluation parallelized
    """
    # Step 1: Generate all initial thoughts in parallel
    initial_thoughts = await asyncio.gather(*[
        generate_thought_async(problem) for _ in range(branches)
    ])
    
    # Step 2: Evaluate all thoughts in parallel
    evaluations = await asyncio.gather(*[
        evaluate_thought_async(thought) for thought in initial_thoughts
    ])
    
    # Step 3: Select top thoughts for expansion
    top_thoughts = select_top_k(initial_thoughts, evaluations, k=3)
    
    # Step 4: Expand in parallel
    expanded = await asyncio.gather(*[
        expand_thought_async(thought, depth-1) for thought in top_thoughts
    ])
    
    return select_best_solution(expanded)

Intelligent Caching

def cached_tree_of_thoughts(problem, cache_ttl_hours=24):
    """
    ToT with semantic caching for similar problems.
    
    Cache hits when:
    - Same problem repeated (exact match)
    - Similar problem (>85% semantic similarity)
    - Related problem type (same domain)
    """
    cache_key = semantic_hash(problem)
    cached = cache_get(cache_key)
    
    if cached and semantic_similarity(problem, cached['problem']) > 0.85:
        return {
            "solution": cached['solution'],
            "from_cache": True,
            "cache_age": (now - cached['timestamp']).minutes
        }
    
    # Generate fresh solution
    result = parallel_tree_of_thoughts(problem)
    
    # Cache for future
    cache_set(cache_key, {
        'problem': problem,
        'solution': result,
        'timestamp': now()
    })
    
    return {**result, "from_cache": False}

CLI Flags

--parallel         Use parallel execution (default)
--cached           Enable caching (default)
--sequential       Disable parallel execution
--no-cache         Disable caching
--branches N       Set number of branches (default: 5)
--depth N          Set tree depth (default: 3)

ToT Process

Step 1: GENERATE Thoughts

Given problem, generate multiple initial approaches:
- Thought A: [Approach 1]
- Thought B: [Approach 2]
- Thought C: [Approach 3]

Step 2: EVALUATE Thoughts

For each thought, assess:
- Feasibility: Can this work?
- Quality: How good would result be?
- Cost: Time/resources needed?
- Risk: What could fail?

Step 3: EXPAND Promising Thoughts

Take best thoughts and expand:
- Thought A → A1, A2, A3
- Thought B → B1, B2
(Expand only promising branches)

Step 4: EVALUATE Branches

Evaluate each expanded branch:
- A1: [score/10]
- A2: [score/10]
- B1: [score/10]

Step 5: SEARCH for Solution

Strategies:
- BFS: Explore all branches breadth-first
- DFS: Dive deep into promising branches
- Best-First: Always expand highest-rated
- Beam Search: Keep top-K branches

Step 6: SELECT Optimal Path

Choose path with best expected outcome:
- Highest evaluation score
- Most feasible
- Best cost/benefit ratio

Thought Evaluation

Evaluation Criteria

Feasibility (0-10):

- 10: Definitely possible
- 7-9: Likely possible
- 4-6: Maybe possible
- 1-3: Unlikely to work
- 0: Impossible

Quality (0-10):

- 10: Perfect solution
- 7-9: Great solution
- 4-6: Adequate solution
- 1-3: Poor solution
- 0: Doesn't solve problem

Cost (0-10, inverse):

- 10: Negligible cost
- 7-9: Low cost
- 4-6: Moderate cost
- 1-3: High cost
- 0: Prohibitively expensive

Risk (0-10, inverse):

- 10: No risk
- 7-9: Low risk
- 4-6: Moderate risk
- 1-3: High risk
- 0: Certain failure

Scoring Formula

Score = (Feasibility * 0.3) + (Quality * 0.3) + (Cost * 0.2) + (Risk * 0.2)

Adjust weights based on priorities:

  • Quality-focused: Quality * 0.5
  • Speed-focused: Cost * 0.5
  • Safety-focused: Risk * 0.5

Search Strategies

Breadth-First Search (BFS)

Level 1: Explore all initial thoughts
Level 2: Expand all promising thoughts
Level 3: Continue breadth-wise
Good for: Comprehensive exploration

Depth-First Search (DFS)

Level 1: Pick most promising thought
Level 2: Dive deep into that branch
Level 3: Continue depth-wise
Good for: Quick deep solutions

Best-First Search

Always expand the highest-rated node
Use priority queue
Good for: Finding optimal quickly

Beam Search

Keep only top-K branches at each level
Prune low-rated branches early
Good for: Efficiency with quality

ToT Templates

Decision Problem

## Problem: [Decision to make]

### Initial Thoughts
1. **Option A**: [Description]
   - Feasibility: 8/10
   - Quality: 7/10
   - Cost: 9/10
   - Risk: 8/10
   - **Score**: 7.9/10

2. **Option B**: [Description]
   - Feasibility: 9/10
   - Quality: 6/10
   - Cost: 7/10
   - Risk: 6/10
   - **Score**: 7.1/10

3. **Option C**: [Description]
   - Feasibility: 6/10
   - Quality: 9/10
   - Cost: 5/10
   - Risk: 4/10
   - **Score**: 6.3/10

### Expansion (Top 2)
**Option A** → A1: [Refinement] (Score: 8.5/10)
**Option B** → B1: [Refinement] (Score: 7.8/10)

### Selected Path: A1
Reason: Highest score, good balance of feasibility and quality

Creative Problem

## Problem: [Creative challenge]

### Thought Branches
1. **Creative A**: [Idea]
   - Novelty: 9/10
   - Feasibility: 5/10
   - Impact: 8/10
   - **Score**: 7.4/10

2. **Creative B**: [Idea]
   - Novelty: 7/10
   - Feasibility: 8/10
   - Impact: 7/10
   - **Score**: 7.3/10

3. **Safe C**: [Conservative idea]
   - Novelty: 4/10
   - Feasibility: 9/10
   - Impact: 6/10
   - **Score**: 6.3/10

### Hybrid Approach: A + B
Combine novelty of A with feasibility of B
Score: 8.2/10

Integration Patterns

ToT + Task Decomposition

1. Use ToT to choose decomposition strategy
2. Compare different breakdown approaches
3. Select optimal decomposition

ToT + Error Recovery

1. When error occurs
2. Generate multiple recovery options via ToT
3. Evaluate each recovery path
4. Select best recovery strategy

ToT + Self-Reflection

1. After completing task
2. Reflect: Did I consider enough options?
3. Should I have used ToT?
4. Was my evaluation accurate?

Backtracking

When a path fails:

1. Mark branch as dead end
2. Record why it failed
3. Backtrack to decision point
4. Try next best alternative
5. Learn from failure

Example:

Path A → A1 → A1a [FAILED: X didn't work]
Backtrack to A
Path A → A2 → A2a [SUCCESS]

Pruning Strategies

Early pruning:

  • Score < 3/10: Drop immediately
  • Infeasible: Drop immediately
  • High risk + low quality: Drop

Continuous pruning:

  • After expansion, keep only top 50%
  • Remove redundant branches
  • Merge similar thoughts

Practical Examples

Example 1: Choose Architecture

## Problem: Design system architecture

### Thoughts
1. Monolith: Simple, fast to build, hard to scale
   Score: 6/10 (good for MVP, bad for scale)

2. Microservices: Scalable, complex, slow to build
   Score: 7/10 (good for scale, overkill now)

3. Modular Monolith: Balanced, medium complexity
   Score: 8/10 (best of both)

### Expansion
Modular Monolith →
  - M1: Start modular, split later (8.5/10)
  - M2: Full modules from start (7/10)

### Decision: M1
Start with modular monolith, design for future split

Example 2: Fix Performance Bug

## Problem: API too slow

### Thoughts
1. Cache everything: Fast, memory-heavy, stale data risk
   Score: 6/10

2. Optimize queries: Moderate speedup, accurate data
   Score: 8/10

3. Add indexes: Quick win, limited impact
   Score: 7/10

4. Rewrite in faster language: High impact, high cost
   Score: 5/10

### Expansion
Optimize + Indexes → Combined approach
Score: 9/10 (synergy)

### Decision: Optimize queries + Add strategic indexes

ToT Reasoning Log

Track ToT sessions in: memory/tot-sessions.md

## [Date] ToT Session: [Problem]

### Options Considered: [N]
### Paths Explored: [N]
### Depth: [N levels]
### Decision: [Chosen path]
### Rationale: [Why this won]
### Outcome: [Did it work?]
### Lesson: [What was learned]

Metrics

  • Average thoughts generated per problem
  • Search depth average
  • Backtrack rate
  • Decision quality (outcomes)
  • Time to decision
  • Solution diversity

Quick Actions

  • tot [problem] - Run ToT reasoning
  • compare [options] - Evaluate multiple options
  • decide [decision] - Make decision with ToT
  • branches - Show current ToT tree

Best Practices

  1. Generate many thoughts initially (5-10)
  2. Evaluate objectively (use criteria)
  3. Prune aggressively (don't explore poor options)
  4. Expand gradually (depth vs breadth balance)
  5. Backtrack when stuck (dead ends happen)
  6. Document reasoning (learn from decisions)
  7. Review outcomes (improve evaluation accuracy)

Remember: The best solution is rarely the first one you think of. Explore, evaluate, select.

Real Usage Example

Scenario: Choosing the best system improvement to implement

Problem

"What ONE improvement should I make to the OpenClaw system today?"

Initial Thoughts (Generated 5 options)

OptionDescriptionFeasibilityQualityCostRiskScore
AAuto-create log files97998.3
BAdd quick-action triggers48355.0
CAdd integration examples96897.6
DCreate error pattern detection79677.4
ECreate skill test runner69566.5

Scoring Formula

Score = (Feasibility × 0.3) + (Quality × 0.3) + (Cost × 0.2) + (Risk × 0.2)

Expansion (Top 2)

  • A → A1: Auto-create all log files AND error folder → Score: 8.5
  • D → D1: Simple regex-based error classifier → Score: 7.8

Decision: A1 (Auto-create log files)

Rationale: Highest score, lowest risk, immediate usability improvement

Outcome

Created:

  • memory/criticism-log.md
  • memory/tot-sessions.md
  • memory/errors/error-log.md

Lesson: Simple infrastructure improvements often beat complex features.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

74.46%
按下载量换算4,319

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills