A community-driven registry of reusable AI agent workflows
SkillHub is a package manager for AI agent workflows, similar to how Homebrew manages packages or npm manages JavaScript libraries. When AI coding agents (like Claude Code, GitHub Copilot, or ChatGPT) complete complex tasks, they follow specific sequences of steps. SkillHub allows you to:
- Store completed AI agent workflows as reusable "skills"
- Search and discover relevant skills for your tasks
- Pull and execute skills on different environments/hardware
- Contribute new skills via GitHub Pull Requests
When AI agents complete complex tasks (like benchmarking a model, setting up a development environment, or deploying an application), the workflow is lost after completion. Users must re-prompt similar tasks from scratch, wasting time and effort.
SkillHub stores these workflows as structured markdown files with:
- Step-by-step instructions
- Code examples
- Troubleshooting guides
- Success criteria
- Metadata for searchability
# Install the SkillHub CLI
pip install skillhub
# Search for skills
skillhub search "benchmark model"
# Pull a skill to your local directory
skillhub pull benchmark-qwen
# List all available skills
skillhub list
# View skill details
cat benchmark-qwen.mdEasy Way (Recommended): Submit via GitHub Issue - no setup required!
- Go to Submit a Skill
- Paste your skill markdown
- Submit the issue
- A Pull Request is created automatically!
Alternative: Manual PR submission
# Fork this repository
# Create a new skill using the template
cp templates/skill-template.md skills/category/my-skill.md
# Edit the skill file
# Validate your skill
python scripts/validate_skill.py skills/category/my-skill.md
# Submit a Pull RequestSee CONTRIBUTING.md for detailed guidelines.
- benchmark-qwen - Benchmark Qwen 3B model on custom hardware with comprehensive performance metrics
- etl-pipeline - Set up a production-ready ETL pipeline with data validation and monitoring
- react-app-setup - Set up a modern React application with TypeScript, Tailwind CSS, and best practices
- web-scraper - Build a robust web scraper with rate limiting, error handling, and data export
- model-deployment - Deploy ML model as REST API using FastAPI with Docker containerization
Skills are structured markdown files with:
---
metadata:
name: "skill-name"
version: "1.0.0"
description: "What this skill does"
category: "category-name"
tags: ["tag1", "tag2"]
author: "github_username"
requirements:
os: ["linux", "macos"]
python: ">=3.9"
packages:
- package1>=1.0.0
---
# Skill Title
## Overview
Brief overview
## Task Description
What gets accomplished
## Steps
1. Step one
2. Step two
...
## Expected Output
What you'll get
## Troubleshooting
Common issues and solutions
## Success Criteria
How to know it workedSee templates/skill-template.md for the full template.
- Registry: This GitHub repository stores all skills as markdown files
- Index: An auto-generated
index.jsonmakes skills searchable - CLI Tool: The
skillhubcommand-line tool lets users search and pull skills - Validation: GitHub Actions automatically validate new skill submissions
- Community: Anyone can contribute skills via Pull Requests
skillhub-registry/
├── skills/ # All skills organized by category
│ ├── benchmarking/
│ ├── data-engineering/
│ ├── web-development/
│ ├── automation/
│ └── ml-ops/
├── templates/ # Skill template for contributors
├── scripts/ # Automation scripts
│ ├── generate_index.py
│ └── validate_skill.py
├── .github/workflows/ # GitHub Actions
└── index.json # Auto-generated search index
# Install from PyPI
pip install skillhub
# Or install from source
git clone https://github.com/v1k22/skillhub-cli.git
cd skillhub-cli
pip install -e .# Search for skills
skillhub search "react setup"
# List all skills
skillhub list
# List skills in a category
skillhub list --category web-development
# Pull a skill
skillhub pull react-app-setup
# Get CLI info
skillhub info
# Validate a skill file
skillhub validate my-skill.mdRun the same benchmark across different hardware:
skillhub pull benchmark-qwen
# Run on hardware A, save results
# Run on hardware B, compare resultsNew team member needs a dev environment:
skillhub search "react setup"
skillhub pull react-app-setup
# Follow the steps to set up identical environmentEnsure consistency across team:
skillhub pull etl-pipeline
# Everyone uses the same ETL structureLearn best practices by example:
skillhub search "deployment"
skillhub pull model-deployment
# See production-ready deployment setupWe welcome contributions! Please see CONTRIBUTING.md for:
- How to create a skill
- Skill format requirements
- Submission process
- Code of conduct
- Basic registry structure
- 5 example skills
- Skill template
- Validation scripts
- CLI tool (basic)
- 20+ community skills
- Vector search for semantic matching
- Skill versioning system
- Dependency resolution
- Web UI for browsing
- Skill execution engine (
skillhub run) - Analytics dashboard
- VSCode extension
- AI-powered skill generation
- Skill marketplace
- GitHub Issues: Report bugs or request skills
- Discussions: Share ideas and ask questions
- Twitter: Follow @skillhub for updates
- Discord: Join our community (coming soon)
Q: What makes a good skill? A: A good skill is complete, well-documented, tested, and solves a real problem. It should be reproducible across different environments.
Q: Can I use skills from other AI agents? A: Yes! Skills are platform-agnostic markdown files. They work with Claude Code, GitHub Copilot, ChatGPT, or human developers.
Q: How do I update a skill? A: Submit a PR with the updated skill and increment the version number in the metadata.
Q: Can skills have dependencies on other skills? A: Not yet, but this is planned for Phase 2. For now, link to related skills in the "Related Skills" section.
Q: Is this only for Python? A: No! We have skills for JavaScript, Python, shell scripting, and more. Any reproducible workflow can be a skill.
This project is licensed under the MIT License - see the LICENSE file for details.
- Inspired by Homebrew package manager
- Built for AI agent workflows like Claude Code
- Community-driven and open source
If you find SkillHub useful, please star this repository!
Made with ❤️ by the SkillHub community
