書籍やフレームワークの知恵をAIスキルにする / エビデンスベースの調査
医療方面のEBM(Evidence-Based Medicine)には、「エビデンスとしての妥当性」を評価するためのグレード表がある。
たとえばWikipedia上の記載としてはこのあたりが分かりやすいだろう。

AI活用の文脈では、次のようなメリットがあると言えそうだ。
Deep Researchで得られた証拠を、どの程度根拠として利用できるのか&その根拠は?
得られた情報(複数)に相互に矛盾するものがあった場合にどう整理するか?
つまりこれを取り込めば、AIによる調査でしばしば起きる、以下のような奇妙な袋小路を解決できる。
賛否両論的なものがある場合、両論併記で終わってしまい、一定のスタンスを取れない。
なんらかの結論が出力される場合も、論理として何に依拠しているのかがわからない。
ということでスキルにした例
ここからルーティング構造のためのモジュールを抜いたのがこちら。Deep Researchを行うような場面で /frame-research して実行を強制すると良いだろう(descriptionから自動的に発動するかどうかはプロンプトに強く依存するので、単純にDRを頼むシチュエーションだと発動しない)。
---
name: frame-research
description: Compare external sources and grade each claim on an evidence hierarchy. Use when published evidence, documents, or citations are the main input and claims must be weighted by evidence strength, not source count.
user-invocable: true
---
## Purpose
Use this frame when the task is to compare, verify, and synthesize information from external sources. It is for deep research only: public information, official documents, papers, standards, articles, vendor docs, and published examples.
Every claim carried forward must be graded on the evidence hierarchy below. The output is not "what sources say" but "what the evidence supports, at what strength, and what would change it."
Keep codebase analysis, implementation planning, and local repository change work out of scope.
## When to use
- You need source-backed comparison, not a single ungrounded answer
- Multiple positions, frameworks, or practices need to be weighed
- The question needs evidence, not just reasoning
- Claims must be weighted by evidence strength, not counted by how many sources repeat them
## Evidence hierarchy
Assign each source an initial level. This is an EBM-style pyramid adapted for technical and general research domains, not the clinical original: study-design categories are replaced by source-type categories.
| Level | Category | Typical sources |
|-------|----------|-----------------|
| E1 | Systematic synthesis | Systematic reviews, meta-analyses; formally balloted standards (ISO, IETF Standards Track, final NIST publications); syntheses whose method for collecting and weighing sources is stated |
| E2 | Peer-reviewed or normative primary | Peer-reviewed papers; the authoritative party's normative documentation (specification, reference docs) for questions about that party's own artifact |
| E3 | Non-reviewed primary | Preprints; first-party engineering blogs and postmortems; official changelogs, source repositories; talks by the implementers |
| E4 | Secondary analysis | Reputable journalism; third-party benchmarks, surveys, and textbooks without a stated systematic method |
| E5 | Opinion and anecdote | Personal blogs, forum posts, single testimonials, marketing material |
## Modifiers
Adjust the initial level by at most one step per factor, and state which modifier was applied:
Downgrade when:
- Conflict of interest: the source benefits from the claim being believed
- Staleness: the source predates changes in a fast-moving topic
- Indirectness: the evidence answers an adjacent question, not the one asked
- Unresolved contradiction with sources at the same or higher level
Upgrade when:
- Independent convergence: two or more unaffiliated sources at the same level agree
- Direct verifiability: the claim is backed by an inspectable artifact (code, data, reproducible steps) that was actually checked
## Grading rules
- A claim inherits the level of the weakest source it necessarily depends on.
- Level orders confidence within a question; relevance is decided first. An E5 firsthand bug report can outweigh an E2 specification for "does implementation X actually do Y" — the spec answers "what X should do."
- Grade after reading the source, never from the domain name or venue alone.
- Never fabricate a level to fill a gap. If no source above E4 exists for a key claim, that absence is itself a finding.
## Workflow
1. Define the research question and topic boundary.
2. Search broadly enough to avoid a narrow local maximum.
3. Grade each source: initial level, applied modifiers, resulting level.
4. Compare claims and positions, weighted by evidence level — do not let ten E5 sources outvote one E2 source.
5. Identify the strongest competing interpretations and the evidence differential between them.
6. Extract the practical implications or next actions.
7. Note what remains unresolved, flagging any conclusion that rests only on E4/E5 evidence.
## Grading discipline
- Keep sources, findings, and interpretations distinct
- Call out contradictions instead of smoothing them over; record the levels on each side
- Surface open questions instead of forcing closure
- For each unresolved contradiction, name the evidence that would settle it and at what level it would need to arrive
## Output
- Research question
- Evidence level legend: one line per level that appears in this output (e.g., `E2 = peer-reviewed or normative primary`), placed before any graded content — never emit bare E-labels without it
- Source set, each entry with: initial level, modifiers applied, resulting level
- Findings, each tagged with the evidence level of its supporting basis
- Evidence profile: for each key claim, the highest level supporting it and the highest level contradicting it
- Competing interpretations, with the evidence differential between them
- Open questions, including claims supported only at E4/E5
- Practical implications
- Next step, including what higher-level evidence would upgrade or settle the weakest key claim
## Exit
End when the source-backed comparison is decided at a sufficient evidence level to hand off, or state the unresolved contradictions, the level of evidence on each side, and the next source — and level — to seek.
If this session produced a deliverable goal or verification conditions, you can hand it to the autonomous loop (when installed) by stating the request in a plain, prefix-less message.
ポイントとなる(AIにいきなり任せる場合と差が出るであろう場所)は以下。
A claim inherits the level of the weakest source it necessarily depends on. (「ある主張は、それが必然的に依存する最も弱いソースのレベルを継承する」)。
これを含めないと、AIエージェントの主張は「大量のジャンクソース」を並べる方法で構成されてしまうことがある。
特に「~~が正しい証拠を探して」のようなダメなプロンプトを投入した場合、エビデンスピラミッドを無視して迎合する回答を創り出す危険があるので対抗として入れている。
Level orders confidence within a question; relevance is decided first. An E5 firsthand bug report can outweigh an E2 specification for "does implementation X actually do Y" — the spec answers "what X should do." (「『実装 X が実際に Y を行うか』という問いには、E2 の仕様より E5 の一次バグレポートを尊重するべきである。仕様は『X が何をすべきか』に答える」ものでしかない)。
EBM的なエビデンスピラミッドを適用する場合によくある「本来こうあるべきなので~~です」的な論理のスライドを抑制するための文。
実際にはこれは既存の言説の棄却のために使われるかもしれない。
