🤖 Daily AI/LLM project discovery and recommendation from GitHub
- 🔍 Multi-strategy Discovery: Topic-based search, keyword search, trending detection
- ⭐ Smart Scoring: Multi-dimensional scoring (popularity, growth, activity, relevance, quality)
- 📝 Rich Reports: Daily Markdown reports with categories
- 💾 Local Storage: All data stored locally, no tracking
# Clone the repository
git clone https://github.com/your-repo/ai-github-daily.git
cd ai-github-daily
# Install
pip install -e .
# Run daily discovery
ai-github-daily run
# Search for specific topics
ai-github-daily search "llm agent" --min-stars 100Set your GitHub token for higher rate limits:
export GITHUB_TOKEN="your-github-token"Get a token from: https://github.com/settings/tokens
| Command | Description |
|---|---|
ai-github-daily run |
Run full daily discovery |
ai-github-daily search "query" |
Search GitHub |
ai-github-daily report |
Generate report from cache |
ai-github-daily stats |
Show statistics |
- Markdown report:
reports/daily_YYYY-MM-DD.md - JSON data:
reports/daily_YYYY-MM-DD.json
| Dimension | Weight | Description |
|---|---|---|
| Popularity | 25% | Star count (logarithmic) |
| Growth | 25% | Recent star growth |
| Activity | 20% | Recent commits, issues |
| Relevance | 15% | AI/LLM topic matching |
| Quality | 15% | Documentation, practices |
MIT