README.md
June 2, 2026 Β· View on GitHub
Skills Manager
One app to manage AI agent skills across all your coding tools.
π¬ Video intro (YouTube) Β Β·Β θ§ι’δ»η» (Bilibili)
δΈζθ―΄ζ Β Β·Β @JayTL00 on X Β Β·Β Buy me a coffee
Install Skills β Marketplace

Global Workspace

Agent Workspace

Project Workspace

Settings

Features
- Unified skill library β Install skills from Git repos, local folders,
.zip/.skillarchives, or the skills.sh marketplace. Everything goes into one central repo, which defaults to~/.skills-managerand can be customized in Settings. - Marketplace + AI search β Browse popular skills from the marketplace, run keyword search, or enable SkillsMP AI search with your API key.
- Presets β Group skills into named presets. In any workspace, click a preset pill to instantly activate or deactivate all its skills for the current agent scope. The sidebar lists all presets for quick access.
- Global Workspace β Each agent gets its own page listing every skill in its global folder β including ones installed outside Skills Manager β so the view always reflects what the agent actually sees. Add or remove skills per agent, or use the All Agents overview to manage every installed agent at once.
- Project Workspaces β View and manage project-local skill folders for supported agents, compare them with your central library, and sync changes in either direction. Supports nested skill directories and per-agent assignment when exporting.
- Linked Workspaces β Point to any directory as a skills root β useful for skills that live outside the default agent paths. Managed as a standalone workspace without participating in global preset sync.
- Multi-tool sync β Sync skills to any supported tool via symlink or copy with a single click. Every skill card shows an agent icon badge per enabled agent β click a badge to install or remove that skill for that agent right from the card, with the badge reflecting live sync state.
- Add from Library sheet β In any workspace, click + Add Skills to open a unified picker: search your central library, toggle target agents with always-visible chips (with select-all/clear), and batch-add multiple skills in one click.
- Batch operations β Multi-select skills for bulk enable/disable, export, or delete. Project Workspaces also support bulk enable/disable for project-local skills.
- Skill tagging and filters β Tag skills, use tags to group similar skills, and filter by source or tag β including an Untagged pill to quickly find skills missing labels.
- Update tracking β Check for upstream updates on Git-based skills; re-import local ones.
- Skill preview and source inspection β Read
SKILL.md/README.md, inspect source metadata, and compare local content with the upstream version inside the app. - Custom tools β Add your own agents/tools with custom skills directories, or override the default path for any built-in tool.
- Git backup and restore β Version-control your skill library with Git for backup and multi-machine sync, then restore snapshot versions from Version History when needed.
- Activity log & Export Logs β Install / remove / update / sync operations are recorded locally. Use Settings β Export Logs to bundle recent logs and activity history into a single zip for easier issue reports.
- Flexible app settings β Configure repo path, sync mode, theme, text size, language, tray behavior, proxy, Git remote, update checks, and the order agents appear throughout the app β all in one place.
Core Concepts
- Presets are reusable skill groups β A preset is a named collection of skills. Activate a preset in any workspace to add all its skills to the selected agents; deactivate to remove them. Applying a preset is a one-time copy β not a live sync.
- Global Workspace manages per-agent global skills β Each installed agent has its own global skills folder (e.g.
~/.claude/skills/for Claude Code). Each agent page lists everything in that folder β even skills installed without Skills Manager β so you can add, remove, or adopt them; the All Agents overview manages every agent at once. - Project Workspaces are project-local skill sets β A project workspace manages the skills that live inside a specific project (e.g.
<project>/.claude/skills/). Skills added here only apply to that project. - Tags are for grouping and filtering β Use tags to label similar skills, then filter by tag to find the subset you want quickly.
- Batch control works everywhere β Multi-select skills in any workspace for bulk operations.
Quick Start
- Install skills from local folders, Git repositories, archives, or the marketplace. If you have a SkillsMP API key, you can also turn on AI search.
- Open Global Workspace from the sidebar and pick an agent (e.g. Claude Code).
- Click a Preset pill to activate its skills for that agent, or use + Add Skills to pick from your library and toggle target agents inline. Active presets show a β; partial installs show a count badge.
- To manage project-local skills, open a Project Workspace and use the same preset pills or the + Add Skills picker with its multi-agent target selector.
- Configure agent paths, custom tools, theme, language, proxy, and Git preferences in Settings.
- If you want history or multi-machine sync, set a Git remote in Settings and run Start Backup or Sync to Git from the Library.
Git Backup
Back up the skills/ folder inside your current central repository to a Git repo for version history and multi-machine sync. By default this is ~/.skills-manager/skills/.
Quick setup
- Create a private repository (recommended).
- Open Settings β Git Sync Configuration and save your remote URL.
- Open Library.
- Choose one:
- Existing remote: click Start Backup to clone from the configured remote.
- New local repo: click Start Backup to initialize locally, then use Sync to Git.
- Use Sync to Git from the Library toolbar.
Sync to Git automatically handles pull, commit, and push based on current repo status.
Each successful sync creates a snapshot version tag. You can open Version History in the Library, inspect the timeline, and restore any snapshot as a new commit.
Authentication
- SSH URL (
git@github.com:...): requires SSH key configured on your machine and added to GitHub. - HTTPS URL (
https://github.com/...): push usually requires a Personal Access Token (PAT).
Note: The SQLite database (
skills-manager.dbinside your current central repository,~/.skills-manager/skills-manager.dbby default) is not included in Git β it stores metadata that can be rebuilt by scanning the skill files.
Supported Tools
Cursor Β· Claude Code Β· Codex Β· OpenCode Β· Amp Β· Kilo Code Β· Roo Code Β· Goose Β· Gemini CLI Β· GitHub Copilot Β· Windsurf Β· TRAE IDE Β· Antigravity Β· Clawdbot Β· Droid
You can also add custom tools in Settings and manage their skills the same way.
In-App Help
The Help button in Settings mirrors the current product flow: recommended workflows, presets, skill installation, the Library (with the Untagged filter and per-card delete), the Global Workspace and the + Add Skills sheet, Project Workspaces with the multi-agent target picker, Git backup, and environment-level settings (including Export Logs for issue reports). It is intended as the in-app version of this quick-start guide.
Tech Stack
| Layer | Tech |
|---|---|
| Frontend | React 19, TypeScript, Vite, Tailwind CSS |
| Desktop | Tauri 2 |
| Backend | Rust |
| Storage | SQLite (rusqlite) |
| i18n | react-i18next |
Getting Started
Prerequisites
- Node.js 18+
- Rust toolchain
- Tauri prerequisites for your OS
Development
npm install
npm run tauri:dev
CLI
The repository includes an agent-friendly CLI built on the same Rust shared core used by the desktop app. Both the CLI and the desktop app go through the same SQLite database, central library, and sync engine.
# Repository / library overview
npm run cli -- repo status
npm run cli -- skills list
npm run cli -- skills show db
# Install skills (default: enter library only β does NOT sync to agents)
npm run cli -- skills install ./my-skill # local path
npm run cli -- skills install https://github.com/foo/bar.git # git URL
npm run cli -- skills install vercel-labs/agent-skills@react-best-practices # skills.sh
npm run cli -- skills install foo/bar --sync # add to active preset + sync to agents
# Update / check from upstream (git skills re-clone, local skills re-import source)
npm run cli -- skills update --all
npm run cli -- skills check --all
# Search the skills.sh marketplace (no API key needed)
npm run cli -- skills search react --limit 5
# Remove (--yes required; --dry-run available)
npm run cli -- skills remove <ref> --dry-run
npm run cli -- skills remove <ref> --yes
# Enable / disable skills by changing preset membership
npm run cli -- presets add-skill <preset> <ref>
npm run cli -- presets remove-skill <preset> <ref>
# Sync the active preset out to enabled agents
npm run cli -- skills sync --dry-run
npm run cli -- skills sync --tool claude_code
# Adopt skills that already exist in an agent directory (e.g. ~/.claude/skills/)
npm run cli -- skills adopt ~/.claude/skills --dry-run
npm run cli -- skills adopt ~/.claude/skills
# Tag
npm run cli -- skills tag add <ref> web frontend
npm run cli -- skills tag list
# Presets
npm run cli -- presets list
npm run cli -- presets preview Default
npm run cli -- presets apply Default
npm run cli -- presets add-skill <preset> <skill>
npm run cli -- presets remove-skill <preset> <skill>
# Export one skill to an arbitrary directory (one-shot copy, not managed)
npm run cli -- skills export db --dest ~/.claude/skills/db
# Git-backed skills repo
npm run cli -- git status
npm run cli -- git pull
npm run cli -- git commit -m "chore: update skills"
Available command groups:
repoβ inspect or change the configured base directorytoolsβ list detected tool targets and pathsskillsβ manage skills in the central library (list / show / install / update / check / remove / enable / disable / sync / search / adopt / tag / export)presetsβ list presets, preview / apply, add or remove skills from a presetgitβ operate on the git-backedskills/repository (clone,pull,push,commit,versions,restore)
Extra flags:
--skills-root <path>β operate on a cloned/exported skills repo directly instead of the local app default. The manager's state (DB, presets, cache, logs) lives in~/.skills-manager/external/<name>-<hash>/, namespaced by the canonical path of the skills root, so the external checkout itself stays clean.--jsonβ machine-readable output for scripts/agents
npm run -s cli -- --skills-root /path/to/my-skills --json skills list
Install the binary on PATH
Agents and scripts that invoke skills-manager-cli directly (without npm run) need the binary on PATH. Install it with:
npm run cli:install
# equivalent to:
# cargo install --path src-tauri --bin skills-manager-cli --locked --force
This drops the binary at ~/.cargo/bin/skills-manager-cli. Re-run after pulling updates to refresh it.
Concurrent use with the desktop app
The CLI and desktop app share the same SQLite database. SQLite serializes writes safely, but the running app does not auto-refresh its in-memory caches when the CLI mutates state β restart or trigger a manual refresh in the app after presets apply, git pull, or other CLI write operations.
Build
npm run tauri:build
npm run cli:build
Troubleshooting
macOS: Gatekeeper blocks the app on first launch
Skills Manager is ad-hoc signed but not notarized (no paid Apple Developer ID), so macOS Gatekeeper will warn the first time you open it.
-
"Apple could not verify β¦ is free of malware" or "App can't be opened because it is from an unidentified developer" (releases from v1.20.0 onward) β On macOS 15 (Sequoia) the dialog above only offers Move to Trash / Done: click Done, then open System Settings β Privacy & Security and click Open Anyway (it appears after the first blocked launch). On older macOS you can instead right-click the app in Finder and choose Open, then confirm in the dialog.
-
"App is damaged and can't be opened" (releases up to and including v1.19.0) β Run this in Terminal, then open the app again:
xattr -cr /Applications/skills-manager.appReplace the path with wherever you placed the
.appfile if it's not in/Applications.
License
MIT