Install, enable, and manage agent skills across IDEs with one unified desktop app. Skills Manager brings together curated sources (skills.sh and SkillsMP), provides a guided install flow, and lets you toggle skills per-IDE with clear runtime feedback.
- Multi‑IDE control: Install once, enable/disable per IDE.
- Skills discovery: Top skills from skills.sh + SkillsMP search.
- Guided installs: Live install output and stage tracking.
- Local + external sources: GitHub repos, skills.sh, SkillsMP.
- Per‑IDE status: Clear enabled/disabled state indicators.
- Local settings: Extra roots, SkillsMP API key, Copilot root.
- Dark mode: Built‑in light/dark themes.
- VS Code (with optional Copilot skills root symlink)
- OpenCode
- Codex
- Antigravity
- Cursor
- Claude Code
If an IDE target does not support enablement yet, the toggle will show it as
Unsupported.
corepack enable
yarn install
yarn devYou can configure Skills Manager via the Settings screen or environment variables.
Create a .env based on .env.example:
cp .env.example .envSupported values:
SKILLSMP_API_KEY=your_skillsmp_key
Inside the app:
- SkillsMP API Key: Used for higher‑rate access to SkillsMP.
- Extra Skill Roots: Additional directories to scan for skills.
- VS Code Copilot Skills Root: If set, skills are symlinked for Copilot.
- Search SkillsMP or pick from top lists.
- Click Use to prefill the install form.
- Choose target IDE and click Install Skill.
- Watch live output while the skill is cloned, scanned, and installed.
This repo uses electron-builder.
yarn icon:macThis script generates build/icon.icns from media/app-icon.svg.
yarn build
yarn dist:macArtifacts land in dist/.
yarn build
yarn dist:winWindows artifacts land in dist/.
- Check
SKILLSMP_API_KEYis set in.env. - Open Activity → Search Debug for response logs.
If a repo URL includes tree/..., the app will normalize it to the root repo.
If a repo still fails to clone, try pasting only owner/repo.
The app groups skills by name and uses per‑target state.
If a target path is corrupt, remove the skill via Delete From All IDEs and reinstall.
src/
main/ Electron main process
preload/ IPC bridge
renderer/ React UI
shared/ Types
skills/ Skill scanners/targets
yarn dev # run in development
yarn build # build production bundles
yarn dist:mac # build macOS installer
yarn dist:win # build Windows installer + zip
yarn dist:all # build macOS + Windows artifacts
yarn icon:mac # generate macOS icnsMIT

