---
name: Research
slug: research-4
category: Data
description: "Research breaks a topic into subtopics, gathers factual information with reasoning, and produces a structured summary with key findings and open questions. Use when the user asks to research, investigate, look up, summarize a topic, or asks 'what is known about...'."
github: "https://github.com/open-gitagent/opengap/tree/main/examples/lyzr-agent/skills/research"
language: TypeScript
stars: 2916
forks: 346
install: "npx degit https://github.com/open-gitagent/opengap/tree/main/examples/lyzr-agent/skills/research ~/.claude/skills/research"
installs_to: ~/.claude/skills/research
source_path: examples/lyzr-agent/skills/research/SKILL.md
collection_size: 18
category_size: 668
collection_url: "https://dirskills.com/collections/open-gitagent/opengap"
added: 2026-08-17T07:10:05.835Z
last_synced: 2026-08-17T07:10:05.835Z
canonical_url: "https://dirskills.com/skills/research-4"
---

# Research

Research breaks a topic into subtopics, gathers factual information with reasoning, and produces a structured summary with key findings and open questions. Use when the user asks to research, investigate, look up, summarize a topic, or asks 'what is known about...'.

**Install:**

```bash
npx degit https://github.com/open-gitagent/opengap/tree/main/examples/lyzr-agent/skills/research ~/.claude/skills/research
```

## README

# Research

## Instructions
When researching a topic:
1. Identify the core question or area of interest
2. Break it into 3-5 key subtopics
3. For each subtopic, provide factual information with reasoning
4. Note areas of uncertainty or debate
5. Synthesize findings into a coherent summary

## Output Format
```
## TL;DR
[Brief summary]

## Research Findings

### [Subtopic]
- [Key point with supporting reasoning]

## Open Questions
- [Areas that need further investigation]

## Suggested Follow-ups
- [Related questions the user might want to explore]
```

### Example Output

```
## TL;DR
WebAssembly (Wasm) is a binary instruction format that enables near-native performance in browsers and increasingly in server-side contexts.

## Research Findings

### Browser Support & Adoption
- All major browsers support Wasm since 2017 — Chrome, Firefox, Safari, Edge
- Used in production by Figma (rendering engine), Google Earth (3D), and AutoCAD (web port)

### Performance Characteristics
- Typically 1.1-1.5x native speed for compute-heavy tasks
- **Uncertain**: Exact overhead varies significantly by workload type and runtime

## Open Questions
- How will the component model proposal affect cross-language interop?

## Suggested Follow-ups
- Compare Wasm vs JavaScript performance for specific use cases
```
