GitHub Projects Explorer
by @manifoldor
Search and analyze trending GitHub repositories by topics, star count, and creation date. Supports filtering by multiple tags, minimum stars, and time range....
clawhub install explorerπ About This Skill
name: explorer description: Search and analyze trending GitHub repositories by topics, star count, and creation date. Supports filtering by multiple tags, minimum stars, and time range. Use when the user needs to discover popular open-source projects on GitHub. Optionally uses GITHUB_TOKEN for higher API rate limits.
GitHub Projects Explorer
Discover and analyze trending open-source projects on GitHub, with support for multi-dimensional search and filtering.
Features
Prerequisites
Optional: Configure GitHub Token
The GitHub API has rate limits (60 requests/hour unauthenticated, 5000 requests/hour authenticated).
# Get a Token: https://github.com/settings/tokens
export GITHUB_TOKEN="your_github_token"
To add it permanently to ~/.zshrc:
echo 'export GITHUB_TOKEN="your-token"' >> ~/.zshrc
source ~/.zshrc
Usage
Basic Search
Search by Topic:
python3 scripts/github_projects.py --topic python
Multiple Topics (AND relation):
python3 scripts/github_projects.py --topic python --topic machine-learning
Filter by Star Count
# Find Python projects with Stars > 1000
python3 scripts/github_projects.py --topic python --stars 1000Find AI projects with Stars > 10000
python3 scripts/github_projects.py --topic ai --stars 10000
Filter by Time (Last N Days)
# Python projects created in the last 30 days
python3 scripts/github_projects.py --topic python --days 30High-star AI projects created in the last 7 days
python3 scripts/github_projects.py --topic ai --stars 100 --days 7
Filter by Programming Language
# Rust projects
python3 scripts/github_projects.py --lang rust --stars 1000Go projects
python3 scripts/github_projects.py --lang go --stars 500 --days 30TypeScript projects
python3 scripts/github_projects.py --lang typescript --topic react --stars 500
Comprehensive Examples
# AI Projects: Last 30 days, Python, Stars > 500
python3 scripts/github_projects.py \
--topic ai --topic python \
--stars 500 \
--days 30Rust Tools: High stars, Last 90 days
python3 scripts/github_projects.py \
--topic rust \
--stars 5000 \
--days 90 \
--limit 50Frontend Frameworks: JavaScript, Stars > 1000
python3 scripts/github_projects.py \
--topic frontend \
--lang javascript \
--stars 1000 \
--sort updated
Output Format
Example Output:
π₯ Found 30 trending projects:1. π facebook/react
π A declarative, efficient, and flexible JavaScript library...
π https://github.com/facebook/react
π Stars: 220,000 | Forks: 45,000 | Language: JavaScript
π·οΈ Tags: react, frontend, javascript
π
Created: 2013-05-24 | Updated: 2024-02-03
2. β microsoft/vscode
π Visual Studio Code
π https://github.com/microsoft/vscode
π Stars: 150,000 | Forks: 30,000 | Language: TypeScript
...
Command Arguments
| Argument | Short | Description | Example |
|----------|-------|-------------|---------|
| --topic | -t | Project topic/tag (can be used multiple times) | -t python -t ai |
| --stars | -s | Minimum number of stars | --stars 1000 |
| --days | -d | Created within the last N days | --days 30 |
| --lang | -l | Programming language | --lang rust |
| --limit | - | Number of results to return (default: 30) | --limit 50 |
| --sort | - | Sorting method | --sort stars |
Sorting Options
stars - By star count (default, descending)forks - By fork countupdated - By recent update timecreated - By creation timeRecommended Trending Tags
| Domain | Recommended Tags |
|--------|------------------|
| AI/ML | ai, machine-learning, deep-learning, nlp, computer-vision |
| Frontend | frontend, react, vue, angular, javascript, typescript |
| Backend | backend, api, microservices, nodejs, python |
| Mobile Dev | mobile, ios, android, flutter, react-native |
| DevOps | devops, docker, kubernetes, ci-cd, terraform |
| Data | database, big-data, analytics, sql, nosql |
| Security | security, cybersecurity, penetration-testing |
| Tools | cli, tools, productivity, automation |
FAQ
Error: API rate limit exceeded β Set GITHUB_TOKEN to increase limits:
export GITHUB_TOKEN="your-token"
No results returned β Try loosening your search criteria:
--stars threshold--days count--topic tagsInaccurate search results β Use more specific tags:
machine-learning instead of mlnatural-language-processing instead of nlpUse Cases
Scenario 1: Track Emerging Tech
# Trending AI projects from the last 30 days
python3 scripts/github_projects.py --topic ai --stars 100 --days 30 --limit 50
Scenario 2: Learn from Top Projects
# High-star Python projects
python3 scripts/github_projects.py --topic python --stars 10000 --limit 20
Scenario 3: Discover New Tools
# Developer tools from the last 7 days
python3 scripts/github_projects.py --topic developer-tools --topic cli --days 7 --stars 50
Scenario 4: Tech Research
# Compare web frameworks across different languages
python3 scripts/github_projects.py --topic web-framework --lang rust --stars 1000
python3 scripts/github_projects.py --topic web-framework --lang go --stars 1000
References
β‘ When to Use
π‘ Examples
Basic Search
Search by Topic:
python3 scripts/github_projects.py --topic python
Multiple Topics (AND relation):
python3 scripts/github_projects.py --topic python --topic machine-learning
Filter by Star Count
# Find Python projects with Stars > 1000
python3 scripts/github_projects.py --topic python --stars 1000Find AI projects with Stars > 10000
python3 scripts/github_projects.py --topic ai --stars 10000
Filter by Time (Last N Days)
# Python projects created in the last 30 days
python3 scripts/github_projects.py --topic python --days 30High-star AI projects created in the last 7 days
python3 scripts/github_projects.py --topic ai --stars 100 --days 7
Filter by Programming Language
# Rust projects
python3 scripts/github_projects.py --lang rust --stars 1000Go projects
python3 scripts/github_projects.py --lang go --stars 500 --days 30TypeScript projects
python3 scripts/github_projects.py --lang typescript --topic react --stars 500
Comprehensive Examples
# AI Projects: Last 30 days, Python, Stars > 500
python3 scripts/github_projects.py \
--topic ai --topic python \
--stars 500 \
--days 30Rust Tools: High stars, Last 90 days
python3 scripts/github_projects.py \
--topic rust \
--stars 5000 \
--days 90 \
--limit 50Frontend Frameworks: JavaScript, Stars > 1000
python3 scripts/github_projects.py \
--topic frontend \
--lang javascript \
--stars 1000 \
--sort updated
βοΈ Configuration
Optional: Configure GitHub Token
The GitHub API has rate limits (60 requests/hour unauthenticated, 5000 requests/hour authenticated).
# Get a Token: https://github.com/settings/tokens
export GITHUB_TOKEN="your_github_token"
To add it permanently to ~/.zshrc:
echo 'export GITHUB_TOKEN="your-token"' >> ~/.zshrc
source ~/.zshrc
π Tips & Best Practices
Error: API rate limit exceeded β Set GITHUB_TOKEN to increase limits:
export GITHUB_TOKEN="your-token"
No results returned β Try loosening your search criteria:
--stars threshold--days count--topic tagsInaccurate search results β Use more specific tags:
machine-learning instead of mlnatural-language-processing instead of nlp