← skills.oriz.in

$skill invoke code-research

code-research

Research open-source repositories to understand how something is built or works.

Code Research

Use github_codebase_search to explore external open-source repositories and understand their implementation details.

When To Use

Steps

  1. Identify the GitHub repository (e.g. vercel/next.js, facebook/react).
  2. Break the user’s question into multiple focused search angles (e.g. entry points, data flow, config, tests).
  3. Fire multiple github_codebase_search calls in parallel — one per angle. Do not run them sequentially.
  4. Read and cross-reference the returned files/sections from all queries.
  5. Summarize findings with concrete file paths and code references.

Parallel Queries

Always decompose the research into 2-4 concurrent searches. For example, to understand how a repo handles authentication:

Run all queries at the same time to minimize latency.

Query Template

“Find how implements . Include entry points, key functions, and data flow.”


edit on github  ·  back to toolbox