ソース情報
- リポジトリ
- Miosa-osa/canopy
- ソースの最終更新活動
- 2026年8月16日 14:17
- 検出された SKILL.md の言語
- 英語
- スター
- 228
- フォーク
- 54
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/Miosa-osa/canopy --skill skeleton-of-thoughtコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Evaluate retrieval and generation quality in RAG pipelines. Separate scoring for retrieval (recall, precision, MRR) and generation (faithfulness, relevance, completeness). End-to-end pipeline assessment with bottleneck identification. Triggers on: "eval rag", "rag evaluation", "retrieval evaluation", "rag quality", "rag metrics"
Design binary pass/fail LLM-as-Judge evaluators. Structured prompt engineering for evaluation: criteria definition, rubric construction, few-shot calibration, and bias mitigation. Produces a ready-to-deploy judge prompt with scoring instructions. Triggers on: "judge prompt", "llm judge", "evaluator prompt", "scoring prompt", "grading rubric"
Language Agent Tree Search - Monte Carlo planning - 92.7% on HumanEval
SOC 職業分類に基づく
SKILL.md を表示中
| name | skeleton-of-thought |
| description | Parallel generation through skeleton-first approach for 2x speedup |
| trigger | keyword |
| keywords | ["fast","parallel generate","speed up","quick response"] |
| priority | 4 |
Achieves up to 2x speedup through parallel content generation.
Instead of sequential generation, SoT:
Given question, generate ONLY the skeleton outline:
- Point 1: [brief description]
- Point 2: [brief description]
- Point 3: [brief description]
...
Do NOT expand. Just the skeleton.
Launch parallel expansions for each point:
Point 1 → Agent 1 → Expanded content
Point 2 → Agent 2 → Expanded content
Point 3 → Agent 3 → Expanded content
(all run simultaneously)
Combine expanded points with transitions:
[Introduction]
[Point 1 expanded]
[Transition]
[Point 2 expanded]
[Transition]
[Point 3 expanded]
[Conclusion]
# Skeleton generation prompt
SKELETON_PROMPT = """
For the question: {question}
Generate ONLY a skeleton outline with 3-8 key points.
Format:
1. [Point]: [5-10 word description]
2. [Point]: [5-10 word description]
...
Do NOT expand the points. ONLY the skeleton.
"""
# Point expansion prompt
EXPAND_PROMPT = """
Context: Answering "{question}"
Skeleton: {skeleton}
Expand ONLY point {point_number}: "{point_description}"
Write 2-4 sentences expanding this point.
Do not include other points.
"""
| Query Type | Sequential Time | SoT Time | Speedup |
|---|---|---|---|
| Tutorial | 10s | 5s | 2.0x |
| Explanation | 8s | 4.5s | 1.8x |
| List-based | 12s | 6s | 2.0x |
| Analysis | 15s | 9s | 1.7x |
Reference: "Skeleton-of-Thought: Large Language Models Can Do Parallel Decoding" (2023)