install-skills
Original:🇺🇸 English
Translated
Install, discover, remove, and update agent skills using the npx skills CLI. Use when asked to install a skill, add a skill from a repo, find or search for skills, list installed skills, remove or uninstall a skill, update skills, or check for updates. Triggers on: "install X skill", "add the Y skill", "find skills for Z", "what skills are available", "remove skill", "update my skills", "check for skill updates", "search for a skill that does X".
11installs
Sourcerarestg/rarestg-skills
Added on
NPX Install
npx skill4agent add rarestg/rarestg-skills install-skillsTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Install Skills
Manage skills using the CLI. All commands use (skip npx install prompt) and (target OpenClaw, skip confirmation).
npx skillsnpx --yes-a openclaw -yInstall scope: project vs global
- Project (default): installs to workspace. Skills work but are not tracked for /
check.update - Global (): installs to
--globaland creates a lock file. Enables~/.agents/skills//check.update
Use for skills that should be kept up to date. Use project scope for experiments.
--globalList skills in a repo
Always list before installing an unfamiliar repo:
bash
npx --yes skills add owner/repo --list -a openclaw -yInstall a skill
bash
# Project scope (no update tracking)
npx --yes skills add owner/repo --skill <skill-name> -a openclaw -y
# Global scope (enables check/update)
npx --yes skills add owner/repo --skill <skill-name> -a openclaw -y --globalInstall one skill at a time unless explicitly asked to install multiple.
Source formats
bash
# GitHub shorthand (preferred)
npx --yes skills add owner/repo --skill <name> -a openclaw -y
# Full GitHub URL
npx --yes skills add https://github.com/owner/repo --skill <name> -a openclaw -y
# Direct path to a specific skill in a repo
npx --yes skills add https://github.com/owner/repo/tree/main/skills/my-skill -a openclaw -y
# Local path
npx --yes skills add ./my-local-skills --skill <name> -a openclaw -yInstall all skills from a repo
bash
npx --yes skills add owner/repo --skill '*' -a openclaw -yVerify installed skills
bash
npx --yes skills list -a openclaw
npx --yes skills list -a openclaw --globalFind skills
Search the skills directory by keyword:
bash
npx --yes skills find <query>Remove a skill
bash
npx --yes skills remove <skill-name> -a openclaw -y
npx --yes skills remove <skill-name> -a openclaw -y --globalCheck for updates and update
Requires skills to have been installed with :
--globalbash
npx --yes skills check
npx --yes skills updateDefaults
- Prefer GitHub shorthand over full URLs.
owner/repo - before installing an unfamiliar repo.
--list - One skill at a time unless asked otherwise.
- Always for deterministic, non-interactive installs.
-a openclaw -y - Use when the user wants skills kept up to date.
--global