Install any skill in seconds. Free to start, no credit card required.
Get Started Free →This skill should be used when writing tests, validating features, or needing to verify code works. Triggers on "write tests", "add test coverage", "validate feature", "integration test", "end-to-end", "e2e test", "mock", "unit test". Enforces scenario-driven testing with real dependencies in .scratch/ directory.
.claude/skills/aiskillstore-scenario-testing/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | 39% | 0% |
| case-02 | ✗→✓ | ▲ Improved | -31% | 0% |
| case-03 | ✗→✓ | ▲ Improved | 8% | 0% |
| case-04 | ✗→✓ | ▲ Improved | -11% | 0% |
| case-05 | ✗→✓ | ▲ Improved | -31% | 0% |
The Iron Law: "NO FEATURE IS VALIDATED UNTIL A SCENARIO PASSES WITH REAL DEPENDENCIES"
Mocks create false confidence. Only scenarios exercising real systems validate that code works.
As stated in the principle: "A test that uses mocks is not testing your system. It's testing your assumptions about how dependencies behave."
.scratch/.gitignore (never commit)scenarios.jsonlExternal APIs must hit actual services (sandbox/test mode acceptable). Mocking any dependency invalidates the scenario.
Each scenario must run standalone without depending on prior executions. This enables:
A scenario is invalid if it:
Reject these rationalizations:
A feature is complete only when:
.scratch/ passes with zero mocks.scratch/ remains in .gitignorescenarios.jsonl.scratch/test-user-registration.pyscenarios.jsonlOnly scenario tests prove your feature delivers value to users.
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-22 | fail→fail | 13,265 | 10,204 | -23% | 1 | 1 | 0% | 2,058 | 2,218 | +8% | 0 | 0 | — |
case-01 | fail→pass | 11,056 | 10,753 | -3% | 1 | 1 | 0% | 2,018 | 2,805 | +39% | 0 | 0 | — |
case-02 | fail→pass | 33,101 | 9,987 | -70% | 1 | 1 | 0% | 3,734 | 2,575 | -31% | 0 | 0 | — |
case-03 | fail→pass | 14,812 | 12,116 | -18% | 1 | 1 | 0% | 2,706 | 2,917 | +8% | 0 | 0 | — |
case-04 | fail→pass | 9,391 | 3,919 | -58% | 1 | 1 | 0% | 1,531 | 1,360 | -11% | 0 | 0 | — |
case-05 | fail→pass | 9,672 | 3,097 | -68% | 1 | 1 | 0% | 1,690 | 1,171 | -31% | 0 | 0 | — |
case-06 | fail→pass | 11,760 | 4,036 | -66% | 1 | 1 | 0% | 2,066 | 1,292 | -37% | 0 | 0 | — |
case-07 | fail→pass | 12,231 | 5,295 | -57% | 1 | 1 | 0% | 1,863 | 1,516 | -19% | 0 | 0 | — |
case-08 | pass→pass | 10,154 | 3,472 | -66% | 1 | 1 | 0% | 1,512 | 1,226 | -19% | 0 | 0 | — |
case-09 | fail→pass | 13,480 | 5,948 | -56% | 1 | 1 | 0% | 2,086 | 1,613 | -23% | 0 | 0 | — |
case-10 | pass→pass | 14,298 | 5,142 | -64% | 1 | 1 | 0% | 2,139 | 1,518 | -29% | 0 | 0 | — |
case-11 | fail→pass | 9,315 | 5,385 | -42% | 1 | 1 | 0% | 1,408 | 1,268 | -10% | 0 | 0 | — |
case-12 | pass→pass | 7,685 | 2,869 | -63% | 1 | 1 | 0% | 1,274 | 1,167 | -8% | 0 | 0 | — |
case-13 | pass→pass | 12,122 | 7,740 | -36% | 1 | 1 | 0% | 1,965 | 1,730 | -12% | 0 | 0 | — |
case-14 | pass→pass | 10,498 | 2,527 | -76% | 1 | 1 | 0% | 1,617 | 1,067 | -34% | 0 | 0 | — |
case-15 | pass→pass | 12,053 | 5,188 | -57% | 1 | 1 | 0% | 1,806 | 1,496 | -17% | 0 | 0 | — |
case-16 | fail→pass | 11,597 | 5,173 | -55% | 1 | 1 | 0% | 1,773 | 1,286 | -27% | 0 | 0 | — |
case-17 | pass→pass | 9,705 | 3,084 | -68% | 1 | 1 | 0% | 1,416 | 1,180 | -17% | 0 | 0 | — |
case-18 | fail→pass | 15,250 | 4,524 | -70% | 1 | 1 | 0% | 1,327 | 1,384 | +4% | 0 | 0 | — |
case-19 | fail→pass | 12,809 | 7,092 | -45% | 1 | 1 | 0% | 1,902 | 1,794 | -6% | 0 | 0 | — |
case-20 | pass→pass | 11,944 | 4,752 | -60% | 1 | 1 | 0% | 1,349 | 1,474 | +9% | 0 | 0 | — |
case-21 | fail→pass | 13,500 | 8,343 | -38% | 1 | 1 | 0% | 2,274 | 1,958 | -14% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 22 cases were attempted. The headline lift of +59 percentage points is the difference between those two pass rates over the 22 comparable cases.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.