Overview
- Skill Key
- alphafactor/explorer
- Author
- alphafactor
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/alphafactor/explorer
- Latest Commit SHA
- da08e35f91dd2f239dd86fcca255855a2ab26558
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.
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 explorer 技能。 若已安装,则直接安装 explorer 技能。
# GitHub Projects Explorer 发现并分析 GitHub 上的热门开源项目,支持多维度搜索和筛选。 发现并分析 GitHub 上的热门开源项目,支持多维度搜索和筛选。 ## 功能特性 - 🏷️ **多标签筛选** - 支持一个或多个项目标签 - ⭐ **Star 数量过滤** - 按最低 Star 数筛选 - 📅 **时间范围** - 筛选最近 N 天内创建的项目 - 🔤 **编程语言** - 按编程语言筛选 - 📊 **智能排序** - 支持 Stars/Forks/更新时间排序 ## 前提条件 ### 可选:配置 GitHub Token GitHub API 有请求限制(未认证 60次/小时,认证 5000次/小时)。 ```bash # 获取 Token: https://github.com/settings/tokens export GITHUB_TOKEN="your_github_token" ``` 添加到 `~/.zshrc`: ```bash echo 'export GITHUB_TOKEN="your-token"' >> ~/.zshrc source ~/.zshrc ``` ## 使用方法 ### 基础搜索 **按标签搜索:** ```bash python3 scripts/github_projects.py --topic python ``` **多个标签(与关系):** ```bash python3 scripts/github_projects.py --topic python --topic machine-learning ``` ### 按 Star 数量筛选 ```bash # 查找 Star > 1000 的 Python 项目 python3 scripts/github_projects.py --topic python --stars 1000 # 查找 Star > 10000 的 AI 项目 python3 scripts/github_projects.py --topic ai --stars 10000 ``` ### 按时间筛选(最近 N 天) ```bash # 最近 30 天内创建的 Python 项目 python3 scripts/github_projects.py --topic python --days 30 # 最近 7 天内创建的高 Star AI 项目 python3 scripts/github_projects.py --topic ai --stars 100 --days 7 ``` ### 按编程语言筛选 ```bash # Rust 语言的项目 python3 scripts/github_projects.py --lang rust --stars 1000 # Go 语言的项目 python3 scripts/github_projects.py --lang go --stars 500 --days 30 # TypeScript 项目 python3 scripts/github_projects.py --lang typescript --topic react --stars 500 ``` ### 综合示例 ```bash # AI 项目:最近30天、Python、Star>500 python3 scripts/github_projects.py \ --topic ai --topic python \ --stars 500 \ --days 30 # Rust 工具:高 Star、最近90天 python3 scripts/github_projects.py \ --topic rust \ --stars 5000 \ --days 90 \ --limit 50 # 前端框架:JavaScript、Star>1000 python3 scripts...
heyixuan2
Bambu Lab 3D printer control and automation. Activate when user mentions: printer status, 3D printing, slice, analyze model, generate 3D, AMS filament, print monitor, Bambu Lab, or any 3D printing task. Full pipeline: search → generate → analyze → colorize → preview → open BS → user slice → print → monitor. Supports all 9 Bambu Lab printers (A1 Mini, A1, P1S, P2S, X1C, X1E, H2C, H2S, H2D).
capt-marbles
Generative Engine Optimization (GEO) for AI search visibility. Optimize content to appear in ChatGPT, Perplexity, Claude, and Google AI Overviews. Use when optimizing websites, pages, or content for LLM discoverability and citation.
carlulsoe
Local speech-to-text with NVIDIA Parakeet TDT 0.6B v3 (ONNX on CPU). 30x faster than Whisper, 25 languages, auto-detection, OpenAI-compatible API. Use when transcribing audio files, converting speech to text, or processing voice recordings locally without cloud APIs.
carlzhao007
飞书消息自动处理与进度反馈技能。安装后后台运行,监听飞书任务消息并自动创建独立进程处理。 在处理前后发送实时进度反馈(任务确认、进度百分比、完成通知)。 支持任务类型识别、智能解析、错误重试、并发控制、状态持久化。 使用场景:飞书自动化工作流、任务进度追踪、批量任务处理、需要实时反馈的场景。
cartoonitunes
BottyFans agent skill for autonomous creator monetization. Lets AI agents register, build a profile, publish posts (public, subscriber-only, or pay-to-unlock), upload media, accept USDC subscriptions and tips on Base, send and receive DMs, track earnings, and appear on the creator leaderboard. Use this skill when an agent needs to monetize content, interact with fans, manage a creator profile, handle payments in USDC, or operate as an autonomous creator on the BottyFans platform.
camopel
Local arXiv paper manager with semantic search. Crawls arXiv categories, downloads PDFs, chunks content, and indexes with FAISS + Ollama embeddings. No cloud API keys required — everything runs locally.