Getting Started
This guide walks you through installing skilltap, installing your first skill, setting up a tap, and configuring defaults.
Install skilltap
Download the standalone binary:
curl -fsSL https://skilltap.dev/install.sh | shThis puts the skilltap binary on your PATH. No runtime dependencies required.
Alternatively, if you have Bun installed:
bunx skilltapVerify the install:
skilltap --versionInstall your first skill
Install a skill from a git URL:
skilltap install user/commit-helperskilltap walks you through the process interactively:
◆ skilltap
◆ Install to:
│ ● Global (~/.agents/skills/)
│ ○ Project (.agents/skills/)
◆ Which agents should this skill be available to?
│ ◼ Claude Code
│ ◻ Cursor
│ ◻ Codex
│ ◻ Gemini
│ ◻ Windsurf
◆ Save agent selection as default?
│ Yes
◇ Cloning user/commit-helper...
◇ Scanning commit-helper...
│ ✓ No warnings
◇ Install commit-helper?
│ › Yes
✓ Installed commit-helper → ~/.agents/skills/commit-helper/Here's what happened:
- You chose where to install (global or project scope)
- You selected which agents should see the skill (symlinks are created automatically)
- skilltap cloned the repo
- A static security scan checked all files for suspicious content
- No warnings found — you confirmed the install
- The skill was placed at
~/.agents/skills/commit-helper/with a symlink in~/.claude/skills/commit-helper/
If the scan had found warnings, skilltap would show them and offer to run a deeper semantic scan using your local AI agent before asking you to confirm.
Skip all prompts with --yes --global for clean CI-style installs:
skilltap install user/commit-helper --global --yesYou can skip the scope prompt with --global or --project:
skilltap install user/commit-helper --globalAgent symlinks
During install, skilltap asks which agents the skill should be visible to. Your selection creates symlinks into agent-specific directories (e.g. ~/.claude/skills/). You can save your choice as the default for future installs.
The prompt is skipped automatically once you've saved a default (via skilltap config or "Save as default?" during a previous install). You can also skip it explicitly:
skilltap install user/commit-helper --global --also claude-codeThis creates:
~/.agents/skills/commit-helper/(the actual files)~/.claude/skills/commit-helper/(symlink)
Supported agents: claude-code, cursor, codex, gemini, windsurf.
Add a tap
A tap is a curated index of skills -- a git repo containing a tap.json that lists skill names, descriptions, and URLs. Adding a tap lets you install skills by name instead of URL.
skilltap tap add skilltap https://github.com/nklisch/skilltap-skillsCloning tap...
✓ Added tap 'skilltap' (2 skills)You can add as many taps as you want -- your own, a friend's, a team's.
Search and install from a tap
Search for skills:
skilltap findThis opens an interactive search — type a query, browse results, and press Enter to install. You can also search directly:
skilltap find reviewInstall by name:
skilltap install skilltap --globalskilltap resolves the name from your configured taps, finds the repo URL, and runs the normal clone-scan-install flow.
You can also pin a version:
skilltap install skilltap@v1.0.0 --globalView installed skills
skilltap skillsGlobal (.agents/skills/) — 1 skill
Name Status Agents Source
skilltap managed claude-code https://github.com/nklisch/skilltap-skillsThis shows all skills across all locations — managed, linked, and unmanaged. Filter by scope or status:
skilltap skills --global # only global skills
skilltap skills --project # only project-scoped skills
skilltap skills --unmanaged # only unmanaged skills (not tracked by skilltap)Adopt existing skills
If you've placed skills manually — copied them from a colleague, cloned them yourself, or inherited them from a project — they show up as unmanaged in skilltap skills:
skilltap skills --unmanagedGlobal (.agents/skills/) — 1 unmanaged skill
Name Status Agents Source
commit-helper unmanaged — ~/.agents/skills/commit-helper/Unmanaged skills aren't source-tracked: skilltap can't update them, re-scan them, or tell where they came from. Use skills adopt to bring them under management:
skilltap skills adoptskilltap shows an interactive picker of all unmanaged skills. Select which ones to adopt, then choose how to handle them:
- Move to
~/.agents/skills/(default) — relocates files and records them with full source tracking - Track in place (
--track-in-place) — records the skill at its current location without moving it
# Adopt all unmanaged skills non-interactively
skilltap skills adopt --yes
# Track a skill at its current path without moving it
skilltap skills adopt my-skill --track-in-placeOnce adopted, skills appear as managed in skilltap skills and are eligible for updates and security scans.
Move between scopes
Move a skill from project scope to global (or vice versa):
skilltap skills move commit-helper --globalThis relocates the files, updates installed.json in both scopes, and refreshes any agent symlinks.
Update skills
Update all installed skills:
skilltap update◆ Checking commit-helper...
│ abc123 → def456 (2 files changed)
M SKILL.md (+5 -2)
A scripts/helper.sh (+18)
◇ Apply update to commit-helper?
│ › Yes
✓ Updated commit-helper
◆ Checking code-review...
│ Already up to date.
Updated: 1 Skipped: 0 Up to date: 1Updates fetch the latest changes, show you a diff summary, scan the changed files for security issues, and ask before applying.
Update a specific skill:
skilltap update commit-helperConfigure defaults
Run the interactive setup wizard:
skilltap configThis walks you through:
- Default install scope (global, project, or ask each time)
- Which agents to auto-symlink to on every install
Your settings are saved to ~/.config/skilltap/config.toml. See the Configuration guide for the full reference.
Configure security
skilltap scans every skill for suspicious content before installing. You can fine-tune security with the dedicated wizard:
skilltap config securityThis lets you choose a preset (none, relaxed, standard, strict) or configure scan mode, warning behavior, and required scans individually -- with independent settings for human and agent modes. You can also set up per-tap trust overrides for internal taps you trust completely.
For non-interactive use (CI, scripting):
skilltap config security --preset strict
skilltap config security --mode agent --preset none
skilltap config security --trust tap:my-company=noneSee the Security guide for full details.
Next steps
- Installing Skills -- all source formats, flags, scopes, and multi-skill repos
- Creating Skills -- write and publish your own skills
- Taps -- create and manage skill indexes
- Security -- how scanning works and how to configure it
- Configuration -- full config file reference
- CLI Reference -- every command, flag, and option