Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

Search Trending Github Repositories

BSecurity

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 r…

19 stars
0 votes
0 copies
1 views
Added 9/19/2026
developmentjavascripttypescriptpythonrustgojavabashsqlreactvue

Works with

vscodecliapi

Security Analysis

B75/100
criticalModifies startup scripts or system services for persistence

Scanned 9/19/2026

Install to Claude Code

$npx -y skills add rondoflow/rondoflow --skill search-trending-github-repositories --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Search Trending Github Repositories?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Search Trending Github Repositories
[![Security: B — Skills Directory](https://www.skillsdirectory.com/api/skills/rondoflow-search-trending-github-repositories/badge)](https://www.skillsdirectory.com/skills/rondoflow-search-trending-github-repositories)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: search-trending-github-repositories
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 r…"
category: "Development"
author: community
version: "1.0.6"
icon: code
---

# GitHub Projects Explorer

Discover and analyze trending open-source projects on GitHub, with support for multi-dimensional search and filtering.

## Features

- 🏷️ **Multi-Tag Filtering** - Support for one or more project topics/tags
- ⭐ **Star Count Filtering** - Filter by a minimum number of stars
- 📅 **Time Range** - Filter projects created within the last N days
- 🔤 **Programming Language** - Filter by specific programming language
- 📊 **Smart Sorting** - Sort by Stars, Forks, or Updated Time

## Prerequisites

### Optional: Configure GitHub Token

The GitHub API has rate limits (60 requests/hour unauthenticated, 5000 requests/hour authenticated).

```bash
# Get a Token: https://github.com/settings/tokens
export GITHUB_TOKEN="your_github_token"
```

To add it permanently to `~/.zshrc`:
```bash
echo 'export GITHUB_TOKEN="your-token"' >> ~/.zshrc
source ~/.zshrc
```

## Usage

### Basic Search

**Search by Topic:**
```bash
python3 scripts/github_projects.py --topic python
```

**Multiple Topics (AND relation):**
```bash
python3 scripts/github_projects.py --topic python --topic machine-learning
```

### Filter by Star Count

```bash
# Find Python projects with Stars > 1000
python3 scripts/github_projects.py --topic python --stars 1000

# Find AI projects with Stars > 10000
python3 scripts/github_projects.py --topic ai --stars 10000
```

### Filter by Time (Last N Days)

```bash
# Python projects created in the last 30 days
python3 scripts/github_projects.py --topic python --days 30

# High-star AI projects created in the last 7 days
python3 scripts/github_projects.py --topic ai --stars 100 --days 7
```

### Filter by Programming Language

```bash
# Rust projects
python3 scripts/github_projects.py --lang rust --stars 1000

# Go projects
python3 scripts/github_projects.py --lang go --stars 500 --days 30

# TypeScript projects
python3 scripts/github_projects.py --lang typescript --topic react --stars 500
```

### Comprehensive Examples

```bash
# AI Projects: Last 30 days, Python, Stars > 500
python3 scripts/github_projects.py \
  --topic ai --topic python \
  --stars 500 \
  --days 30

# Rust Tools: High stars, Last 90 days
python3 scripts/github_projects.py \
  --topic rust \
  --stars 5000 \
  --days 90 \
  --limit 50

# Frontend 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 count
- `updated` - By recent update time
- `created` - By creation time

## Recommended 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:
```bash
export GITHUB_TOKEN="your-token"
```

**No results returned**
→ Try loosening your search criteria:
- Lower the `--stars` threshold
- Increase the `--days` count
- Reduce the number of `--topic` tags

**Inaccurate search results**
→ Use more specific tags:
- Use `machine-learning` instead of `ml`
- Use `natural-language-processing` instead of `nlp`

## Use Cases

### Scenario 1: Track Emerging Tech
```bash
# 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
```bash
# High-star Python projects
python3 scripts/github_projects.py --topic python --stars 10000 --limit 20
```

### Scenario 3: Discover New Tools
```bash
# 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
```bash
# 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

- GitHub Search API: [references/github_api.md](references/github_api.md)
- Official GitHub Docs: https://docs.github.com/en/rest/search

Attribution

rondoflowrondoflow
View sourceMore from rondoflow →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Browser Extension Developer

Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.

284722 votes

Seo Optimizer

SEO optimization with keyword analysis, readability assessment, technical validation, content quality. Use for search rankings, blog posts, content audits, or encountering keyword density, readability scores, meta tags, schema markup errors.

2192 votes

Google Official Seo Guide

Official Google SEO guide covering search optimization, best practices, Search Console, crawling, indexing, and improving website search visibility based on official Google documentation

1862 votes

Tanstack Start

Build a full-stack TanStack Start app on Cloudflare Workers from scratch — SSR, file-based routing, server functions, D1+Drizzle, better-auth, Tailwind v4+shadcn/ui. Use whenever the user mentions TanStack Start, asks to scaffold a full-stack Cloudflare app with SSR, wants an SSR dashboard, or asks for a React 19 + Cloudflare Workers app with file-based routing and server functions — even if they don't name TanStack Start specifically. No template repo — Claude generates every file fresh per ...

9881 votes

Pentest

PTES-aligned adversarial security audit for backend, frontend, and mobile applications. Produces a CVSS-scored Hacker Report with verified PoCs and phased remediation.

5491 votes
View all in development →