skillshare — skillshare install skillshare, community, skillshare install, ide skills, sync ai cli tools, team sharing across ai platforms, ai cli tool management, Claude Code, Cursor, Windsurf

vv0.16.12
GitHub

About this Skill

Perfect for AI CLI Agents needing seamless skill synchronization across tools like Claude Code and OpenClaw. Skillshare is a CLI tool that enables syncing of skills across multiple AI platforms, allowing for seamless project sharing and collaboration.

Features

Auto-detects project mode when .skillshare/config.yaml exists
Supports global and project-local skill storage via ~/.config/skillshare/skills/ and .skillshare/skills/
Initiates fresh global or project setup with skillshare init command
Allows importing skills from existing CLIs using skillshare init --copy-from
Enables force mode with -p or -g flags for custom setup

# Core Topics

runkids runkids
[0]
[0]
Updated: 3/8/2026

Agent Capability Analysis

The skillshare skill by runkids is an open-source community AI agent skill for Claude Code and other IDE workflows, helping agents execute tasks with better context, repeatability, and domain-specific guidance. Optimized for skillshare install, sync ai cli tools, team sharing across ai platforms.

Ideal Agent Persona

Perfect for AI CLI Agents needing seamless skill synchronization across tools like Claude Code and OpenClaw.

Core Value

Empowers agents to sync skills globally or project-locally using YAML configurations, supporting tools like Claude Code and OpenCode through a unified CLI interface, utilizing protocols like Git for version control and file formats like YAML for configuration.

Capabilities Granted for skillshare

Synchronizing skills across multiple AI CLI tools
Automating project setup with unified skill sharing
Debugging skill inconsistencies between global and project-local configurations

! Prerequisites & Limits

  • Requires YAML configuration files
  • Dependent on CLI tools like Claude Code and OpenClaw
  • Needs Git for version control
Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

skillshare

Install skillshare, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

SKILL.md
Readonly

Skillshare CLI

Global: ~/.config/skillshare/skills/ → all AI CLIs. Project: .skillshare/skills/ → repo-local. Auto-detects project mode when .skillshare/config.yaml exists. Force with -p or -g.

Recipes

Getting Started

bash
1skillshare init --no-copy --all-targets --git --skill # Fresh global setup 2skillshare init -p --targets "claude,cursor" # Fresh project setup 3skillshare init --copy-from claude --all-targets --git # Import from existing CLI 4skillshare init --discover --select "windsurf" # Add new AI tool later

Installing Skills

bash
1skillshare install user/repo -s pdf,commit # Select specific skills 2skillshare install user/repo --all # Install everything 3skillshare install user/repo --into frontend # Place in subdirectory 4skillshare install gitlab.com/team/repo # Any Git host 5skillshare install user/repo --track # Enable `update` later 6skillshare install user/repo -s pdf -p # Install to project 7skillshare install # Reinstall all tracked remotes from config 8skillshare sync # Always sync after install 9skillshare sync extras # Sync non-skill extras (rules, commands) 10skillshare sync --all # Sync skills + extras together

Creating & Discovering Skills

bash
1skillshare new my-skill # Create a new skill from template 2skillshare search "react testing" # Search GitHub for skills 3skillshare collect # Pull target-local changes back to source

Removing Skills

bash
1skillshare uninstall my-skill # Remove one (moves to trash) 2skillshare uninstall skill-a skill-b # Remove multiple 3skillshare uninstall -G frontend # Remove entire group 4skillshare sync # Always sync after uninstall

Team / Organization

bash
1# Creator: init project (see Getting Started) → add skills → commit .skillshare/ 2skillshare install -p && skillshare sync # Member: clone → install → sync 3skillshare install github.com/team/repo --track -p # Track shared repo 4skillshare push # Cross-machine: push on A 5skillshare pull # Cross-machine: pull on B

Skill Hubs

bash
1skillshare hub add https://example.com/hub.json # Save a hub source 2skillshare hub add https://example.com/hub.json --label my-hub # With custom label 3skillshare hub list # List saved hubs 4skillshare hub default my-hub # Set default hub 5skillshare hub remove my-hub # Remove a hub 6skillshare hub index --source ~/.config/skillshare/skills/ --full --audit # Build hub index

