@deconbear/get-skill
v0.1.0
Published
Download and install a Claude Code skill from DeconBear/skills (premium-ui-gallery, vision, ocr-parser) into ~/.claude/skills/.
Maintainers
Readme
@deconbear/get-skill
A one-liner installer for the DeconBear/skills collection of Claude Code skills.
npx @deconbear/get-skill ocr-parser
npx @deconbear/get-skill vision
npx @deconbear/get-skill premium-ui-galleryEach command downloads the corresponding skill's latest release zip from
GitHub and extracts it into ~/.claude/skills/<skill>/. After the install
the script tells you the exact cp .env.example .env command to run for
skills that need an API key.
Usage
npx @deconbear/get-skill <skill> [--dest PATH] [--version VER]
Skills:
- premium-ui-gallery
- vision
- ocr-parser
Options:
--dest PATH extract to this directory
(default: ~/.claude/skills/<skill>)
--version VER release version tag (default: v0.1.0)
--list list known skills and exit
-h, --help show this helpExamples
# Default: install ocr-parser to ~/.claude/skills/ocr-parser
npx @deconbear/get-skill ocr-parser
# Install to a custom path
npx @deconbear/get-skill vision --dest ./my-skill
# Pin to a specific release
npx @deconbear/get-skill premium-ui-gallery --version v0.1.0
# List available skills
npx @deconbear/get-skill --listHow it works
- Resolves
<skill>to a GitHub release tag (<skill>-<version>). - Downloads the zip from
https://github.com/DeconBear/skills/releases/download/<tag>/<skill>.zip(follows the 302 toobjects.githubusercontent.com). - Extracts the zip into
--dest(default~/.claude/skills/<skill>). - If the skill ships a
.env.exampleand no.envexists yet, prints the exactcpcommand to set up credentials.
No config files, no global state, no telemetry. The only runtime dependency is adm-zip for cross-platform zip extraction.
Requirements
- Node.js ≥ 18 (for
npx). - Network access to
github.comandobjects.githubusercontent.com. - On the target filesystem: write permission to the install directory
(default:
~/.claude/skills/).
License
MIT © 2026 DeconBear.
Repository
https://github.com/DeconBear/skills
