Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.reposeek.ai/llms.txt

Use this file to discover all available pages before exploring further.

Quickstart

Run your first Reposeek search in a few minutes.

1. Sign up

Create an account at reposeek.ai.

2. Create an API key

Open reposeek.ai/dashboard/api-keys, create a key, and copy it immediately. API keys are shown once when created. If you lose the full value, create or regenerate a key.
REPOSEEK_API_KEY="replace-me" npx @reposeek/cli@latest search "react admin dashboard" --limit 3
--limit must be an integer from 1 to 10. If omitted, Reposeek returns 3 results.

4. Inspect the response

{
  "request_id": "req_a1b2c3d4e5f6",
  "results": [
    {
      "rank": 1,
      "repo": "marmelab/react-admin",
      "url": "https://github.com/marmelab/react-admin",
      "score": 0.97,
      "summary": "A frontend framework for building B2B applications on top of REST/GraphQL APIs, using React.",
      "stars": 24000,
      "forks": 5300,
      "license": "MIT"
    }
  ]
}
Use score, summary, stars, and license to compare candidates. Then inspect the selected repo’s docs or source before implementing.

Next steps