Vp skills
Reusable Agent Skills by VdustR
npx -y skills add VdustR/skills --skill vp-skillsAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Manage agent skills with the npx skills CLI. Use when the user asks to install, add, update, upgrade, remove, list, find, search, inspect, repair, or reinstall skills; mentions npx skills, skills.sh, agent-skills, vercel skills, or skill installation; or needs to choose agents, scopes, or skill sources. Boundary: not for authoring or editing skill content.
SKILL.md
3.2 KB, as published. Nobody here has run it
Agent Skills Management
Use the pinned known-good CLI version unless the user explicitly asks to check latest behavior:
npx -y [email protected] <command>
Defaults
- Prefer global installs for personal tooling:
-g. - Install to all supported agents by default:
--agent '*'. - Use
--allonly when installing all skills from a source to all agents. - Quote
'*'so the shell does not expand it. - Use
-yonly after the target source, skills, scope, and agents are known. - Treat
update,upgrade, andcheckas write-capable. In[email protected],checkruns the same update flow and can install updates.
Decision Flow
- Identify operation: install, update, remove, list, find, or repair.
- Identify scope: global by default; project-local only when requested or when
restoring project skills from
skills-lock.json. - Identify agents: all supported agents by default; narrow only when requested.
- Preview when useful:
add <source> --list,list --json, orfind <query>. - Execute with pinned CLI and explicit flags.
- Verify with
list -g --jsonor a targeted follow-up command.
Common Commands
# Preview skills in a source.
npx -y [email protected] add VdustR/skills --list
# Install one skill globally to all supported agents.
npx -y [email protected] add VdustR/skills --skill vp-skills -g --agent '*' -y
# Install every skill from a source globally to every supported agent.
npx -y [email protected] add VdustR/skills -g --all
# List global installs in machine-readable form.
npx -y [email protected] list -g --json
# Show installed skills with their linked agents as a table.
scripts/skill-agent-table.mjs --filter '^vp-'
# Search skills.sh by keyword.
npx -y [email protected] find typescript
# Update global installed skills.
npx -y [email protected] update -g
# Update one known global skill.
npx -y [email protected] update vp-skills -g
# Remove selected skills globally from all supported agents.
npx -y [email protected] remove agent-browser portless -g --agent '*' -y
Repair Pattern
If update <skill> fails because the lock points to a stale upstream path, do
not edit lock files by hand. Rediscover and reinstall the skill from its source:
npx -y [email protected] add <owner/repo> --list
npx -y [email protected] add <owner/repo> --skill <skill-name> -g --agent '*' -y
npx -y [email protected] update <skill-name> -g
Use the exact source and skill name from the installed lock or from successful fresh discovery.
References
- See
references/workflows.mdfor install, update, remove, query, and repair workflows. - See
references/command-reference.mdfor command surface, options, source formats, agents, and environment variables. - See
references/troubleshooting.mdfor stale locks, failed updates, clone timeouts, internal skills, and safety notes.