Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计异常

github-to-skillGitHub TO 技能

Agent Skill

用于围绕 GitHub 仓库、Issue、Pull Request、分支、提交和代码协作流程提供辅助能力。它适合让 Agent 查询项目状态、整理变更、辅助创建或检查协作事项,并把仓库中的信息转成可执行的下一步。使用时需要区分只读查询和写入操作;涉及创建 PR、修改 Issue、推送分支或访问私有仓库时,应确认 token 权限、目标仓库范围和用户授权。

总安装

188

周安装

8

GitHub Stars

20

下载量

66
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:github-to-skill(GitHub TO 技能)
来源仓库:https://github.com/adongwanai/adong-skills
仓库路径:skills/github-to-skill
安装命令:
npx skills add https://github.com/adongwanai/adong-skills --skill github-to-skill
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/adongwanai/adong-skills --skill github-to-skill

简介

将 GitHub 项目自动转换为可用技能模板的工具。

  • 保留原有功能接口并适配标准格式。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 加速新技能接入现有工作流的速度。
  • 转换过程可能丢失部分上下文信息。
  • github-to-skill 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

GitHub to Skill Creator

Automatically discover GitHub repositories and convert them into Claude Skills.

Overview

Transforms any GitHub repository into a reusable Claude Skill by:

  1. Searching GitHub for high-quality, active repositories
  2. Analyzing repository structure and documentation
  3. Generating skill templates with proper structure
  4. Packaging ready-to-use skills

Workflow Decision Tree

User Request
    ↓
Does user have a specific repo in mind?
    ├─ YES → Generate skill template directly
    │         (use generate_skill_template.py)
    │
    └─ NO → Search GitHub first
             1. Ask clarifying questions
             2. Run repository search
             3. Present TOP 5-10 options
             4. User selects repo
             5. Generate skill template

Phase 1: Repository Search & Recommendation

Step 1: Understand Requirements

Ask the user:

  • What functionality do you need?
  • Any preferred programming language?
  • Specific requirements (license, activity level)?

Step 2: Search GitHub

Use the search script with appropriate filters:

# Basic search
python3 scripts/search_github_repos.py "PDF processing"

# With language filter
python3 scripts/search_github_repos.py "image manipulation" --language python

# High quality, recently updated
python3 scripts/search_github_repos.py "REST API" --min-stars 500 --sort updated

# Save results for analysis
python3 scripts/search_github_repos.py "data processing" --output results.json

Step 3: Present Results

Display results in a clear table format:

#RepositoryStarsUpdatedLanguageDescriptionRecommendation
1owner/repo25002024-01PythonBrief desc⭐ High quality, active

Quality Criteria

When recommending repositories, ensure:

  • Active maintenance: Updated within 6 months
  • Quality indicators: 100+ stars, good documentation
  • Clear API: Well-defined interfaces and examples
  • License: Permissive license (MIT, Apache, BSD)

Phase 2: Skill Template Generation

Step 1: Analyze Repository

After user selects a repository:

# Generate skill template
python3 scripts/generate_skill_template.py owner/repository

# Custom output directory
python3 scripts/generate_skill_template.py owner/repository --output ./skills

Step 2: Review Generated Structure

The generator creates:

skill-name/
├── SKILL.md              # Ready to customize
├── scripts/
│   └── example.py        # Starter code
└── references/           # For additional docs

Step 3: Customize the Skill

Update SKILL.md:

  • Edit frontmatter description (be specific about when to use)
  • Replace [TODO] items with actual content
  • Add clear usage examples
  • Document configuration options

Implement Core Logic:

  • Write wrapper scripts in scripts/
  • Handle errors gracefully
  • Add logging and user feedback

Add References:

  • API documentation
  • Configuration examples
  • Troubleshooting guides

Step 4: Test & Package

# Test the skill
# [Manual testing steps]

# Package the skill
cd ../skill-creator
python3 scripts/package_skill.py ../skill-name

Usage Examples

Example 1: User Knows What They Want

User: "Create a skill from pdfplumber repository"

Action:

python3 scripts/generate_skill_template.py jsvine/pdfplumber

Example 2: User Needs Guidance

User: "I want to add PDF processing capabilities"

Action:

  1. Ask: "What type of PDF processing? (extraction, manipulation, form filling)"
  2. Search: python3 scripts/search_github_repos.py "PDF extraction" --language python
  3. Present TOP 5 options with pros/cons
  4. Guide selection and generate template

Example 3: No Suitable Repository Found

User: "I need quantum computing simulation"

Action:

  1. Search reveals limited/old repositories
  2. Suggest alternatives:

- Combine multiple smaller libraries - Create from scratch with skill-creator - Use web APIs instead

Best Practices

Search Strategy

  • Start broad: Use general terms ("PDF processing")
  • Narrow down: Add filters (--language, --min-stars)
  • Try variations: "PDF extract", "PDF parse", "document processing"

Repository Evaluation

Check these before recommending:

  1. Last commit: Within 6 months
  2. Issues ratio: Low open/closed ratio indicates good maintenance
  3. Documentation: README, examples, API docs
  4. License: Prefer MIT/Apache for permissive use

Skill Design Principles

  • Keep it focused: One primary purpose per skill
  • Minimal dependencies: Prefer widely-used libraries
  • Clear error messages: Help users troubleshoot
  • Test thoroughly: Verify before packaging

Troubleshooting

No repositories found

  • Broaden search terms
  • Reduce minimum stars threshold
  • Try different programming languages

GitHub API rate limit

Generated skill doesn't work

  • Verify repository has clear API/usage patterns
  • Check dependencies are installable
  • Review error messages in scripts

Dependencies

pip install requests

Optional (for GitHub API rate limits):

  • GitHub personal access token

Related Skills

  • skill-creator: Create skills from scratch
  • pdf-to-ppt: Example of a generated skill

Resources

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

windsurf

27.67%
按下载量换算18

OpenCode

21.67%
按下载量换算14

Claude Code

17.81%
按下载量换算12

Cursor

11.72%
按下载量换算8

Codex

9.08%
按下载量换算6

Antigravity

3.31%
按下载量换算2

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills