GitHub - oronbz/skill-scraper: Chrome extension to install agent skills from GitHub with one click

Skill Scraper

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 →

Chrome Web Store Version Chrome Web Store Users License

InstallHow It WorksSupported PagesDevelopment


How It Works

  1. Browse any GitHub repo containing SKILL.md files
  2. Click the extension icon — detected skills appear instantly
  3. Hit Copy Install Command — copies an npx skills add command
  4. Paste in your terminal — done!

Single Skill

Navigate to a SKILL.md file or its parent directory and install it directly.

Single skill detection

Multiple Skills

Browse a skills repo and batch-install the ones you want.

Multi-skill selection

One Command

The npx skills add command is copied to your clipboard — paste it in your terminal.

Command copied

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)

  1. Clone this repo:
    git clone https://github.com/oronbz/skill-scraper.git
  2. Open chrome://extensions in Chrome
  3. Enable Developer mode (top right)
  4. Click Load unpacked and select the cloned directory
  5. 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.com pages
  • 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