ソース情報
- リポジトリ
- 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 self-consistencyコマンドは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 | self-consistency |
| description | Sample multiple paths, select most consistent - +17.9% on GSM8K |
| trigger | math, logic puzzles, fact-based reasoning, high-stakes decisions |
| priority | 3 |
| dynamic | false |
| created | 2026-01-26 |
Sample multiple reasoning paths and select the most consistent answer. Achieved +17.9% on GSM8K, +12.2% on AQuA.
Use for:
Generate N (typically 5-10) reasoning paths with higher temperature.
Parse the conclusive answer from each path.
Select the most frequent answer across all paths.
def self_consistency(prompt, question, num_samples=5):
answers = []
for _ in range(num_samples):
response = reason_with_cot(prompt, question)
answer = extract_final_answer(response)
answers.append(answer)
# Majority vote
from collections import Counter
return Counter(answers).most_common(1)[0][0]
For open-ended tasks without fixed answers:
"Here are several responses to the same question:
[Response 1]
[Response 2]
[Response 3]
Determine which elements are most consistent across these responses
and synthesize the most reliable answer."
Based on Google Research - arXiv:2203.11171