
Github Trending
- 4 installs
- 27 repo stars
- Updated August 1, 2026
- zjy365/gh-explorer
Helps with ai & agent building tasks during AI-assisted development.
About
github-trending is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.
- github-trending
- AI & Agent Building
- AI-coding skill
Github Trending by the numbers
- 4 all-time installs (skills.sh)
- Ranked #13,372 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 2, 2026 (Skillselion catalog sync)
npx skills add https://github.com/zjy365/gh-explorer --skill github-trendingAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 4 |
|---|---|
| repo stars | ★ 27 |
| Last updated | August 1, 2026 |
| Repository | zjy365/gh-explorer ↗ |
What it does
Helps with ai & agent building tasks during AI-assisted development.
Files
GitHub Trending
Overview
Use gh-explorer to fetch current GitHub Trending repositories and return concise, source-linked results. Prefer machine-readable JSON when you need to reason over results; use Markdown when the user wants a shareable report.
Quick Start
Run the CLI through npx so the user does not need a global install:
npx --yes gh-explorer trending --format json --limit 10Common variants:
- Today's overall trending:
npx --yes gh-explorer trending --format json --limit 10 - Weekly TypeScript trending:
npx --yes gh-explorer trending --language typescript --since weekly --format json --limit 10 - Monthly markdown report:
npx --yes gh-explorer trending --since monthly --format markdown --limit 15 - Save an artifact:
npx --yes gh-explorer trending --format markdown --output github-trending.md
Workflow
1. Translate the user's request into CLI filters:
--language <language>for language-specific trends.--since daily|weekly|monthlyfor the time window. Default todaily.--limit <number>for result count. Use 10 unless the user asks otherwise.--format jsonfor analysis,--format markdownfor a report,--format tablefor direct terminal display.- For domain focus beyond language, fetch JSON first and apply agent-side filtering over repository names, descriptions, and languages.
2. Run the command and inspect the output. If JSON is requested, expect each repository to include:
rankauthornameurldescriptionlanguagestarsstarsInPeriodforks
3. Summarize for the user with links and enough context to act:
- Lead with the date/time window and filters used.
- Highlight the top repositories and why they are notable.
- Mention language, stars, new stars, and repo URL when relevant.
- Keep subjective recommendations clearly separated from raw trend data.
Output Guidance
For discovery requests, produce a compact ranked list:
1. owner/repo - one-line description
Language: TypeScript | Stars: 12.3k | New stars: +456 | URL: https://github.com/owner/repo
Why it matters: short agent-written interpretation.For "what should I look at?" requests, group by usefulness:
- Production-ready tools
- Interesting experiments
- Learning resources
- Repositories worth monitoring
For automation or downstream processing, return JSON-derived facts and avoid table formatting.
Failure Handling
If GitHub blocks or returns an empty result, retry once with a smaller limit or without optional topic filters. If the command still fails, report the exact command and error, then suggest trying again later because GitHub Trending is scraped from GitHub's public page.
interface:
display_name: "GitHub Trending"
short_description: "Find and summarize GitHub trending repositories."
default_prompt: "Use $github-trending to find today's GitHub trending repositories and summarize the most relevant projects."