Install agent skills from GitHub with one click
A Chrome extension that detects SKILL.md files on GitHub and generates npx skills add commands to install them.
Install from Chrome Web Store →
Install • How It Works • Supported Pages • Development
How It Works
- Browse any GitHub repo containing SKILL.md files
- Click the extension icon — detected skills appear instantly
- Hit Copy Install Command — copies an
npx skills addcommand - Paste in your terminal — done!
Single Skill
Navigate to a SKILL.md file or its parent directory and install it directly.
Multiple Skills
Browse a skills repo and batch-install the ones you want.
One Command
The npx skills add command is copied to your clipboard — paste it in your terminal.
Supported Pages
| GitHub URL Pattern | What Happens |
|---|---|
github.com/{owner}/{repo}/blob/{branch}/**/SKILL.md |
Detects the single skill, shows name & description |
github.com/{owner}/{repo}/tree/{branch}/skills/{name} |
Detects SKILL.md in the directory listing |
github.com/{owner}/{repo} |
Lists all skills in the skills/ subdirectory |
Install
Chrome Web Store
Install from Chrome Web Store →
Manual Install (Developer Mode)
- Clone this repo:
git clone https://github.com/oronbz/skill-scraper.git
- Open
chrome://extensionsin Chrome - Enable Developer mode (top right)
- Click Load unpacked and select the cloned directory
- Navigate to a GitHub repo with SKILL.md files and click the extension icon
What Are Agent Skills?
Skills are markdown instruction files that extend AI coding agents' capabilities. Each skill is a SKILL.md file that teaches agents new behaviors, workflows, and domain expertise. They work with Claude Code, Cursor, Windsurf, and other agents that support the skills convention.
Development
The extension is vanilla JS with zero dependencies. No build step required.
skill-scraper/
├── manifest.json # MV3 extension manifest
├── content/content.js # GitHub page detection
├── background/service-worker.js # API calls & command generation
├── popup/ # Extension popup UI
│ ├── popup.html
│ ├── popup.css
│ └── popup.js
├── utils/
│ ├── github.js # URL parsing & API helpers
│ └── skill.js # YAML frontmatter parser
└── icons/ # Extension icons
Privacy
- Only activates on
github.compages - Fetches public file contents from the GitHub API
- No data is collected, stored, or sent to any third party
- No authentication required for public repos
License
MIT



