Back to list
rakibdev

github

by rakibdev

System Backup & Personal Notes.

1🍴 0📅 Jan 19, 2026

SKILL.md


name: github description: Browse GitHub URLs (don't use webfetch), repos, issues, search code and manage PR. pattern: github.com/[\w-]+/[\w-]+

Browse

URL contains blob (file), tree (dir), issues/... or pull/....

bun {dir}/scripts/fetch.ts <github_url>

Code Search

bun {dir}/scripts/grep.ts <query> [--page N]
bun {dir}/scripts/grep.ts 'useQuery filename:\*.tsx' # global
bun {dir}/scripts/grep.ts 'useQuery repo:opencode-ai/opencode' # single repo
  • Use combination of import name, and lang:tsx and path: if unique (e.g. config files).
  • Always use substrings to match wide results (e.g. components/ui, tiptap matches two lib imports)

Search Repos

bun {dir}/scripts/search-repos.ts <query> [--page N] [--stars N] [--sort updated|best-match]
bun {dir}/scripts/search-repos.ts 'topic:neovim' --stars 1000 --sort best-match
  • Use 1-2 generic terms (framework name) for wide results. Read at least 3 pages.
  • Narrow by language: lang:ts
  • Default is stars:100 (minimum) and sorted by updated to find underrated repos.

Search Issues

bun {dir}/scripts/search-issues.ts <query>

Pull Request Operations

bun {dir}/scripts/pr.ts <owner> <repo> <pr_number> <method> [...args]
bun {dir}/scripts/pr.ts facebook react 35404 comment src/index.ts 10 15 'This block could be refactored'
  • When reviewing a PR, first use diff to identify specific code blocks
  • Make separate comments on specific lines instead of a single top-level review

Score

Total Score

45/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

1ヶ月以内に更新

+10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

+5

Reviews

💬

Reviews coming soon