Quick Reference
Command cheat sheet for skillshare.
Core Commands
| Command | Description |
|---|---|
init | First-time setup |
install <source> | Add a skill |
uninstall <name> | Remove a skill |
list | List all skills |
search <query> | Search for skills |
sync | Push to all targets |
status | Show sync state |
Skill Management
| Command | Description |
|---|---|
new <name> | Create a new skill |
update <name> | Update a skill (git pull) |
update --all | Update all tracked repos |
upgrade | Upgrade CLI and built-in skill |
Target Management
| Command | Description |
|---|---|
target list | List all targets |
target <name> | Show target details |
target <name> --mode <mode> | Change sync mode |
target add <name> <path> | Add custom target |
target remove <name> | Remove target safely |
diff [target] | Show differences |
Sync Operations
| Command | Description |
|---|---|
collect <target> | Collect skills from target to source |
collect --all | Collect from all targets |
backup [target] | Create backup |
backup --list | List backups |
restore <target> | Restore from backup |
push [-m "msg"] | Push to git remote |
pull | Pull from git and sync |
Utilities
| Command | Description |
|---|---|
doctor | Diagnose issues |
Common Workflows
Install and sync a skill
skillshare install anthropics/skills/skills/pdf
skillshare sync
Create and deploy a skill
skillshare new my-skill
# Edit ~/.config/skillshare/skills/my-skill/SKILL.md
skillshare sync
Cross-machine sync
# Machine A: push changes
skillshare push -m "Add new skill"
# Machine B: pull and sync
skillshare pull
Team skill sharing
# Install team repo
skillshare install github.com/team/skills --track
# Update from team
skillshare update --all
skillshare sync
Key Paths
| Path | Description |
|---|---|
~/.config/skillshare/config.yaml | Configuration file |
~/.config/skillshare/skills/ | Source directory |
~/.config/skillshare/backups/ | Backup directory |
Flags Available on Most Commands
| Flag | Description |
|---|---|
--dry-run, -n | Preview without making changes |
--help, -h | Show help |
See Also
- Commands Reference — Full command documentation
- Concepts — Core concepts explained