SDODS
Workshop

Workshop

One real open-source application, every SDODS feature, in one sitting.

What you'll learn

How to exercise every part of SDODS against a real application you can clone in a minute — from the first analysis to a sharded suite running in CI — with the exact commands, their real output, and a checkpoint at the end of each chapter so you always know whether it worked.

A workbench with a real application on the left and ten labelled stations along a rail, worked through by two engineersa real open-source appanalyzerunrecorddataHARvisualinsightsagentsMCPCIstart here
One application on the bench, ten stations along the rail. Each chapter is one station, and each ends with something you can check.

The application

The workshop uses cypress-io/cypress-realworld-app: a payment application with a React front end, an Express API, seeded users, a real sign-in form, and 33 existing Cypress specs. It is a good subject precisely because it was not built for SDODS — the analyzer has to work for its answers, and two of them turn out to be wrong.

Nothing in the workshop modifies the application. SDODS reads it, drives it in a browser and calls its API. You can point the same chapters at your own application by changing one path.

The project the workshop builds is committed as projects/rwa-bank, so lint, features and coverage work straight from a clone. It carries ci.enabled: false, because a run needs the application cloned and started next to the checkout — which is exactly the decision you make for any project whose environment CI cannot provide.

Set up, once

Install SDODS

Follow Installation, or work inside a clone. Every command below is written as sdods …; inside a clone, prefix it with bun run.

Clone and start the application

git clone --depth 1 https://github.com/cypress-io/cypress-realworld-app.git ../cypress-realworld-app
cd ../cypress-realworld-app
yarn install          # a few minutes: it is a full application, not a fixture
yarn dev              # front end on :3000, API on :3001

Leave it running in its own terminal. Everything else happens in a second one.

Check your environment

sdods doctor

Node 22, a browser engine and a writable database are all it needs. Anything marked optional can stay missing until the chapter that uses it.

The chapters

Each one takes ten to twenty minutes and builds on the one before it.

What the workshop covers

Every feature area of the platform appears in a chapter, so “I have finished the workshop” and “I have used the product” mean the same thing.

AreaChapter
analyze, proposals, project, env1
run, layers, tags, suites, exit codes, lint2
Page objects, locator strategy, self-healing3
API layer, schemas, hybrid scenarios4
Datasets, scenario outlines, user pool, auth capture5
record, codegen, har record / har replay6
Screenshot narratives, visual baselines, @a11y, budgets7
report, db ingest, insights, heal, trace8
agent, proposals, mcp, Claude Code and Codex9
processes, sharding, CI workflows, schedule, integrations10

How to work through it

  • Keep the application running. Every chapter drives the same instance.
  • Run the commands, do not read them. Each chapter shows the real output next to the command; if yours differs, that difference is the lesson.
  • Stop at the checkpoint. Each chapter ends with one command whose output tells you whether the chapter worked.
  • Break things on purpose. The last section of several chapters is a deliberate failure, because a suite you have never seen fail is a suite you do not trust.

Start with chapter 1 — Analyze and apply.

On this page