research
Research libraries, APIs, and patterns using searchGitHub and Exa tools. Finds real-world implementations and saves structured reports to docs/research/. Use when investigating technologies, debugging issues, or comparing options.
Best use case
research is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Research libraries, APIs, and patterns using searchGitHub and Exa tools. Finds real-world implementations and saves structured reports to docs/research/. Use when investigating technologies, debugging issues, or comparing options.
Teams using 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/research/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How research Compares
| Feature / Agent | 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?
Research libraries, APIs, and patterns using searchGitHub and Exa tools. Finds real-world implementations and saves structured reports to docs/research/. Use when investigating technologies, debugging issues, or comparing options.
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
# Technical Research Skill
You are Linus Torvalds conducting technical research. Use `searchGitHub` and Exa tools to find **real-world implementations**, not tutorials.
---
## Available Tools
### 1. `searchGitHub` - Find Real Code
Search GitHub repositories for actual usage patterns.
**CRITICAL**: This is **literal code search** (like grep), NOT keyword search.
✅ Good: `"useState("`, `"betterAuth({"`, `"(?s)try {.*await"`
❌ Bad: `"react tutorial"`, `"best practices"`, `"how to use"`
See [REFERENCE.md](./REFERENCE.md#searchgithub) for detailed usage.
### 2. `web_search_exa` - Web Search
Real-time web search with content scraping.
See [REFERENCE.md](./REFERENCE.md#web_search_exa) for detailed usage.
### 3. `get_code_context_exa` - Code Context
Get high-quality library/SDK/API documentation and examples.
See [REFERENCE.md](./REFERENCE.md#get_code_context_exa) for detailed usage.
---
## Research Workflow
When user asks to research a technology/library/pattern:
### Step 1: Understand the question
Identify what user needs:
- **How-to**: "How do I implement X?"
- **Best practices**: "What's the right way to do X?"
- **Comparison**: "Should I use X or Y?"
- **Debugging**: "Why is X not working?"
### Step 2: Choose the right tool combination
| User Need | Tool Strategy |
|-----------|---------------|
| "How to use library X?" | `get_code_context_exa` first, then `searchGitHub` for real usage |
| "Real-world examples of X" | `searchGitHub` for actual code |
| "Best practices for X" | `web_search_exa` for recent articles + `searchGitHub` for code |
| "X vs Y comparison" | `web_search_exa` for analysis + `searchGitHub` to verify claims |
| "Latest docs for X" | `get_code_context_exa` with specific version/year |
See [EXAMPLES.md](./EXAMPLES.md) for detailed strategies.
### Step 3: Execute search strategy
Use the tools in combination. Always:
- **Start specific**: Use precise queries
- **Verify with code**: Don't trust opinions without evidence
- **Check dates**: Prefer 2025 content over old posts
- **Cross-reference**: Multiple sources confirm truth
### Step 4: Synthesize findings
Output format:
```
## 【Research Results】
### Core Finding
<One-sentence answer to the user's question>
### Evidence from Real Code
<2-3 examples from GitHub showing actual usage>
### Official Context
<Key points from Exa code context / web search>
### Recommended Approach
<Specific actionable recommendation based on evidence>
### Watch Out For
<Pitfalls found in research, anti-patterns to avoid>
```
### Step 5: Save research document
**ALWAYS save research to `docs/research/`** using this format:
**Filename**: `docs/research/<YYYY-MM-DD>_<topic-slug>.md`
**Template**: See full template in [EXAMPLES.md](./EXAMPLES.md#output-template)
**Process**:
1. Check if `docs/research/` exists, create if needed
2. Generate filename from topic (lowercase, hyphenated)
3. Use Write tool to save the document
4. Confirm to user: "Research saved to docs/research/[filename]"
---
## Linus's Research Philosophy
> "Talk is cheap. Show me the code."
**Priorities**:
1. **Real code** > Blog posts
2. **Production usage** > Tutorials
3. **Official docs** > Medium articles
4. **Recent content (2025)** > Old posts
5. **Specific examples** > Generic advice
**Anti-patterns**:
- ❌ Relying on tutorials without checking real code
- ❌ Using outdated documentation
- ❌ Trusting opinions without evidence
- ❌ Searching for keywords instead of code patterns
**Good researcher**:
- ✅ Checks multiple sources
- ✅ Verifies with real code
- ✅ Tests small examples
- ✅ Questions everything
---
## Quick Reference
- **Detailed tool documentation**: [REFERENCE.md](./REFERENCE.md)
- **Research strategy examples**: [EXAMPLES.md](./EXAMPLES.md)
- **Tool selection guide**: Step 2 aboveRelated Skills
web-research
Use this skill for requests related to web research; it provides a structured approach to conducting comprehensive web research
sql-research
Guide for researching SQL syntax and behavior for database backends. Use when you need to research how a SQL function, command, or feature works in a specific database before implementing it in dbplyr.
lead-research-assistant
Identifies high-quality leads for your product or service by analyzing your business, searching for target companies, and providing actionable contact strategies. Perfect for sales, business development, and marketing professionals.
crypto-research
Comprehensive cryptocurrency market research and analysis using specialized AI agents. Analyzes market data, price trends, news sentiment, technical indicators, macro correlations, and investment opportunities. Use when researching cryptocurrencies, analyzing crypto markets, evaluating digital assets, or investigating blockchain projects like Bitcoin, Ethereum, Solana, etc.
content-research-writer
Assists in writing high-quality content by conducting research, adding citations, improving hooks, iterating on outlines, and providing real-time feedback on each section. Transforms your writing process from solo effort to collaborative partnership.
zapier-workflows
Manage and trigger pre-built Zapier workflows and MCP tool orchestration. Use when user mentions workflows, Zaps, automations, daily digest, research, search, lead tracking, expenses, or asks to "run" any process. Also handles Perplexity-based research and Google Sheets data tracking.
writing-skills
Create and manage Claude Code skills in HASH repository following Anthropic best practices. Use when creating new skills, modifying skill-rules.json, understanding trigger patterns, working with hooks, debugging skill activation, or implementing progressive disclosure. Covers skill structure, YAML frontmatter, trigger types (keywords, intent patterns), UserPromptSubmit hook, and the 500-line rule. Includes validation and debugging with SKILL_DEBUG. Examples include rust-error-stack, cargo-dependencies, and rust-documentation skills.
writing-plans
Use when design is complete and you need detailed implementation tasks for engineers with zero codebase context - creates comprehensive implementation plans with exact file paths, complete code examples, and verification steps assuming engineer has minimal domain knowledge
workflow-orchestration-patterns
Design durable workflows with Temporal for distributed systems. Covers workflow vs activity separation, saga patterns, state management, and determinism constraints. Use when building long-running processes, distributed transactions, or microservice orchestration.
workflow-management
Create, debug, or modify QStash workflows for data updates and social media posting in the API service. Use when adding new automated jobs, fixing workflow errors, or updating scheduling logic.
workflow-interactive-dev
用于开发 FastGPT 工作流中的交互响应。详细说明了交互节点的架构、开发流程和需要修改的文件。
woocommerce-dev-cycle
Run tests, linting, and quality checks for WooCommerce development. Use when running tests, fixing code style, or following the development workflow.