원클릭으로
fetch-star-repos
Fetch GitHub starred repos, analyze one with LLM, and propose improvements via PR
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Fetch GitHub starred repos, analyze one with LLM, and propose improvements via PR
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | fetch-star-repos |
| description | Fetch GitHub starred repos, analyze one with LLM, and propose improvements via PR |
| allowed-tools | Bash, Read |
| user-invocable | true |
Fetches your recently starred GitHub repos (last 30 days), then runs the research scout to analyze ONE repo and propose concrete code improvements via PR.
.env.local and fetch starred repos:set -a && source .env.local && set +a && LOOKBACK_DAYS=30 python3 scripts/fetch_github_stars.py
Required env vars in .env.local:
GITHUB_USERNAME — Your GitHub usernameOPENROUTER_API_KEY — For LLM analysiscat .claude/bookmarks.json | python3 -c "import sys,json; bm=json.load(sys.stdin); print(f'Total starred repos: {len(bm)}'); [print(f' - [{b.get(\"source\",\"?\")}] {b[\"url\"][:80]}') for b in bm[-10:]]"
set -a && source .env.local && set +a && LOOKBACK_DAYS=30 python3 scripts/run_research_scout.py
.claude/research-scout-findings.md exists), create a PR:BRANCH="research-scout/$(date +%Y-%m-%d-%H%M)"
git checkout -b "$BRANCH"
git add .claude/research-scout-state.json .claude/bookmarks.json .claude/research-scout-findings.md
git commit -m "research-scout: improvement proposal from $(date +%Y-%m-%d)"
git push -u origin "$BRANCH"
gh pr create --title "research-scout: improvement proposal $(date +%Y-%m-%d)" --body "$(cat .claude/research-scout-findings.md)" --label "research-scout"
git checkout main
Report: how many repos were fetched, which repo was analyzed, what improvements were proposed, and whether a PR was created.
Deep-dive analysis of an open-source repository. Clones the repo, explores architecture/patterns/internals, and produces up to 30 structured Markdown files in analysis/<repo-name>/. Use when analyzing a GitHub repo for learnings, comparison, or adoption roadmap.
Review code changes for quality, security, and correctness. Use this before merging PRs, after significant refactors, or when reviewing agent output.
Review and optimize LLM API costs in the orchestrator. Analyze model routing, budget tracking, prompt caching, and retry logic for cost efficiency.
Deploy services using Docker/OrbStack. Use this to build and deploy containers, run health checks, and manage deployments.
Review production code and update all documentation under docs/ to match the current codebase state.
Build and manage Docker containers via OrbStack. Use this to build images, run containers, check service health, and manage docker-compose services.