Skip to content

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.


From your machine (any directory; use -g if you want a user-wide install — see the CLI --help):

  1. List skills available in this repo (optional):

    Terminal window
    npx skills add JasonBoy/msw-mcp --list
  2. Install only the msw-cli skill (recommended):

    Terminal window
    npx skills add JasonBoy/msw-mcp --skill msw-cli

    If you use a fork, replace JasonBoy/msw-mcp with your-username/your-fork.

  3. 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.

Terminal window
npx skills add <owner>/<repo> --skill msw-cli

Here <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.

You can also point at the skill directory on the default branch:

Terminal window
npx skills add https://github.com/JasonBoy/msw-mcp/tree/main/skills/msw-cli

(Adjust branch name if yours is not main.)


This repo also ships msw-setup under skills/msw-setup/ for scaffolding MSW + @msw-mcp/client. Install it with:

Terminal window
npx skills add JasonBoy/msw-mcp --skill msw-setup