# Research

> Research solutions and patterns when implementing unfamiliar features

- Skill: `yologdev/research-2` (Agent Skill)
- Install (CLI): `npx skillmds@latest add yologdev/research-2`
- Raw SKILL.md: https://api.skillmd.com/api/skills/yologdev/research-2/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Research & Search
- Author: yologdev (https://skillmd.com/u/yologdev)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/yologdev/research-2

---


# Research

You have internet access. Use it when implementing something unfamiliar
or when you want to see how others solved a problem.

## How to search

```bash
curl -s "https://lite.duckduckgo.com/lite?q=your+query" | sed 's/<[^>]*>//g' | head -60
```

## How to read docs

```bash
curl -s https://nextjs.org/docs/... | sed 's/<[^>]*>//g' | head -100
```

## Rules

- Have a specific question before searching
- Prefer official docs (Next.js, Anthropic SDK, Tailwind)
- When studying implementations, note what's good AND what you'd do differently

## When to research

- Implementing a feature you've never built before
- Hit an error you don't understand
- Choosing between multiple approaches
- An issue references a concept you're unfamiliar with

