github-to-skills▌
kkkkhazix/khazix-skills · updated Apr 9, 2026
This skill automates the conversion of GitHub repositories into fully functional AI skills.
GitHub to Skills Factory
This skill automates the conversion of GitHub repositories into fully functional AI skills.
Core Functionality
- Analysis: Fetches repository metadata (Description, README, Latest Commit Hash).
- Scaffolding: Creates a standardized skill directory structure.
- Metadata Injection: Generates
SKILL.mdwith extended frontmatter (tracking source, version, hash) for future automated management. - Wrapper Generation: Creates a
scripts/wrapper.py(or similar) to interface with the tool.
Usage
Trigger: /GitHub-to-skills <github_url> or "Package this repo into a skill: "
Required Metadata Schema
Every skill created by this factory MUST include the following extended YAML frontmatter in its SKILL.md. This is critical for the skill-manager to function later.
---
name: <kebab-case-repo-name>
description: <concise-description-for-agent-triggering>
# EXTENDED METADATA (MANDATORY)
github_url: <original-repo-url>
github_hash: <latest-commit-hash-at-time-of-creation>
version: <tag-or-0.1.0>
created_at: <ISO-8601-date>
entry_point: scripts/wrapper.py # or main script
dependencies: # List main dependencies if known, e.g., ["yt-dlp", "ffmpeg"]
---
Workflow
- Fetch Info: The agent first runs
scripts/fetch_github_info.pyto get the raw data from the repo. - Plan: The agent analyzes the README to understand how to invoke the tool (CLI args, Python API, etc.).
- Generate: The agent uses the
skill-creatorpatterns to write theSKILL.mdand wrapper scripts, ensuring the extended metadata is present. - Verify: Checks if the commit hash was correctly captured.
Resources
scripts/fetch_github_info.py: Utility to scrape/API fetch repo details (README, Hash, Tags).scripts/create_github_skill.py: Orchestrator to scaffold the folder and write the initial files.
Best Practices for Generated Skills
- Isolation: The generated skill should install its own dependencies (e.g., in a venv or via
uv/pip) if possible, or clearly state them. - Progressive Disclosure: Do not dump the entire repo into the skill. Only include the necessary wrapper code and reference the original repo for deep dives.
- Idempotency: The
github_hashfield allows the futureskill-managerto checkif remote_hash != local_hashto trigger updates.
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.6★★★★★32 reviews- ★★★★★Omar Garcia· Dec 28, 2024
github-to-skills reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Carlos Huang· Dec 24, 2024
Solid pick for teams standardizing on skills: github-to-skills is focused, and the summary matches what you get after install.
- ★★★★★Aditi Torres· Dec 16, 2024
We added github-to-skills from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Chaitanya Patil· Dec 8, 2024
Registry listing for github-to-skills matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Piyush G· Nov 27, 2024
Keeps context tight: github-to-skills is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Carlos Zhang· Nov 19, 2024
github-to-skills has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Advait Mehta· Nov 7, 2024
github-to-skills fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Henry Wang· Oct 26, 2024
github-to-skills has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Shikha Mishra· Oct 18, 2024
I recommend github-to-skills for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Daniel Rahman· Oct 10, 2024
github-to-skills fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
showing 1-10 of 32