Controlling Where Skills Go

bash
1# SKILL.md frontmatter: targets: [claude] → only syncs to Claude 2skillshare target claude --add-include "team-*" # glob filter 3skillshare target claude --add-exclude "_legacy*" # exclude pattern 4skillshare target codex --mode copy && skillshare sync --force # copy mode

See targets.md for details.

Updates & Maintenance

bash
1skillshare check # See what has updates 2skillshare update my-skill && skillshare sync # Update one 3skillshare update --all && skillshare sync # Update all 4skillshare update --all --diff # Show what changed

Scripting & CI/CD

bash
1skillshare status --json # Full status as JSON 2skillshare check --json # Update status as JSON 3skillshare sync --json # Sync results as JSON 4skillshare diff --json # Diff results as JSON 5skillshare install user/repo --json # Install result as JSON (implies --force --all) 6skillshare update --all --json # Update results as JSON 7skillshare uninstall my-skill --json # Uninstall result as JSON (implies --force) 8skillshare collect claude --json # Collect result as JSON (implies --force) 9skillshare target list --json # Target list as JSON 10skillshare list --json # Skill list as JSON 11skillshare search react --json # Search results as JSON 12skillshare audit --format json # Audit results as JSON

Recovery & Troubleshooting

bash
1skillshare trash restore <name> && skillshare sync # Undo delete 2skillshare sync # Skill missing? Re-sync 3skillshare doctor && skillshare status # Diagnose issues 4skillshare install user/repo --force # Override audit block 5skillshare install user/repo --skip-audit # Bypass scan entirely

See TROUBLESHOOTING.md for more.

Quick Lookup

CommandsProject?--json?
status, diff, list, doctor✓ (auto)✓ (except doctor)
sync, collect✓ (auto)
install, uninstall, update, check, search, new✓ (-p)✓ (except new)
target, audit, trash, log, hub✓ (-p)✓ (target list, audit, log)
push, pull, backup, restore
tui, upgrade
ui✓ (-p)

AI Caller Rules

  1. Non-interactive — AI cannot answer prompts. Use --force, --all, -s, --targets, --no-copy, --all-targets, --yes.
  2. Sync after mutationsinstall, uninstall, update, collect, target all need sync.
  3. Auditinstall auto-scans; CRITICAL blocks. --force to override, --skip-audit to bypass. Detects hardcoded secrets (API keys, tokens, private keys).
  4. Uninstall safely — moves to trash (7 days). trash restore <name> to undo. NEVER rm -rf symlinks.
  5. Output--json for structured data (12 commands support it, see Quick Lookup). --no-tui for plain text on TUI commands (list, log, audit, diff, trash list, backup list). tui off disables TUI globally. --dry-run to preview.

References

TopicFile
Init flagsinit.md
Sync/collect/push/pullsync.md
Install/update/uninstall/newinstall.md
Status/diff/list/search/checkstatus.md
Security auditaudit.md
Trashtrash.md
Operation loglog.md
Targetstargets.md
Backup/restorebackup.md
TroubleshootingTROUBLESHOOTING.md

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is skillshare?

Perfect for AI CLI Agents needing seamless skill synchronization across tools like Claude Code and OpenClaw. Skillshare is a CLI tool that enables syncing of skills across multiple AI platforms, allowing for seamless project sharing and collaboration.

How do I install skillshare?

Run the command: npx killer-skills add runkids/skillshare. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for skillshare?

Key use cases include: Synchronizing skills across multiple AI CLI tools, Automating project setup with unified skill sharing, Debugging skill inconsistencies between global and project-local configurations.

Which IDEs are compatible with skillshare?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for skillshare?

Requires YAML configuration files. Dependent on CLI tools like Claude Code and OpenClaw. Needs Git for version control.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add runkids/skillshare. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use skillshare immediately in the current project.

Related Skills

Looking for an alternative to skillshare or another community skill for your workflow? Explore these related open-source skills.

View All

widget-generator

Logo of f
f

f.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source — self-host for your organization with complete privacy.

149.6k
0
AI

flags

Logo of vercel
vercel

flags is a Next.js feature management skill that enables developers to efficiently add or modify framework feature flags, streamlining React application development.

138.4k
0
Browser

zustand

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI

data-fetching

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI