Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Validates a plan before committing to it - checks whether the ranking survives the assumptions, finds the most likely way it fails, and makes the trade-offs explicit via a Pareto frontier instead of an invented single score. Use before a launch, price change, migration, infrastructure change or major commitment, when running a premortem, when two objectives conflict, or when a decision depends on an assumption nobody has tested.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | -1% | 0% |
| case-02 | ✗→✓ | ▲ Improved | 36% | 0% |
| case-03 | ✗→✓ | ▲ Improved | 58% | 0% |
| case-04 | ✗→✓ | ▲ Improved | 17% | 0% |
| case-06 | ✗→✓ | ▲ Improved | 51% | 0% |
A plan is optimized against a model of the world. The model is wrong. Validation asks three questions, in this order:
The governing principle: plan with a simple model, evaluate with a rich one. A simple planning model resists overfitting to assumptions you cannot verify. The evaluation model can be as elaborate as you can justify, because nothing is being fitted to it.
- [ ] 1. List the assumptions the plan depends on
- [ ] 2. Score each option under each plausible variant
- [ ] 3. Check whether the ranking survives
- [ ] 4. Find the most likely failure and read it back
- [ ] 5. Make the trade-off explicit
- [ ] 6. Pick a response from the fixed menuNot risks. Assumptions: quantities the plan's ranking depends on and which you have not measured. Churn stays flat. The infra bill scales linearly. Conversion holds at the new price. No rival ships a free tier.
Keep the ones where a plausible alternative value is materially different. Three to five is the working range; more and the matrix becomes unreadable.
Build a matrix of option by scenario and run:
bashnode scripts/calc.js robust plan.json
Input shape: examples/robust.json. It reports three winners:
If all three agree, the decision is robust. Ship it and stop analysing. That is the common outcome and it is worth reaching quickly.
If they disagree, the disagreement is the decision, and it is a question about appetite rather than about arithmetic. Say out loud how much downside you are buying insurance against, decide, and record the reason. Do not let the disagreement stay hidden behind whichever number someone quoted.
Minimax regret is usually the most useful of the three in a commercial setting: maximin optimises against a scenario that may be very unlikely, which produces excessively timid plans.
Not the worst imaginable failure - the most probable one. An adversary that minimises your return while maximising the likelihood of the trajectory it takes to get there.
In practice, run a premortem with that constraint:
> It is six months from now and this failed. Describe how, using only steps that were > each individually likely at the time.
The constraint is what makes it useful. It rules out "an asteroid hit the datacentre" and surfaces the chain of individually-reasonable steps that ends badly, which is how things actually fail. Score each step's plausibility and multiply; a trajectory whose steps were each 70% likely is a 17% failure path over five steps, not a tail risk.
Then read it back and ask whether it merits concern. If the trajectory is genuinely implausible, you have gained confidence. If it is not, go to step 6.
When two objectives conflict - revenue against organic reach, safety against conversion, margin against growth - do not invent an exchange rate under time pressure. Enumerate the configurations, drop the dominated ones, and argue only about the survivors.
bashnode scripts/calc.js pareto options.json
Input shape: examples/pareto.json. Everything on the frontier is best at something, and no analysis can pick between them; that choice is a values judgement and belongs to whoever owns the values. Everything dominated is strictly worse than an available alternative and can be dropped without argument.
This is the correct answer to "the paywall cost us free traffic". It did. That is a point on the frontier, not a bug, and the question is whether it is the right point.
When a failure trajectory does merit concern, there are exactly five responses. Naming them prevents the meeting from inventing a sixth that is really "hope":
tranche, a kill switch, a staged rollout.
wrong. Re-score and re-run.
rate limit, the quota, the circuit breaker.
it, at a cost in time.
trajectory should not ship because the quarter is ending.
markdown## Assumptions the ranking depends on <3-5 quantities we have not measured, each with a plausible alternative value> ## Scenario matrix Unit: <the single quantity every cell is measured in> | Option | base (w=) | adverse (w=) | favourable (w=) | |---|---|---|---| ## Does the ranking survive <paste calc robust> best expected / best worst case / least regret: <do they agree?> <if they disagree, state how much downside is being insured against, and decide> ## Most likely failure <numbered chain, each step with its plausibility, joint probability at the end> Cheapest link to break: <step, and the fix> ## Trade-off <paste calc pareto: frontier and dominated options> The choice among the frontier is a values judgement owned by <who>. ## Response <one of: change the action space / change the objective / change the dynamics / improve the analysis / do not deploy - with the concrete change>
scenario is fine. The ranking flipping is the finding.
maximin toward paralysis. Weight them and use the weights.
on your stress tests, they stop being tests. Keep the planning model simple and separate.
asks the frontier to pick, they are asking to be relieved of a values decision.
people list asteroid strikes. Constrained to likely steps, they list the thing that actually happens.
clean test run is weak evidence that it is fixed. See the valuing-information skill's sizing reference for how many observations that actually takes.
references/premortem.md - running the most-likely-failure analysis, with the scoring rubricreferences/robustness.md - building the scenario matrix, choosing weights, reading disagreement between criteriaOther measured skills in the registry, with their headline benchmark lift.