agentsclimarketplace

Vp skills

Skill VdustR/skills/skills/vp-skills

Reusable Agent Skills by VdustR

Install
npx -y skills add VdustR/skills --skill vp-skills

Assembled 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 --all only when installing all skills from a source to all agents.
  • Quote '*' so the shell does not expand it.
  • Use -y only after the target source, skills, scope, and agents are known.
  • Treat update, upgrade, and check as write-capable. In [email protected], check runs the same update flow and can install updates.

Decision Flow

  1. Identify operation: install, update, remove, list, find, or repair.
  2. Identify scope: global by default; project-local only when requested or when restoring project skills from skills-lock.json.
  3. Identify agents: all supported agents by default; narrow only when requested.
  4. Preview when useful: add <source> --list, list --json, or find <query>.
  5. Execute with pinned CLI and explicit flags.
  6. Verify with list -g --json or 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.md for install, update, remove, query, and repair workflows.
  • See references/command-reference.md for command surface, options, source formats, agents, and environment variables.
  • See references/troubleshooting.md for stale locks, failed updates, clone timeouts, internal skills, and safety notes.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.