Research

Research solutions and patterns when implementing unfamiliar features

yologdev Updated

File contents

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

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

How to read docs

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

yologdev/yopedia/tree/main/.yoyo/skills/research commit f2a8b4fe26

Frequently asked questions

npx skillmds@latest add yologdev/research-2