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

À propos de ce Skill

Scenario recommande : Ideal for AI agents that need fetch github trending. Resume localise : # 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.

Fonctionnalités

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/22/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 10/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

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

Scenario recommande : Ideal for AI agents that need fetch github trending. Resume localise : # 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.

Pourquoi utiliser cette compétence

Recommandation : 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

Meilleur pour

Scenario recommande : Ideal for AI agents that need fetch github trending.

Cas d'utilisation exploitables for fetch-github-trending

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

! Sécurité et Limitations

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

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.

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?

Scenario recommande : Ideal for AI agents that need fetch github trending. Resume localise : # 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.

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: Cas d'usage : Applying Fetch GitHub Trending, Cas d'usage : Applying Fetch and store trending AI/ML repositories from GitHub with deduplication, Cas d'usage : 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?

Limitation : Use this skill when you need to:. Limitation : Repo must have at least one AI-related topic OR. Limitation : 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.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

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

Compétences associées

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

Voir tout

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

widget-generator

Logo of f
f

Générez des plugins de widgets personnalisables pour le système de flux prompts.chat

flags

Logo of vercel
vercel

Le Cadre de Réaction

138.4k
0
Navigateur

pr-review

Logo of pytorch
pytorch

Tenseurs et réseaux neuronaux dynamiques en Python avec une forte accélération GPU

98.6k
0
Développeur