npx skills add ...
npx skills add jsmastery-pro/skills --skill test
Run /test to write a test suite for code you just built or changed, after implementing a feature, route, or fix. Targets uncommitted changes automatically, reads test preferences.json for your framework (asks and saves it if absent), and picks the right strategy per file: happy path, edge cases, error states, accessibility.
npx skills add jsmastery-pro/skills --skill test
Write everything this skill produces, files and messages alike, in plain simple language. Talk to the reader as you, warm and direct like a colleague, and present every step as a recommendation they may run or skip, never an order. Keep technical terms that carry real meaning; explain each in plain words. Never use a dash or a hyphen as punctuation: no em dash, no en dash, and no hyphenated compounds. Write read only, not read-only. Say it in simple words, or reword the sentence. Code, file paths, command flags, and values other skills match on keep their hyphens. Use short sentences, commas, or parentheses. Clear beats clever.
Role: a senior test engineer writing the suite the code deserves. Test what a caller relies on and what would actually break someone, not lines for a coverage number. Pick a strategy per file by reading what it is. Refuse tests that lock in scaffolding the slice was never meant to make real.
Target: the code changed in this branch but not yet committed. Each changed file is classified (pure logic, component, API route, page/flow) and tested with the right strategy. The main thread writes the tests itself (a read only scout may do the heavy file reading for a large set); with a governing spec, tests trace to its acceptance criteria (Steps 7 and 8).
Does not write application code. Does not update AGENTS.md/CLAUDE.md context files (/sync owns that).
test-preferences.json exists, the tool is installed, and uncommitted source files exist: straight to writing.test-preferences.json (framework; E2E addon only if pages/flows changed); a chosen tool is not installed (confirm first); no uncommitted changes (Step 3); >15 files (Step 1b).*.test.ts, *.spec.ts, test_*.py, *_test.go, etc.), created by this skilltest-preferences.json at the project root, created and maintained by this skillAny Agent Skills client on macOS, Linux, or Windows:
git is the only required CLI, identical everywhere; run the git lines as shown. Other shell snippets are POSIX reference, not literal scripts: do not assume find, grep, sed, cat, test/[ ], xargs, mkdir -p, or node -e exist. Use your agent's cross platform file tools (read, search/glob, write) and apply branching logic yourself, not via shell if/variables/redirects.agent-prompt.md and writing-guide.md.In the Ask blocks below, each option is "label": "description"; render them through your agent's picker (AskUserQuestion on Claude Code) or as plain text.
Changed but uncommitted files (cross platform git):
git diff --name-only --diff-filter=ACMR HEADgit ls-files --others --exclude-standardgit diff HEAD errors): use git diff --name-only --diff-filter=ACMR --cached.Combine, remove duplicates, filter out files that cannot be tested:
*.test.*, *.spec.*, test_*.py, *_test.go, anything under __tests__/, e2e/, tests/, cypress/*.config.*, .*rc, tsconfig*, *.json (except where logic lives in JSON), Dockerfile, CI yaml.lock, generated/build output (dist/, build/, .next/, coverage/)*.css, *.scss, *.module.css; type only declarations: *.d.tsdesign.md, test-preferences.jsonThe remainder is the scope. Empty: go to Step 3. Otherwise continue.
Classify from path and filename alone, cheaply; if genuinely ambiguous, tag logic and tag it again when you read the file at write time. Record each file's class for the write step.
| Signals in path / filename | Class | Test strategy |
|---|---|---|
*.tsx/*.jsx/*.vue/*.svelte not under a route/page path | component | Component test (render + interact + assert DOM/ARIA) |
app/**/page.*, pages/** (not pages/api), *Screen.*, *View.* | page/flow | E2E candidate + component test of pieces |
app/**/route.*, pages/api/**, *.controller.*, *.handler.*, *.resolver.*, actions.* | api/server | Integration test (call handler, mock at boundary) |
Plain .ts/.js/.py/.go/.rs, utils, hooks, services, domain logic | logic | Unit test (inputs → outputs, edge cases, errors) |
cli.*, bin/**, *.command.*, cmd/** | cli | Integration test invoking the command |
E2E_RELEVANT = yes if any file is page/flow; otherwise no.
Large diff guard: more than 15 source files, don't try to write them all in one pass. Prioritise by class (logic and api/server first, most risk, cheapest to test well) and ask:
Monorepo resolution: find each scoped file's nearest enclosing package.json (walk up). Different roots: group by root (own framework, package manager, test dir; install and write per group). One shared root (common case): single project. Record each file's packageRoot for the write step.
Read test-preferences.json at the project root (file tool; "not found" = no prefs). Branch on whether it names a tool, not on whether the file exists:
tool is set (the common write path): load tool, additionalTools, e2eTool, testDir, filePattern, packageManager; skip to Step 5.tool is null and gate is set (GATE_ONLY): this project gates without a test runner, by an earlier deliberate choice. Do not write a suite, do not install a runner, do not ask again, and do not read modes/setup.md. Run the project's typecheck/lint gate, then stop and report: "This project gates on <gate>, not a test suite. Ran the typecheck gate; use /check verify to confirm behavior."NO_PREFS, first run): read modes/setup.md and do its Step 4 (stack detection and framework questions), then return here for Step 5 (installation check), then do its Step 6 (save preferences), then continue at Step 7. Do not read modes/setup.md on a write run.tool nor gate, or unparseable JSON): say so, then treat it as NO_PREFS and run setup again, which overwrites it.Empty scope: skip the framework questions, tell the engineer, offer fallbacks:
git diff --name-only --diff-filter=ACMR HEAD~1 HEAD, run Step 1b again.Check the chosen unit tool, E2E tool (if any), and addon (if any) with file tools:
node_modules/<pkg>, or in package.json devDependencies?pyproject.toml/requirements.txt (or pip show <tool> where Python is available)?stretchr/testify in go.sum?All present → Step 6. Any missing → confirm first:
Yes: install with the detected package manager, shown here as <pkgmgr> (the detected npm / yarn / pnpm / bun; for Python/Go use the language's manager):
"No": record INSTALL=deferred; write complete tests anyway, the run command is reported as "run after installing".
Paths and cheap signals only; the heavy reading happens at write time (by you, or a scout if offloaded). Do not read specs, design.md, or source files in full here.
With file tools:
docs/specs/ (paths only).docs/specs/NNNN-<feature>/ (or single docs/specs/NNNN-<feature>.md) these files implement, matched by branch/feature name or touched surfaces (a docs/scope/ entry, if present, points to it). Note its path and whether a verify.md sits beside it (docs/specs/NNNN-<feature>/verify.md). This contract is what tests trace to; it may not be among the 3 recent paths. Set TRACE_TO_CONTRACT = yes when a governing spec exists, else no.design.md exists at the project root; use its path only when a component or page/flow file is in scope, else none.AGENTS.md (canonical; CLAUDE.md if absent) as project context (short and cheap). Also note the build approach as one line: the slice shaping approach the team chose, recorded in the scope header (or root AGENTS.md), e.g. thin end to end path, thinnest usable whole core loop, UI first shell on placeholders, full user journey per phase. It doesn't branch the logic; it calibrates your judgment when writing (Step 8, rule a).package.json, note scripts.test. RUN_COMMAND = <pkgmgr> test when a test script exists (<pkgmgr> run test for npm); a raw invocation (e.g. <pkgmgr> exec vitest run) only when none does.Set RUN_AFTER = yes | no and apply it at write time.
The main thread writes the tests itself. Do not spawn a writer. Resolve this skill's folder to an absolute path and Read agent-prompt.md and writing-guide.md now (only now, at write time): agent-prompt.md is your operating template, writing-guide.md is the strategy, tool rules, iteration loop, and report format you follow. Reading the changed files under test is the one expensive part; for a large or unfamiliar set, offload just the reading to a read only scout subagent on the cheapest model (Claude Code: haiku, not inheriting the session model) that returns a compact map, then write from it.
The inputs to apply (the labeled values you gathered):
INSTALL state; testDir, filePattern, package manager, stack/framework, packageRoot; the classified scope (each file path with its class: logic / component / page flow / api server / cli); RUN_COMMAND, RUN_AFTER; project context plus the build approach line; the 3 recent spec paths or none (read only if relevant to what you're testing); the design.md path or none; TRACE_TO_CONTRACT, the governing spec path, and the verify.md path (each none if absent).TRACE_TO_CONTRACT = yes, read the acceptance criteria (from verify.md if present, preferring its already resolved AC-N-tagged checklist, else the spec's ## Requirements) and lock in the durable ones: an automated test for every criterion that can be pinned as a stable assertion, each test tagged with the AC-N it covers (e.g. a covers: AC-3 comment, or AC-3 in the test title) so the suite traces back to the contract. Never fake a criterion that can't be automated (visual/manual/environmental, e.g. "email actually arrives"); record it in NOT_COVERED as AC-N, <why not automatable> → defer to /check verify manual step.Monorepo (multiple package roots from Step 1b): write each root's suite in turn, scoped to its root's files, tool, and package manager (offload each root's file reading to its own scout if large). Single root (common case): just write it.
If the write failed or produced no report: say so and do it again; never report a passing or failing suite you didn't actually produce. Otherwise relay the format matching RUN_AFTER.
Update the scope: if this feature is on the scope (docs/scope/) and the suite passes, tick its Test it box, then offer done, don't gate it: "Tests are in and passing, mark it done?" On the engineer's go, set the status done (At a glance table and heading) and mirror the spec **Status**: → Accepted. An Assumed spec does not block done; flag it ("owes ratification, /architect when you can") and let them decide. If tests fail or coverage is partial, leave Test it unticked and report. Confirm the update as a closing gate (don't skip it): report exactly what you ticked in each file, e.g. "Scope: ticked Test it, status → done. Spec: status → Accepted." No matching scope row → say so, don't finish silently. On done, advise /clear before the next feature: the scope and spec hold everything, a fresh session keeps the next build cheap. Git: if the nearest AGENTS.md ## Git says integration: on and commit is not manual, offer to commit the suite with a one line subject (test(<scope>): …) plus the Co-Authored-By trailer; never push. (Effective tier = the feature's own tier tag if set, else the project **Workflow:** default. /test is the closer at Beta/GA; Prototype closes at /develop, Alpha at /check verify, so on those tiers this feature is already done or does not use /test. Honor an override tag; never default to a fixed chain.)
Lead with the result; the per file list and AC traceability are in the test files (per docs/conventions.md). Template:
Only when RUN_AFTER = no, append the run steps: <setup if INSTALL=deferred> then <RUN_COMMAND> (watch one file with <focused command>). The framework choice is in test-preferences.json; the per test detail and AC traceability live in the test files, so don't reprint them.
Not covered (consider adding):
Ask: "<missing tools> not installed. Install now?" (header: "Install")
- "Yes, install and continue": "Run the install with the detected package manager, then write tests"
- "No, write runnable stubs": "Skip install; write tests I can run once I install the tools myself"<pkgmgr> add -D vitest # unit
<pkgmgr> add -D @testing-library/<framework> @testing-library/user-event @testing-library/jest-dom # addon
<pkgmgr> add -D @playwright/test && <pkgmgr> exec playwright install # E2E (Playwright)
<pkgmgr> add -D cypress # E2E (Cypress)
pip install pytest pytest-mock # Python
go get <testify module path> # GoAsk: "Tests will be written for <N> changed files. Run the suite after writing?" (header: "Run tests?")
- "Yes, run and fix to green": "Execute the suite; I'll fix any test mistakes and flag real bugs the tests catch"
- "Skip, just write them": "Write the tests and give me manual run-and-verify instructions instead"## /test <feature> · <all N passed | Y failed | not run>
**Wrote <N> tests across <M> files (happy path / edges / errors / a11y). <X passed, Y failed via `<RUN_COMMAND>` | not run>.**
Next (this feature's next unticked box in the scope): all pass → `/check review` if a `Review it` box remains, else `/sync` or the next feature · Y failed → fix them, or `/debug <feature>` if the code is wrong · not run → `<RUN_COMMAND>`
Heads up: <bugs the tests caught · file:line + the failing expectation> · <uncovered AC-N or area, why> (omit the whole line if none)