← Back to Skills Marketplace
meituskills

tech-trending-on-github

by Meitu.Inc · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
915
Downloads
1
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install tech-trending-on-github
Description
分析GitHub趋势榜和热门榜,提供技术趋势总结和创新项目介绍。 当用户询问GitHub趋势、热门项目、技术发展趋势、"今天有什么热门"、 "GitHub trending"、"github热门"、"开源趋势"、"技术风向"等话题时, 必须使用此skill获取GitHub官方Trending页面的数据,进行分析总...
README (SKILL.md)

GitHub趋势分析器

工作流程

1. 获取数据

使用WebFetch工具获取GitHub Trending页面数据:

  • 今日趋势:https://github.com/trending
  • 按语言分类的趋势页面(如需要):https://github.com/trending/python 等

2. 数据解析与结构化

从HTML中提取以下信息:

  • 项目名称和链接
  • 项目描述
  • 编程语言
  • Star数量(今日新增和总数)
  • Fork数量
  • 主要贡献者

3. 变化分析

对比当前数据与历史趋势(如有):

  • 新增上榜项目
  • 下榜项目
  • 排名上升/下降的项目
  • 持续热门项目

4. 创新项目识别

识别具有创新性的项目:

  • AI/机器学习相关项目
  • 新兴编程语言或框架
  • 云原生/DevOps工具
  • 开发者工具创新
  • 安全/隐私相关项目
  • 跨平台/跨语言解决方案

5. 生成报告

报告结构

# GitHub趋势分析报告 - [日期]

## 1. 今日热门概览
- 总览:今日上榜项目数量、主要编程语言分布
- Top 5项目速览

## 2. 变化追踪
### 新增上榜
- 项目名:简介、语言、Star增长

### 排名变化
- 上升:项目名 + 变化情况
- 下降:项目名 + 变化情况

### 持续热门
- 连续上榜多日的项目

## 3. 创新项目亮点
针对每个创新项目:
- 项目简介
- 创新点分析
- 技术价值
- 值得关注的原因

## 4. 技术发展趋势
基于数据分析,给出:
- 当前热门技术领域
- 新兴技术方向
- 值得关注的技术栈
- 建议关注的技术趋势

输出语言

根据用户提问语言自动选择:

  • 中文提问 → 中文报告
  • 英文提问 → 英文报告

注意事项

  1. 数据时效性:GitHub Trending数据实时更新,每次分析都获取最新数据
  2. 语言分类:可以按编程语言筛选(Python、JavaScript、Go、Rust等)
  3. 时间范围:默认分析今日趋势,也可分析本周趋势
  4. 创新判断:基于项目描述、技术栈、解决的问题来判断创新性
  5. 趋势建议:结合多个项目的技术方向,给出宏观趋势判断

示例输出

用户提问:"今天GitHub有什么热门项目?"

分析报告示例

# GitHub趋势分析报告 - 2026-03-17

## 1. 今日热门概览
今日GitHub Trending共有25个项目上榜,主要语言分布:
- Python: 8个
- JavaScript/TypeScript: 6个
- Go: 4个
- Rust: 3个
- 其他: 4个

### Top 5项目
1. **awesome-ai-agents** (Python, +1,234 stars today)
   - AI Agent框架合集,整理了当前主流的AI代理工具

2. **cloud-native-devtools** (Go, +987 stars today)
   - 云原生开发工具集,简化K8s应用开发

...

## 2. 变化追踪
### 新增上榜
- **new-llm-framework**: 新的大语言模型推理框架,支持多模型并行

### 排名上升
- **rust-web-framework** ↑5位:Rust Web框架持续升温

## 3. 创新项目亮点
### awesome-ai-agents
- **创新点**:首次系统性地整理了AI Agent生态
- **技术价值**:降低AI Agent技术选型门槛
- **值得关注**:AI Agent是2024-2025年的重要技术方向

...

## 4. 技术发展趋势
- **AI应用层爆发**:AI Agent、AI工具链项目持续热门
- **Rust生态成熟**:系统级工具更多采用Rust开发
- **云原生简化**:开发者体验成为云原生工具的重点

**建议关注**:
1. AI Agent框架和工具链
2. Rust在系统编程领域的应用
3. 云原生开发的简化工具
Usage Guidance
This skill is coherent with its description: it fetches public GitHub Trending pages and generates trend reports and does not request secrets or install software. Before installing, be aware that: (1) the skill will make outbound network requests to github.com (and may fetch additional repo pages to get contributors/stats), (2) historical comparisons require some storage or external data source — if you don't want the agent to store past results, confirm where/if it will persist data, and (3) although the skill doesn't request credentials, granting the agent broad network or file system permissions could allow it to access other resources. If you want minimal risk, permit the skill but restrict its ability to persist data or access private repos/tokens and review activity/logs after first use.
Capability Analysis
Type: OpenClaw Skill Name: tech-trending-on-github Version: 1.0.0 The github-trend-analyzer skill is designed to fetch and summarize public data from GitHub's trending pages. It uses a standard WebFetch tool to access legitimate URLs (github.com/trending) and provides structured analysis reports. No evidence of data exfiltration, malicious execution, or prompt injection attacks was found in SKILL.md or the associated metadata.
Capability Assessment
Purpose & Capability
The name and description match the runtime instructions: the skill fetches GitHub Trending pages and extracts project metadata for trend analysis. It does not request unrelated binaries, environment variables, or config paths.
Instruction Scope
Instructions are generally scoped to fetching and parsing GitHub Trending pages and producing reports. Two minor ambiguities: (1) '主要贡献者 / main contributors' likely requires fetching additional repo pages (not explicitly listed), and (2) comparing to historical trends is suggested 'if available' but no historical data source or storage mechanism is specified — this could lead an agent to use other data sources or local storage if allowed. These are scope/implementation details rather than clear security risks.
Install Mechanism
No install spec and no code files — instruction-only skill. This minimizes disk-write and arbitrary-code risks.
Credentials
The skill declares no required environment variables or credentials. It only needs network access to fetch GitHub public pages, which is proportional to its purpose.
Persistence & Privilege
always:false and default autonomous invocation are used. The skill does not request persistent privileges or system-wide config changes. Autonomous invocation is normal and not by itself a concern.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install tech-trending-on-github
  3. After installation, invoke the skill by name or use /tech-trending-on-github
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
- Initial release of the GitHub Trend Analyzer skill. - Analyzes GitHub trending and popular projects for daily and weekly technology trend reports. - Extracts key project details: name, description, language, star/fork counts, contributors. - Highlights trending changes, new entries, consistent projects, and innovative open-source ideas. - Generates clear summary reports, including technology hotspots and emerging directions. - Automatically outputs in Chinese or English based on the user's query language.
Metadata
Slug tech-trending-on-github
Version 1.0.0
License MIT-0
All-time Installs 1
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is tech-trending-on-github?

分析GitHub趋势榜和热门榜,提供技术趋势总结和创新项目介绍。 当用户询问GitHub趋势、热门项目、技术发展趋势、"今天有什么热门"、 "GitHub trending"、"github热门"、"开源趋势"、"技术风向"等话题时, 必须使用此skill获取GitHub官方Trending页面的数据,进行分析总... It is an AI Agent Skill for Claude Code / OpenClaw, with 915 downloads so far.

How do I install tech-trending-on-github?

Run "/install tech-trending-on-github" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is tech-trending-on-github free?

Yes, tech-trending-on-github is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does tech-trending-on-github support?

tech-trending-on-github is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created tech-trending-on-github?

It is built and maintained by Meitu.Inc (@meituskills); the current version is v1.0.0.

💬 Comments