원클릭으로
github-trending
Tracks trending GitHub repositories in crypto, DeFi, AI agents, and related domains
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Tracks trending GitHub repositories in crypto, DeFi, AI agents, and related domains
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Scans arxiv for new papers in crypto, DeFi, MEV, ZK, and AI-agent domains
Generates a structured changelog from git history, PRs, and release notes
Monitors CI/CD pipeline status, build times, failure patterns, and flaky tests
Monitors competitor projects for new releases, partnerships, TVL changes, and strategic moves
Produces a concise daily digest of market activity, research findings, and notable events
Audits project dependencies for vulnerabilities, outdated packages, and license compliance
SOC 직업 분류 기준
| name | github-trending |
| description | Tracks trending GitHub repositories in crypto, DeFi, AI agents, and related domains |
| tags | ["research","github","trending","developer","open-source"] |
| agent | researcher |
| var | ${var} filters to a specific language or topic. If set (e.g., "rust", "AI agents"), narrow the scan. If empty, scan all relevant topics. |
Priority: P2 (runs daily) Schedule: 09:00 UTC Data sources: GitHub API, GitHub trending page Output: Trending repos report in
memory/research/github/
You are executing the github-trending skill for the Researcher agent.
Read memory/research/github/trending-state.json:
{
"last_scan": "ISO-8601",
"tracked_repos": {
"owner/repo": {
"first_seen": "ISO-8601",
"stars_when_found": 150,
"stars_current": 890,
"language": "Rust",
"topic": "solana"
}
},
"search_topics": ["solana", "defi", "mev", "blockchain", "smart-contract", "autonomous-agent", "llm-agent", "trading-bot", "zero-knowledge"]
}
Initialize with defaults if not found.
Run multiple GitHub searches for each topic:
curl -s -H "Authorization: token ${GITHUB_TOKEN}" \
"https://api.github.com/search/repositories?q=topic:{topic}+created:>{30_days_ago}&sort=stars&order=desc&per_page=20"
Also search for recently active repos with high star velocity:
curl -s -H "Authorization: token ${GITHUB_TOKEN}" \
"https://api.github.com/search/repositories?q=topic:{topic}+pushed:>{7_days_ago}+stars:>50&sort=stars&order=desc&per_page=20"
For repos already in tracked_repos, calculate:
Flag repos with:
For top 10 repos by star velocity, fetch additional data:
curl -s -H "Authorization: token ${GITHUB_TOKEN}" "https://api.github.com/repos/{owner}/{repo}"
curl -s -H "Authorization: token ${GITHUB_TOKEN}" "https://api.github.com/repos/{owner}/{repo}/contributors?per_page=5"
curl -s -H "Authorization: token ${GITHUB_TOKEN}" "https://api.github.com/repos/{owner}/{repo}/commits?per_page=10"
Assess:
{
"scan_date": "2024-01-15",
"trending_repos": [
{
"repo": "owner/repo",
"url": "https://github.com/owner/repo",
"description": "...",
"language": "Rust",
"stars": 890,
"stars_7d_gain": 340,
"star_velocity": 48.6,
"forks": 120,
"contributors": 15,
"last_commit": "2024-01-14",
"topics": ["solana", "defi"],
"category": "breakout | steady_growth | new_entrant",
"relevance": "Why this matters to our domain",
"notable": true
}
],
"summary": {
"total_repos_scanned": 200,
"new_repos_found": 12,
"breakout_repos": 3,
"top_languages": {"Rust": 8, "TypeScript": 6, "Python": 4},
"hottest_topics": ["AI agents", "restaking"]
}
}
memory/research/github/{YYYY-MM-DD}.jsonmemory/research/github/trending-state.jsonSKILL_OK — scan complete, N trending repos identifiedSKILL_PARTIAL — rate limit hit, partial resultsSKILL_EMPTY — no notable trending repos foundSKILL_FAIL — could not access GitHub APICommit message format: researcher: github-trending — {N} repos, {M} breakouts [{top_repo}]