fetch-github-trending — for Claude Code fetch-github-trending, claude-skill-registry-data, community, for Claude Code, ide skills, machine-learning, deep-learning, artificial-intelligence, transformers, computer-vision

v2.0.0

About this Skill

Ideal for AI agents that need fetch github trending. fetch-github-trending is an AI agent skill for fetch github trending.

Features

Fetch GitHub Trending
Fetch and store trending AI/ML repositories from GitHub with deduplication.
Use this skill when you need to:
Discover trending AI/ML tools and libraries
Find new repositories gaining traction

# Core Topics

majiayu000 majiayu000
[0]
[0]
Updated: 4/26/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reviewed Landing Page Review Score: 10/11

Killer-Skills keeps this page indexable because it adds recommendation, limitations, and review signals beyond the upstream repository text.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review Locale and body language aligned
Review Score
10/11
Quality Score
65
Canonical Locale
en
Detected Body Locale
en

Ideal for AI agents that need fetch github trending. fetch-github-trending is an AI agent skill for fetch github trending.

Core Value

fetch-github-trending helps agents fetch github trending. Fetch GitHub Trending Fetch and store trending AI/ML repositories from GitHub with deduplication. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Ideal Agent Persona

Ideal for AI agents that need fetch github trending.

Capabilities Granted for fetch-github-trending

Applying Fetch GitHub Trending
Applying Fetch and store trending AI/ML repositories from GitHub with deduplication
Applying Use this skill when you need to:

! Prerequisites & Limits

  • Use this skill when you need to:
  • Repo must have at least one AI-related topic OR
  • Skip repos that don't appear AI-related

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is fetch-github-trending?

Ideal for AI agents that need fetch github trending. fetch-github-trending is an AI agent skill for fetch github trending.

How do I install fetch-github-trending?

Run the command: npx killer-skills add majiayu000/claude-skill-registry-data/fetch-github-trending. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for fetch-github-trending?

Key use cases include: Applying Fetch GitHub Trending, Applying Fetch and store trending AI/ML repositories from GitHub with deduplication, Applying Use this skill when you need to:.

Which IDEs are compatible with fetch-github-trending?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for fetch-github-trending?

Use this skill when you need to:. Repo must have at least one AI-related topic OR. Skip repos that don't appear AI-related.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add majiayu000/claude-skill-registry-data/fetch-github-trending. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use fetch-github-trending immediately in the current project.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

fetch-github-trending

# Fetch GitHub Trending Fetch and store trending AI/ML repositories from GitHub with deduplication. This AI agent skill supports Claude Code, Cursor, and

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Fetch GitHub Trending

Fetch and store trending AI/ML repositories from GitHub with deduplication.

When to Use

Use this skill when you need to:

  • Discover trending AI/ML tools and libraries
  • Find new repositories gaining traction
  • Collect repos for tool spotlight sections in digests

Instructions

Step 1: Define Search Topics

Target these GitHub topics for AI/ML repos:

  • machine-learning
  • deep-learning
  • llm
  • artificial-intelligence
  • nlp
  • transformers
  • computer-vision

Step 2: Build GitHub Search Query

Construct a GitHub search API query:

Query pattern:

topic:machine-learning OR topic:llm language:python stars:>100 pushed:>2026-01-25

Date calculation based on time range:

  • daily: pushed in last 1 day
  • weekly: pushed in last 7 days
  • monthly: pushed in last 30 days

Step 3: Fetch from GitHub API

Use the http_request tool to query GitHub Search API.

API endpoint:

  • URL: https://api.github.com/search/repositories
  • Method: GET
  • Parameters: q (query), sort (stars), order (desc), per_page (20)
  • Headers: Accept: application/vnd.github.v3+json

For each API response:

  1. Extract: full_name, description, html_url, stargazers_count, forks_count, language, topics
  2. Parse created_at and pushed_at timestamps

Step 4: Check for Duplicates

For each repository:

  1. Check if already seen:

    • Call memory/check_seen with key=full_name (e.g., "owner/repo"), namespace="news/repos"
    • If seen=true, skip this repo
  2. Validate AI relevance:

    • Repo must have at least one AI-related topic OR
    • Description mentions AI/ML keywords
    • Skip repos that don't appear AI-related

Step 5: Store New Repositories

For each new (unseen) repository:

  1. Store in memory:

    • Call memory/add with:
      • type: "document"
      • namespace: "news/repos"
      • data: {full_name, name, description, url, stars, forks, language, topics, created_at, pushed_at}
      • metadata: {fetched_at, search_topic}
  2. Mark as seen:

    • Call memory/mark_seen with:
      • key: full_name
      • namespace: "news/repos"
      • ttl_seconds: 604800 (7 days)

Step 6: Return Results

Return a summary including:

  • Number of repos stored
  • Number of duplicates skipped
  • Topics searched
  • Total matching repos found

Tool Usage Guidance

http_request tool

  • Use for GitHub API calls
  • Set appropriate headers for API version
  • Handle rate limiting (60/hour unauthenticated, 5000/hour authenticated)

memory/check_seen

  • Key should be the full repo name (owner/repo format)
  • Namespace: "news/repos"

memory/add

  • Store each new repo as type "document"
  • Include star count for ranking

memory/mark_seen

  • Use 7-day TTL (repos trend changes weekly)

Repository Data Schema

json
1{ 2 "full_name": "owner/repo-name", 3 "name": "repo-name", 4 "description": "A powerful LLM inference library", 5 "url": "https://github.com/owner/repo-name", 6 "stars": 15234, 7 "forks": 1523, 8 "language": "Python", 9 "topics": ["llm", "inference", "machine-learning"], 10 "created_at": "2025-06-15", 11 "pushed_at": "2026-01-26" 12}

Error Handling

  • If GitHub API rate limits, wait and retry or return cached results
  • If API request fails, log error and continue
  • Return partial results if some queries succeed

Success Criteria

  • At least one topic query succeeds
  • Repos are sorted by star count
  • No duplicate repos in output
  • AI-relevance filter applied

Related Skills

Looking for an alternative to fetch-github-trending or another community skill for your workflow? Explore these related open-source skills.

View All

openclaw-release-maintainer

Logo of openclaw
openclaw

openclaw-release-maintainer is an AI agent skill for openclaw release maintainer.

333.8k
0
AI

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
AI

flags

Logo of vercel
vercel

flags is an AI agent skill for use this skill when adding or changing framework feature flags in next.js internals.

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

pr-review is an AI agent skill for pytorch pr review skill.

98.6k
0
Developer