skills/install-skills/SKILL.md
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".
npx skillsauth add rarestg/rarestg-skills install-skillsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Manage skills using the npx skills CLI. All commands use npx --yes (skip npx install prompt) and -a openclaw -y (target OpenClaw, skip confirmation).
check/update.--global): installs to ~/.agents/skills/ and creates a lock file. Enables check/update.Use --global for skills that should be kept up to date. Use project scope for experiments.
Always list before installing an unfamiliar repo:
npx --yes skills add owner/repo --list -a openclaw -y
# 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 --global
Install one skill at a time unless explicitly asked to install multiple.
# 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 -y
npx --yes skills add owner/repo --skill '*' -a openclaw -y
npx --yes skills list -a openclaw
npx --yes skills list -a openclaw --global
Search the skills directory by keyword:
npx --yes skills find <query>
npx --yes skills remove <skill-name> -a openclaw -y
npx --yes skills remove <skill-name> -a openclaw -y --global
Requires skills to have been installed with --global:
npx --yes skills check
npx --yes skills update
owner/repo over full URLs.--list before installing an unfamiliar repo.-a openclaw -y for deterministic, non-interactive installs.--global when the user wants skills kept up to date.tools
Break large code changes into small, stacked pull requests using vanilla git and the gh CLI. Auto-trigger when implementing a feature or change that spans multiple logical steps, touches several files, or will exceed ~200 changed lines. Also trigger on "stack PRs", "break this into smaller PRs", "stacked diffs", or "create a PR stack". Do NOT trigger for single-file fixes, small bug fixes, or changes under ~200 lines that are a single logical unit.
development
Export a PR's clean inline review comments, CodeRabbit outside-diff comments, and CodeRabbit nitpicks into local files, then triage review feedback through a stack-aware orchestrator workflow with durable reply drafts for follow-up PRs. Use when given a GitHub pull request URL and asked to work through review comments without relying on noisy raw API blobs.
development
Run reusable Graphify-led architecture analysis for codebases using semantic graphs, optional subagent extraction, graph synthesis, source-search validation, graph-shape review, and follow-up refactor planning. Use when asked to analyze repo architecture, god nodes, surprising edges, topology, module boundaries, or graph-derived cleanup/refactor opportunities.
testing
Run a meaningful coding ticket through a delegated delivery workflow: tighten the ticket, assign one ticket owner, delegate implementation, get an independent review, scan for high-value simplification, validate the result, and return a compact outcome packet. Use when the user wants structured agent execution with clear scope, ownership, and review rather than a single-pass implementation. Triggers on: "delegate this ticket", "use a sub-PM", "run this through worker and reviewer", "own this ticket end to end", "send this for independent review", or "close this ticket out with review". Skip trivial fixes and tasks that are still too vague to delegate.