Install AI skills from GitHub — like npm for your AI agent.
npx @deployonfriday/skilldock add DeployOnFriday/seoSkillDock is a command-line tool that lets you install AI skills from any public GitHub repo — instantly, globally, and with a single command. Think of it as npm, but for AI agent skills.
Skills are markdown files (SKILL.md) that give your AI agent expert-level knowledge for a specific domain. Once installed, they're automatically active in every project on your machine.
No installation required — use via npx:
npx @deployonfriday/skilldock add DeployOnFriday/seoOr install globally to skip the npx prefix every time:
npm install -g @deployonfriday/skilldock
skilldock add DeployOnFriday/seo# Install a skill from any public GitHub repo
skilldock add DeployOnFriday/seo
# Install a specific skill from a monorepo
skilldock add DeployOnFriday/skills --skill seo
# Install a specific version/tag
skilldock add DeployOnFriday/seo@v2.0.0
# List all installed skills
skilldock list
# Update a skill to latest version
skilldock update seo
# Update every installed skill at once
skilldock update-all
# Remove a skill
skilldock remove seoSkillDock downloads skills from GitHub and installs them globally to ~/.skilldock/ as the master copy, then symlinks or copies to all agent directories on your machine.
During installation you choose:
- Which agents to install to (Claude Code, Cline, Kilo Code, Continue, Cursor, etc.)
- Scope: Global (all projects) or Project (current directory only)
- Method: Symlink (single source of truth) or Copy (independent copies)
~/.skilldock/
└── seo/ ← master copy
├── SKILL.md
└── references/
~/.claude/skills/seo/ ← symlink or copy for Claude Code
~/.continue/skills/seo/ ← symlink or copy for Continue
~/.kilocode/skills/seo/ ← symlink or copy for Kilo Code
...
| Skill | Install | What It Does |
|---|---|---|
| SEO | skilldock add DeployOnFriday/seo |
Professional-grade SEO — 18 services including technical, content, local, AI search, and more |
More skills coming. Want to publish your own? See Publishing a Skill.
SkillDock installs to all major AI agent tools:
| Agent | Directory |
|---|---|
| Claude Code | ~/.claude/skills/ |
| Cline | ~/.agents/skills/ |
| Cursor | ~/.agents/skills/ |
| Kilo Code | ~/.kilocode/skills/ |
| Continue | ~/.continue/skills/ |
| Windsurf | ~/.windsurf/skills/ |
| Antigravity | ~/.antigravity/skills/ |
| GitHub Copilot | ~/.agents/skills/ |
| + 26 more | selectable during install |
Any public GitHub repo with a SKILL.md at the root is installable via SkillDock. Your SKILL.md needs a name in the YAML frontmatter:
---
name: my-skill
description: What this skill does and when the AI should use it...
---
# My Skill
Instructions for the AI go here...Optionally add a references/ folder with supporting markdown files.
Push to GitHub → anyone installs with:
skilldock add your-username/my-skillMIT — see LICENSE