Skills Importer (VS Code Extension)
December 23, 2025 · View on GitHub
This extension installs Agent Skills from a GitHub repository into your current workspace at:
.github/skills/
Commands
-
Skills: Install from Library…
- Downloads the configured GitHub skills repo (defaults to
anthropics/skills) - Lets you pick a skill
- Previews its
SKILL.md - Installs the full skill folder into
.github/skills/<skill-name>/
- Downloads the configured GitHub skills repo (defaults to
-
Skills: Update Installed Skills…
- Re-installs skills listed in
.github/skills/.skills-lock.jsonfrom the configured repo/ref
- Re-installs skills listed in
-
Skills: Remove Installed Skill…
- Removes selected skill folders from
.github/skills/
- Removes selected skill folders from
Settings
skillsImporter.library(default:anthropics/skills)skillsImporter.ref(default:main)skillsImporter.path(default:skills)skillsImporter.cache.ttlHours(default:24)
To Install via VSIX
- Build or download the VSIX (run
npm run package; it outputsskills-importer-<version>.vsixat the repo root by default). - In VS Code, open the Command Palette and run Extensions: Install from VSIX..., then pick the VSIX file.
- Alternatively, install from a terminal:
code --install-extension /path/to/skills-importer-x.x.x.vsix - Reload the window if prompted and activate in the command palette.
Development
- Install dependencies:
npm install - Build the extension:
npm run compile- Press
F5in VS Code to launch an Extension Development Host.
- Press
- Run the test suite (after compiling):
npm test - Watch for rebuilds during development:
npm run watch - Package a new VSIX:
npm run package
License: MIT
Copyright: © Mike Bijon @mbijon, 2025