A CLI tool to search GitHub issues across multiple design system repositories.
- Enable corepack (if using pnpm for the first time):
corepack enable- Install dependencies:
pnpm install- Create a
.envfile with your GitHub token (recommended to avoid rate limits):
GITHUB_TOKEN=your_github_token_hereGet a token at: https://github.com/settings/tokens (no special scopes needed for public repos)
# Search for issues
pnpm dev "your search query"
# Examples
pnpm dev "button"
pnpm dev "accessibility"
pnpm dev "dark mode"- Searches issue titles and bodies across all repositories defined in
repositories.ts - Fetches up to 100 issues per repository (both open and closed)
- Displays colored output with repository, issue number, title, state, author, and URL
- Without token: 60 requests/hour
- With token: 5,000 requests/hour