evaluative-research
Methodology for evaluating options, comparing technologies, and making evidence-based decisions between alternatives. Use when the user needs to choose between competing approaches, libraries, or architectures with a structured comparison. Triggers when user says "compare these options", "which approach should we use", "evaluate alternatives", "help me decide between X and Y", "technology comparison", or wants a structured pros/cons/recommendation analysis.
Best use case
evaluative-research is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Methodology for evaluating options, comparing technologies, and making evidence-based decisions between alternatives. Use when the user needs to choose between competing approaches, libraries, or architectures with a structured comparison. Triggers when user says "compare these options", "which approach should we use", "evaluate alternatives", "help me decide between X and Y", "technology comparison", or wants a structured pros/cons/recommendation analysis.
Teams using evaluative-research should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/evaluative-research/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How evaluative-research Compares
| Feature / Agent | evaluative-research | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Methodology for evaluating options, comparing technologies, and making evidence-based decisions between alternatives. Use when the user needs to choose between competing approaches, libraries, or architectures with a structured comparison. Triggers when user says "compare these options", "which approach should we use", "evaluate alternatives", "help me decide between X and Y", "technology comparison", or wants a structured pros/cons/recommendation analysis.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Evaluative Research Methodology
A structured approach to evaluating options and making evidence-based decisions
between alternatives. Use this methodology when the core question is "which
option should we choose?" rather than "what happened?" or "how does this work?"
## When to Use
Use this methodology when you need to:
- Compare libraries, frameworks, or services for a specific use case
- Evaluate migration paths between technologies
- Assess build vs. buy decisions
- Choose between architectural approaches
- Analyze trade-offs between competing solutions
- Conduct technology landscape analysis
**Key indicator**: There are multiple viable options and you need a structured
way to decide between them.
**Not for**: Debugging or root cause analysis (use investigation-methodology),
finding what's missing from a spec (use gap-analysis), or understanding how
something works (use general research).
## Evaluative Research Framework
### Phase 1: Define the Decision
Before comparing options, articulate what you're deciding:
- **Decision statement**: Frame as a clear question ("Which editor library
should we use for rich text editing?")
- **Decision drivers**: What matters most? (performance, DX, community,
maintenance, cost, time-to-implement)
- **Constraints**: Non-negotiable requirements that eliminate options early
- **Context**: Current architecture, team expertise, existing patterns
- **Stakeholders**: Who is affected by this decision?
**Stopping point**: You can state the decision, its drivers, and constraints in
2-3 sentences.
### Phase 2: Landscape Scan
Cast a wide net to identify all viable options:
- **Identify candidates**: Research the space broadly before narrowing
- **Quick-filter**: Eliminate options that violate hard constraints
- **Categorize**: Group options by approach (e.g., "full framework" vs.
"lightweight library" vs. "build custom")
- **Select finalists**: 2-4 options for deep evaluation (more than 4 becomes
unwieldy)
**Sources to check:**
- Official documentation and getting-started guides
- GitHub: stars, issues, commit frequency, release cadence
- npm/package registry: download trends, bundle size, dependency count
- Community: Stack Overflow activity, Discord/forum presence
- Existing codebase: similar patterns already implemented
**Stopping point**: You have 2-4 finalists and can explain why others were
eliminated.
### Phase 3: Deep Evaluation
Evaluate each finalist against your decision drivers:
- **Hands-on assessment**: Read docs, review API surface, check examples
- **Codebase fit**: How does each option integrate with existing architecture?
- **Effort estimate**: What does adoption look like? (learning curve, migration
effort, boilerplate)
- **Risk assessment**: What could go wrong? (abandonment, breaking changes,
scaling limits)
- **Long-term trajectory**: Is the project growing, stable, or declining?
**For each option, document:**
- Description (what it is, approach it takes)
- Strengths (evidence-backed, not just marketing)
- Weaknesses (real limitations, not hypothetical)
- Effort estimate (Low/Medium/High with rationale)
- Risk level (Low/Medium/High with rationale)
**Stopping point**: You can articulate the genuine trade-offs between finalists.
### Phase 4: Comparative Analysis
Synthesize findings into a decision:
- **Build comparison matrix**: Rate each option against each decision driver
- **Identify key trade-offs**: What do you give up with each choice?
- **Consider second-order effects**: How does each option affect adjacent
systems?
- **Weight by priority**: Not all criteria are equal — weight by what matters
most
- **Formulate recommendation**: Clear primary recommendation with confidence
level
**Comparison Matrix Format:**
| Criteria | Weight | Option A | Option B | Option C |
| --------------- | ------ | -------- | -------- | -------- |
| [Driver 1] | High | [Rating] | [Rating] | [Rating] |
| [Driver 2] | Medium | [Rating] | [Rating] | [Rating] |
| [Driver 3] | Low | [Rating] | [Rating] | [Rating] |
| Effort | — | [L/M/H] | [L/M/H] | [L/M/H] |
| Risk | — | [L/M/H] | [L/M/H] | [L/M/H] |
| **Overall Fit** | — | [Rating] | [Rating] | [Rating] |
**Stopping point**: You have a clear recommendation with evidence-backed
rationale.
## Output Format
Structure evaluative research outputs as:
```markdown
# Investigation: [Decision Topic]
## Summary
[2-3 sentences: what decision was needed, what was evaluated, what's
recommended]
## Decision Context
- **Decision**: [Clear question being answered]
- **Drivers**: [What matters most, in priority order]
- **Constraints**: [Hard requirements]
- **Current state**: [Relevant existing architecture/tools]
## Options Evaluated
### Option 1: [Name]
**What it is**: [Brief description] **Strengths**:
- [Evidence-backed strength]
**Weaknesses**:
- [Evidence-backed weakness]
**Effort**: [Low/Medium/High] — [rationale] **Risk**: [Low/Medium/High] —
[rationale]
[Repeat for each option]
### Options Eliminated Early
- [Option X]: Eliminated because [reason]
## Comparison
| Criteria | Option 1 | Option 2 | Option 3 |
| -------- | -------- | -------- | -------- |
| ... | ... | ... | ... |
### Key Trade-offs
[The 2-3 most significant trade-offs between the top options]
## Recommendation
**Primary**: [Option name] — [Confidence: High/Medium/Low]
**Rationale**: [Why this option, tied to decision drivers and evidence]
**When to reconsider**: [Under what circumstances would you choose differently?]
## Next Steps
1. [Immediate action]
2. [Validation step]
3. [Follow-up if needed]
## References
- [Links to docs, benchmarks, repos evaluated]
```
## Methodological Principles
**Evidence over opinion**: Every rating in the comparison matrix should trace
back to something concrete — documentation, benchmarks, code review, or
real-world usage data.
**Honest about uncertainty**: If you can't properly evaluate a criterion, say
so. "Unable to assess without prototyping" is better than a guess.
**Decision drivers first**: Start from what matters, not from what's easy to
compare. Don't let available data drive the criteria.
**Disconfirm actively**: For your recommended option, try hardest to find its
weaknesses. For the runner-up, try hardest to find its strengths.
**State the trade-off clearly**: The best decisions acknowledge what you're
giving up, not just what you're gaining.
## Quality Checklist
Before concluding evaluative research:
- [ ] Decision statement is clear and specific
- [ ] Decision drivers reflect actual priorities (not generic criteria)
- [ ] At least 2-4 options were seriously evaluated
- [ ] Eliminated options have documented rationale
- [ ] Strengths and weaknesses are evidence-backed
- [ ] Comparison matrix uses weighted criteria
- [ ] Key trade-offs are explicitly stated
- [ ] Recommendation includes confidence level
- [ ] "When to reconsider" conditions are specified
- [ ] References are included for verification
## Scaling to Complexity
**Quick evaluation** (clear winner, limited scope):
- 2-3 options, 3-4 criteria
- Focus on the one criterion that differentiates
- Stop when one option clearly dominates
**Standard evaluation** (multiple good options):
- 3-4 options, 5-7 criteria
- Full comparison matrix with weights
- Stop when trade-offs are clear and recommendation is defensible
**Strategic evaluation** (high-stakes, long-term impact):
- 3-5 options, 7+ criteria
- Prototype or proof-of-concept for top candidates
- Stop when you have high confidence or documented why certainty isn't possibleRelated Skills
deep-research
Multi-agent deep research pipeline for complex questions (EIP analysis, architecture decisions, cross-client comparisons, protocol design). Use when single-shot answers are insufficient and you need decomposition, parallel investigation, adversarial critique, and a formal output document.
context7-auto-research
Automatically fetch latest library/framework documentation for Claude Code via Context7 API
code-surgeon-context-researcher
Use when analyzing a codebase to select relevant files, build dependency maps, and extract architectural patterns for informed implementation planning
chatgpt-deep-research
DEPRECATED - Use gpt-researcher skill instead. This browser automation approach has been replaced with the local GPT-Researcher framework using OpenAI o1.
api-researcher
Expert API research including discovery, evaluation, integration analysis, and documentation review
analyzing-research-papers
Expert methodology for analyzing and summarizing research papers, extracting key contributions, methodological details, and contextualizing findings. Use when reading papers from PDFs, DOIs, or URLs to create structured summaries for researchers.
agent-ops-research
Deep topic research with optional issue creation from findings. Use for researching technologies, patterns, libraries, or any topic requiring investigation.
Academic Researcher
Academic paper search across 14+ scholarly platforms including arXiv, PubMed, Google Scholar, Web of Science, Semantic Scholar, Sci-Hub, and more. Use for literature review, research discovery, and citation management.
academic-research
Create comprehensive academic research notes with deep literature coverage. Auto-detects language (EN prompt→EN output, TR prompt→TR output). Supports Obsidian markdown and PDF. Performs 8-15 iterative search cycles with 25-50+ sources for comprehensive coverage. Uses footnote citations and visual overviews.
academic-research-writer
Write academic research documents following academic guidelines with peer-reviewed sources from Google Scholar and other academic databases. Always verify source credibility and generate IEEE standard references. Use for research papers, literature reviews, technical reports, theses, dissertations, conference papers, and academic proposals requiring proper citations and scholarly rigor.
academic-deep-research
Transparent, rigorous research with full methodology — not a black-box API wrapper. Conducts exhaustive investigation through mandated 2-cycle research per theme, APA 7th citations, evidence hierarchy, and 3 user checkpoints. Self-contained using native OpenClaw tools (web_search, web_fetch, sessions_spawn). Use for literature reviews, competitive intelligence, or any research requiring academic rigor and reproducibility.
21-understand-research-150
[21] UNDERSTAND. Deep research workflow for this project using 150% scope (100% core + 50% boundary), evidence-based reasoning, and structured investigation notes. Use when the task requires investigation, root-cause analysis, or mapping unknown areas. Always maintain a research log file that captures findings, hypotheses, and next branches; use web.run when external verification is needed.