A curated catalog of skillshare skills β and a reference for building your own.
Search, discover, and install AI CLI skills. Fork this repo to create your organization's internal hub.
A curated index of skillshare skills that serves two purposes:
- Ready-to-use catalog β Pre-configured as the default hub in skillshare. Run
skillshare search --hubor open Search > Hub in the Web UI. - Reference for your own hub β Fork this repo, replace the skills with your organization's catalog, and customize the CI pipeline. Same schema, same tooling.
skillshare search --hub https://raw.githubusercontent.com/runkids/skillshare-hub/main/skillshare-hub.json <query>Run skillshare ui, go to Search > Hub β Skillshare Hub is pre-selected. Browse or search the catalog with one-click install.
skillshare install <source>Built a useful skill? Share it with the community! Adding your skill to this hub makes it discoverable by all skillshare users β via CLI, Web UI, or direct install.
- Fork this repo
- Add your skill to
skillshare-hub.json:{ "name": "my-skill", "description": "One-line description of what the skill does", "source": "your-username/your-repo", "tags": ["relevant", "tags"] } - Open a Pull Request
CI will automatically:
- Validate JSON format, required fields, and naming conventions
- Clone your skill repo and run
skillshare audit(security scan)
See CONTRIBUTING.md for full guidelines.
{
"schemaVersion": 1,
"skills": [
{
"name": "ascii-box-check",
"description": "Verify and fix ASCII box-drawing diagram alignment in markdown files",
"source": "runkids/my-skills",
"skill": "ascii-box-check",
"tags": ["docs", "workflow"]
}
]
}| Field | Required | Description |
|---|---|---|
name |
Yes | Unique, lowercase, hyphens only |
description |
Yes | One-line description |
source |
Yes | GitHub owner/repo, full git URL, or any platform URL (GitLab, Bitbucket, etc.) |
skill |
No | Specific skill name within a multi-skill repo (used with install -s) |
tags |
No | 1-3 classification tags |
Fork this repo to create an internal hub for your team or company. What you get out of the box:
- CI validation β JSON format checks and
skillshare auditsecurity scans on every PR - Contribution workflow β Fork β add entry β PR, with automated gates
- Familiar tooling β Same schema, same CLI, same Web UI
# 1. Fork this repo and replace skills with your internal sources
# e.g. "source": "ghe.internal.company.com/platform/ai-skills/code-review"
# 2. Or auto-generate an index from installed skills
skillshare hub index -o ./skillshare-hub.json
# 3. Team members add your hub once
skillshare hub add https://skills.internal.company.com/skillshare-hub.json --label company
# 4. Search and install β only accessible behind VPN
skillshare search --hub companyThe key advantage: source fields can point to private repos (GitHub Enterprise, internal GitLab, etc.) that public tools like GitHub Search can never reach. Host the JSON file anywhere β internal Git repo, intranet server, S3, file share.
- skillshare documentation β full CLI reference and guides
- Hub Index guide β create and manage hub indexes
- CONTRIBUTING.md β how to submit a skill

