Setup Skillshare
Description
🔃 GitHub Action to install and initialize skillshare CLI
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
setup-skillshare
[](https://github.com/runkids/setup-skillshare/actions/workflows/test.yml)
GitHub Action to install and initialize [skillshare](https://github.com/runkids/skillshare) CLI — the universal skill manager for AI coding agents.
Skillshare syncs your AI coding skills (Claude, Cursor, Codex, Gemini, and 50+ more) from a single source of truth. This action sets up skillshare in CI so you can automate skill syncing, installation, and security auditing.
Quick Start
name: Sync Skills
on: push
jobs:
sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: runkids/setup-skillshare@v1
with:
source: ./skills
- run: skillshare sync
Usage Examples
Sync team skills from your repo
Your team maintains a skills repo. CI checks it out and syncs to all AI CLI targets.
jobs:
sync-skills:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: runkids/setup-skillshare@v1
with:
source: ./skills
- run: skillshare sync
Sync to specific targets with copy mode
Only sync to Claude and Cursor, using copy mode (real files instead of symlinks).
- uses: runkids/setup-skillshare@v1
with:
source: ./skills
targets: claude,cursor
mode: copy
- run: skillshare sync
Install a tracked repo from GitHub
Install an organization's shared skills repo with `--track` for future updates.
- uses: runkids/setup-skillshare@v1
- run: skillshare install your-org/skills --track
- run: skillshare sync
Install specific skills from a repo
Cherry-pick individual skills by name.
- uses: runkids/setup-skillshare@v1
- run: skillshare install your-org/skills --skill pdf,commit
- run: skillshare sync
Cross-machine sync with git remote
Set up a git remote so skills can be pushed/pulled
Related Skills
使用 Git Worktrees
创建孤立的 Git worktrees,带有智能目录选择与安全验证。
Git Claude skills github
[Building agent skills blog](https://www.anthropic.com/engineering/equipping-agents-for-the-real-world-with-ag
Git #148
, [#161](https://github.com/affaan-m/everything-claude-code/pull/161))
Git GitHub MCP
| Token | Repos, issues, PRs, workflows |
Git GitHub MCP Server
Official first-party server to read repos, manage issues/PRs, and automate workflows.
Git mcp-server-github
GitHub API integration for repos, issues, PRs.
Git