research-synthesis-workflow
Systematic methodology for gathering, analyzing, and synthesizing research from multiple sources into coherent insights and actionable knowledge.
Best use case
research-synthesis-workflow is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Systematic methodology for gathering, analyzing, and synthesizing research from multiple sources into coherent insights and actionable knowledge.
Teams using research-synthesis-workflow 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/research-synthesis-workflow/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How research-synthesis-workflow Compares
| Feature / Agent | research-synthesis-workflow | 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?
Systematic methodology for gathering, analyzing, and synthesizing research from multiple sources into coherent insights and actionable knowledge.
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.
Related Guides
Best AI Skills for Claude
Explore the best AI skills for Claude and Claude Code across coding, research, workflow automation, documentation, and agent operations.
ChatGPT vs Claude for Agent Skills
Compare ChatGPT and Claude for AI agent skills across coding, writing, research, and reusable workflow execution.
SKILL.md Source
# Research Synthesis Workflow This skill provides a systematic methodology for conducting research, synthesizing findings from multiple sources, and producing actionable knowledge artifacts. ## Core Competencies - **Source Evaluation**: Assessing credibility, relevance, and bias - **Information Extraction**: Systematic note-taking and annotation - **Synthesis Methods**: Thematic analysis, meta-analysis, framework building - **Knowledge Artifacts**: Reports, literature reviews, decision frameworks ## Research Workflow Overview ``` ┌──────────────────────────────────────────────────────────────┐ │ Research Synthesis Workflow │ ├──────────────────────────────────────────────────────────────┤ │ │ │ 1. SCOPE 2. GATHER 3. EXTRACT │ │ ┌─────────┐ ┌─────────┐ ┌─────────┐ │ │ │ Define │─────▶│ Find │─────▶│ Capture │ │ │ │ Question│ │ Sources │ │ Insights│ │ │ └─────────┘ └─────────┘ └─────────┘ │ │ │ │ │ │ │ 5. PRODUCE 4. SYNTHESIZE │ │ │ ┌─────────┐ ┌─────────┐ │ │ └─────────▶│ Create │◀─────│ Connect │ │ │ │ Artifact│ │ Themes │ │ │ └─────────┘ └─────────┘ │ │ │ └──────────────────────────────────────────────────────────────┘ ``` ## Phase 1: Scope Definition ### Research Question Framework Transform vague topics into answerable questions: | Type | Pattern | Example | |------|---------|---------| | Exploratory | What is X? How does X work? | What is vector search? | | Comparative | How does X compare to Y? | PostgreSQL vs. Neo4j for graphs? | | Evaluative | Is X effective for Y? | Is RAG effective for technical docs? | | Causal | What causes X? What are effects of X? | What causes LLM hallucinations? | | Prescriptive | How should we implement X? | How to design a RAG pipeline? | ### Scope Boundaries Define explicitly: - **In scope**: Topics to cover - **Out of scope**: Adjacent topics to exclude - **Depth**: Survey (broad) vs. deep-dive (narrow) - **Time bounds**: Cut-off dates for sources - **Source types**: Academic, industry, primary data ### Example Scope Document ```markdown ## Research Scope: Vector Database Selection ### Research Question Which vector database best fits our production RAG system requiring <50ms latency at 10M+ vectors? ### In Scope - Pinecone, Weaviate, Milvus, Qdrant, pgvector - Latency benchmarks at scale - Cost analysis (cloud vs self-hosted) - Operational complexity ### Out of Scope - General-purpose databases with vector extensions - Sub-million vector use cases - Academic/research-only systems ### Success Criteria Recommendation with supporting evidence for 2-3 top candidates ``` ## Phase 2: Source Gathering ### Source Quality Assessment Evaluate each source on: | Criterion | High Quality | Low Quality | |-----------|--------------|-------------| | Authority | Expert author, peer-reviewed | Anonymous, no credentials | | Currency | Recent, updated | Outdated, no dates | | Accuracy | Citations, verifiable | Unsupported claims | | Purpose | Inform, educate | Sell, persuade | | Coverage | Comprehensive | Superficial | ### Source Types and Uses ``` Primary Sources (original) ├── Research papers ├── Official documentation ├── Benchmark data └── Expert interviews Secondary Sources (analysis) ├── Review articles ├── Technical blogs ├── Industry reports └── Book chapters Tertiary Sources (summaries) ├── Wikipedia ├── Textbooks └── Encyclopedias ``` ### Search Strategies **Keyword expansion**: - Start: "vector database performance" - Expand: "approximate nearest neighbor", "HNSW benchmark", "embedding search latency" **Citation chaining**: - Forward: Who cites this paper? - Backward: What does this paper cite? **Author tracking**: - Find key researchers, follow their work ### Source Documentation For each source, capture: ```markdown ## Source: [Title] - **URL/DOI**: - **Author(s)**: - **Date**: - **Type**: [paper/blog/docs/report] - **Quality Score**: [1-5] - **Relevance**: [high/medium/low] - **Key Topics**: - **Notes**: ``` ## Phase 3: Information Extraction ### Structured Note-Taking Use consistent templates for extraction: ```markdown ## Claim: [Specific assertion] - **Source**: [reference] - **Evidence**: [supporting data/reasoning] - **Strength**: [strong/moderate/weak] - **My Assessment**: [agree/disagree/uncertain] - **Related Claims**: [links to other notes] ``` ### Evidence Classification | Type | Description | Weight | |------|-------------|--------| | Empirical | Measured data, experiments | High | | Analytical | Logical derivation | Medium-High | | Anecdotal | Case studies, examples | Medium | | Expert Opinion | Authority statements | Medium | | Theoretical | Model predictions | Medium-Low | ### Contradiction Tracking When sources disagree: ```markdown ## Conflict: [Topic] ### Position A: [Claim] - Sources: [list] - Evidence: [summary] ### Position B: [Claim] - Sources: [list] - Evidence: [summary] ### Analysis - Methodological differences: - Context differences: - Possible resolution: - My conclusion: ``` ## Phase 4: Synthesis ### Thematic Analysis 1. **Code** individual insights with tags 2. **Cluster** related codes into themes 3. **Review** themes for coherence 4. **Define** each theme clearly 5. **Relate** themes to research question ``` Codes Themes Findings ├─ fast queries ─┐ ├─ low latency ─┼── Performance ─┬── Theme 1: Performance ├─ high throughput ─┘ │ varies significantly ├─ managed service ─┐ │ by workload type ├─ self-hosted ─┼── Deployment ─┼── Theme 2: Cloud vs ├─ kubernetes ─┘ │ self-hosted tradeoff ├─ pricing tiers ─┐ │ ├─ compute costs ─┼── Economics ─┴── Theme 3: Total cost ├─ hidden costs ─┘ drives final choice ``` ### Framework Building Create decision frameworks from synthesis: ```markdown ## Vector Database Selection Framework ### Decision Tree 1. Scale requirement? - <1M vectors → pgvector (simplicity) - 1M-100M vectors → Continue to 2 - >100M vectors → Milvus/Weaviate (distributed) 2. Operational capacity? - Limited DevOps → Pinecone (managed) - Strong DevOps → Continue to 3 3. Cost sensitivity? - Budget constrained → Qdrant (open source) - Budget flexible → Evaluate all options ### Comparison Matrix | Criterion | Weight | Pinecone | Milvus | Qdrant | |----------------|--------|----------|--------|--------| | Latency | 30% | 4 | 5 | 4 | | Scalability | 25% | 5 | 5 | 4 | | Operations | 20% | 5 | 3 | 4 | | Cost | 15% | 2 | 4 | 5 | | Features | 10% | 4 | 5 | 4 | | **Weighted** | | **4.0** | **4.4**| **4.2**| ``` ## Phase 5: Knowledge Artifact Production ### Artifact Types | Format | Purpose | Audience | |--------|---------|----------| | Executive Summary | Quick decision support | Leadership | | Technical Report | Detailed analysis | Engineers | | Literature Review | Academic synthesis | Researchers | | Decision Framework | Structured evaluation | Decision makers | | Reference Guide | Quick lookup | Practitioners | ### Structure Templates **Executive Summary** (1-2 pages): 1. Context and question 2. Key findings (3-5 bullets) 3. Recommendation 4. Risks and considerations **Technical Report** (5-20 pages): 1. Executive summary 2. Background and scope 3. Methodology 4. Findings by theme 5. Analysis and discussion 6. Recommendations 7. Appendices (data, sources) ### Quality Checklist Before finalizing: - [ ] Research question answered? - [ ] All claims supported by evidence? - [ ] Contradictions addressed? - [ ] Limitations acknowledged? - [ ] Actionable recommendations? - [ ] Sources properly cited? - [ ] Appropriate for audience? ## Best Practices ### Avoiding Bias - Seek disconfirming evidence actively - Include multiple perspectives - Note your priors and update them - Separate observation from interpretation - Document methodology for transparency ### Managing Scope Creep - Return to research question frequently - Park interesting tangents in "Future Research" - Time-box each phase - Define "good enough" criteria upfront ### Iteration Research is rarely linear: - New sources may require scope adjustment - Synthesis may reveal gaps requiring more gathering - Artifacts may need multiple drafts ## References - `references/evaluation-rubrics.md` - Source quality scoring guides - `references/synthesis-methods.md` - Detailed synthesis techniques - `references/artifact-templates.md` - Document templates and examples
Related Skills
tdd-workflow
Test-driven development workflow with comprehensive coverage requirements including unit, integration, and E2E tests
modular-synthesis-philosophy
Apply modular synthesis principles to system design, workflow architecture, and conceptual frameworks. Use when designing modular systems, creating architecture diagrams using synthesis metaphors, applying signal flow thinking to data pipelines, or translating between audio engineering and software concepts. Triggers on modular architecture design, signal flow diagrams, synthesis-inspired system thinking, or "oscillator/patch" metaphors.
feature-workflow-orchestrator
End-to-end feature development orchestration from planning through deployment with quality gates
taxonomy-modeling-design
Phase 2 of the pentaphase structural-overhaul protocol. Classifies entities, standardizes attributes, establishes relationships, and designs the access framework. Use when the user invokes phase 2 of an overhaul, asks to "design the taxonomy" or "model the structure", or has completed a landscape audit and is ready to redesign. Consumes phase-1-landscape-report.md; produces phase-2-taxonomy-model.md.
systemic-ingestion-normalization
Phase 4 of the pentaphase structural-overhaul protocol. Purges redundancies, enriches and aligns legacy entities to the new schema, executes phased ingestion into the new environment, and audits integrity. Use when the user invokes phase 4 of an overhaul, asks to "migrate the data" or "ingest into the new system", or has a configured environment ready to accept legacy entities. Consumes phase-3-environment-spec.md; produces phase-4-ingestion-report.md.
system-environment-configuration
Phase 3 of the pentaphase structural-overhaul protocol. Translates the taxonomy model into objective technical criteria, evaluates candidate mechanisms or frameworks, instantiates the chosen architecture, and programs validation rules. Use when the user invokes phase 3 of an overhaul, asks to "select a system" or "configure the environment", or has a taxonomy model and is ready to choose technology. Consumes phase-2-taxonomy-model.md; produces phase-3-environment-spec.md.
pentaphase-orchestrator
Threads the full five-phase structural-overhaul protocol — landscape discovery, taxonomy design, environment configuration, systemic ingestion, governance evolution — for any substrate the user names. Use when the user requests a structural overhaul, system redesign, or end-to-end restructuring of a documentation system, asset registry, code monorepo, knowledge base, or operational workflow; or when they explicitly invoke the pentaphase methodology. Coordinates handoffs between phase-skills and seats validation gates between phases.
landscape-discovery-audit
Phase 1 of the pentaphase structural-overhaul protocol. Inventories assets, maps current flow, identifies friction, and defines value metrics for any substrate. Use when the user invokes phase 1 of an overhaul, requests a baseline audit, asks to "discover the landscape" of a system, or wants to understand current state before redesigning. Produces phase-1-landscape-report.md.
governance-evolution-protocol
Phase 5 of the pentaphase structural-overhaul protocol. Codifies operational protocols, onboards the ecosystem of participants, programs behavior monitoring, and establishes an iteration cadence so the substrate evolves rather than calcifies. Use when the user invokes phase 5 of an overhaul, asks to "establish governance" or "lock in the protocols", or has completed ingestion and is ready to declare the substrate operational. Consumes phase-4-ingestion-report.md; produces phase-5-governance-charter.md, which closes the protocol.
dimension-surfacing
Surfaces the parallel domain dimensions implicit in a dense or minimal prompt. Use when a user prompt is small on the surface but plainly implies multiple independent domains needing different expertise; when explicitly invoked by the coliseum-orchestrator skill as Phase 1; or when the user asks "what dimensions does this prompt encode" or "what axes does this break into." Produces a named dimension set where each dimension is independently executable and not a paraphrase of another.
coliseum-dispatch
Dispatches a composed set of assignment envelopes to domain-expert subagents in parallel, in a single message with multiple Agent tool calls. Enforces the no-pingpong gate via the pingpong-detector agent before any dispatch fires. Use when invoked by the coliseum-orchestrator as Phase 3; when envelopes are already composed and the next step is parallel execution; or when the user asks to "fan out" or "dispatch in parallel." Produces a dispatch log capturing what was sent, when, and where returns land.
assignment-composition
Wraps each surfaced dimension as a self-contained 9-section autonomous-work-assignment envelope — scope, context, success criteria, allowed tools, return format, handoff — all the recipient subagent needs to execute without coming back. Use when invoked by coliseum-orchestrator as Phase 2; when dimensions are named and the next step is to make each independently dispatchable; or when the user asks "compose this as an assignment." The no-pingpong gate validates each envelope before dispatch.