Agent skill
The msw-cli agent skill lives in this repository under skills/msw-cli/. It teaches Cursor (and other supported agents) how to run msw-cli sessions, quoting rules, and troubleshooting.
Install it with the open Agent Skills CLI (npx skills …). The first argument is a GitHub repo in owner/repo form, not the skill folder name by itself.
Install
Section titled “Install”From your machine (any directory; use -g if you want a user-wide install — see the CLI --help):
-
List skills available in this repo (optional):
Terminal window npx skills add JasonBoy/msw-mcp --list -
Install only the
msw-cliskill (recommended):Terminal window npx skills add JasonBoy/msw-mcp --skill msw-cliIf you use a fork, replace
JasonBoy/msw-mcpwithyour-username/your-fork. -
Follow the prompts in the terminal to pick install scope (project vs global) and symlink vs copy. After that, Cursor discovers the skill from its skills directory.
One-line reference
Section titled “One-line reference”npx skills add <owner>/<repo> --skill msw-cliHere <owner>/<repo> is the GitHub shorthand for this repository (for example JasonBoy/msw-mcp). The skill name msw-cli matches the folder under skills/ and the name field in skills/msw-cli/SKILL.md.
Alternative: direct URL to the skill path
Section titled “Alternative: direct URL to the skill path”You can also point at the skill directory on the default branch:
npx skills add https://github.com/JasonBoy/msw-mcp/tree/main/skills/msw-cli(Adjust branch name if yours is not main.)
Related skill
Section titled “Related skill”This repo also ships msw-setup under skills/msw-setup/ for scaffolding MSW + @msw-mcp/client. Install it with:
npx skills add JasonBoy/msw-mcp --skill msw-setupMore help
Section titled “More help”- Full CLI options (
--list,-g,-a,-y, …): vercel-labs/skills - How skills work in Cursor: Agent Skills (Cursor documentation)