Use the Softprobe agent skill
Install the Softprobe Test Writer skill in Claude Code or Cursor so your coding agent knows the official Softprobe replay workflow and can look up the right documentation while writing tests.
The skill is published from the Softprobe GCS bucket with the rest of the public artifacts:
bash
SKILL_VERSION="$(curl -fsSL https://storage.googleapis.com/softprobe-published-files/agent/skills/softprobe-test-writer/version)"
curl -fsSLO "https://storage.googleapis.com/softprobe-published-files/agent/skills/${SKILL_VERSION}/softprobe-test-writer.zip"Claude Code
Install for your user account:
bash
mkdir -p ~/.claude/skills
unzip -o softprobe-test-writer.zip -d ~/.claude/skillsOr install for one project:
bash
mkdir -p .claude/skills
unzip -o softprobe-test-writer.zip -d .claude/skillsUse it directly:
text
/softprobe-test-writer help me add a replay test for cases/checkout.case.jsonCursor
Install for one project:
bash
mkdir -p .cursor/skills
unzip -o softprobe-test-writer.zip -d .cursor/skillsThen ask Cursor Agent to use the Softprobe Test Writer skill when adding or debugging replay tests.
What The Skill Contains
The archive expands to:
text
softprobe-test-writer/
SKILL.md
references/
docs-map.mdSKILL.md contains the workflow rules. references/docs-map.md maps common tasks to the official pages on docs.softprobe.dev, so the agent can load the right documentation instead of guessing CLI flags or SDK APIs.
Next
- Generate a Jest session for the default Jest replay flow.
- Replay in pytest for Python tests.
- Troubleshooting when mocks are not hit.