用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Miosa-osa/canopy --skill tree-of-thoughts命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | tree-of-thoughts |
| description | Multi-path reasoning with evaluation and backtracking - 74% success on complex tasks |
| trigger | complex reasoning, planning, multi-step problems |
| priority | 2 |
| dynamic | false |
| created | 2026-01-26 |
Multi-path reasoning that explores, evaluates, and backtracks. Achieved 74% success rate on Game of 24 vs 4% with standard CoT.
Triggers on:
Break problem into intermediate steps that can be evaluated independently.
At each step, generate 3 candidate "thoughts" (reasoning paths):
STEP N:
├─ Thought A: [approach 1]
├─ Thought B: [approach 2]
└─ Thought C: [approach 3]
Score each thought (0-10) on:
If path scores drop below threshold (5/10), backtrack to last good node.
Use this simple prompt for ToT without explicit tree construction:
"Imagine three different experts are answering this question.
All experts will write down 1 step of their thinking, then share it with the group.
Then all experts will go on to the next step.
If any expert realizes they're wrong at any point, they leave.
Continue until consensus."
Based on Princeton/DeepMind research - arXiv:2305.10601