Release Notes
v0.7.0 — Windows & Search 🔍
Release Date: 2026-02-01
Full Windows support and GitHub skill discovery. Find and install skills from the community with a single command.
✨ Highlights
|
🔍 Search Skills Discover skills from GitHub with interactive search. skillshare search vercel
# → Select and install instantly |
🪟 Full Windows Support Native Windows experience with NTFS junctions. irm .../install.ps1 | iex
skillshare sync # No admin required |
|
📝 Create Skills Scaffold new skills with proper SKILL.md template. skillshare new my-skill
# → Creates SKILL.md with frontmatter |
🎨 Redesigned UI Tree-style output for install, upgrade, and help.
|
🔍 Search Skills
Search GitHub for skills and install them interactively:
skillshare search vercel▸ Searching vercel
│
├─ Found 20 skill(s)
? Select skill to install:
react-best-practices ★ 2.3k OneKeyHQ/app-monorepo/.claude/skills/react-best-practices
vercel-deploy ★ 1.7k quran/quran.com-frontend-next/.agents/skills/vercel-deploy
▸ moai-domain-uiux ★ 593 modu-ai/moai-adk/.claude/skills/moai-domain-uiux
Features:
- Smart ranking — Results sorted by repository stars
- Interactive selector — Arrow keys to navigate, Enter to install
- Continuous search — Search again without restarting
- Filter forks — Only shows original repositories
Options:
| Flag | Description |
|---|---|
--list, -l
| List results only, no install prompt |
--json
| Output as JSON (for scripting) |
--limit N, -n N
| Maximum results (default: 20) |
skillshare search pdf --list # List only
skillshare search react --json # JSON output
skillshare search commit -n 5 # Limit resultsNote: Requires
gh auth loginorGITHUB_TOKENenvironment variable.
🪟 Full Windows Support
Windows is now a first-class citizen with native support:
| Feature | Implementation |
|---|---|
| Linking | NTFS Junctions (no admin required) |
| Installer | PowerShell one-liner |
| Downloads | ZIP format support |
| Self-upgrade | Handles executable locking |
| Backup | Junction-aware copy |
Install on Windows:
irm https://raw.githubusercontent.com/runkids/skillshare/main/install.ps1 | iexHow it differs from macOS/Linux:
| macOS/Linux | Windows | |
|---|---|---|
| Path | ~/.config/skillshare/
| %USERPROFILE%\.config\skillshare\
|
| Links | Symlinks | NTFS Junctions |
| Archive | .tar.gz
| .zip
|
| Permissions | Standard | No admin required |
📝 New Command: new
Create skill templates quickly:
skillshare new my-awesome-skillCreates my-awesome-skill/SKILL.md with proper frontmatter:
---
name: my-awesome-skill
description: Description of my-awesome-skill
---
# my-awesome-skill
Your skill content here.🎨 UI Improvements
Tree-Style Output
All major commands now use consistent tree-style formatting:
Install:
▸ Installing anthropics/skills/pdf
├─ Cloning repository...
└─ ✓ Installed: pdf
Upgrade:
▸ Upgrading skillshare
├─ Current: 0.6.31
├─ Latest: 0.7.0
├─ Downloading...
└─ ✓ Upgraded to 0.7.0
Redesigned Help
_____ __ _ ____ __
/ ___// /__(_) / /____/ /_ ____ __________
\__ \/ //_/ / / / ___/ __ \/ __ `/ ___/ _ \
___/ / ,< / / / (__ ) / / / /_/ / / / __/
/____/_/|_/_/_/_/____/_/ /_/\__,_/_/ \___/
Sync AI CLI skills from a single source of truth.
Workflow init, sync, pull, push
Skills new, install, uninstall, update, list
...
🤖 Expanded Agent Support
Now supports 35+ AI CLI tools (up from 17):
New additions:
- OpenClaw (formerly Moltbot)
- Kimi CLI
- And 13 more community agents
Run skillshare target list --all to see all supported targets.
🔧 Other Improvements
- Upgrade command: GitHub token support, better rate limit handling
- Version check: Notification after commands when update available
- Init progress: Shows spinner when downloading skillshare skill
- Discovery mode:
init --discoverfinds git subdirectories - Force update:
update --forcediscards local changes
⬆️ Upgrade
skillshare upgradeFull Changelog: v0.6.0...v0.7.0
Changelog
- 1aab744 feat(search): add skillshare search command