Update Experiment
update_experimentRecord an experiment's current stage (hypothesis, build, measure, or learn), its verdict (validated or invalidated), and the next decision (pivot or persevere).
Instructions
Update a PM experiment — advance its state and record the outcome — and return it. state ∈ hypothesis|build|measure|learn; verdict ∈ validated|invalidated; decision ∈ pivot|persevere. Resolve the id via list_experiments; only id is required.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Experiment id, from list_experiments (required). | |
| state | No | Build-Measure-Learn stage (optional). | |
| title | No | New title (optional). | |
| metric | No | New metric; null clears it (optional). | |
| result | No | Free-text result / what you learned; null clears it (optional). | |
| target | No | New target; null clears it (optional). | |
| verdict | No | Outcome (optional). | |
| decision | No | What you'll do next (optional). | |
| hypothesis | No | New hypothesis; null clears it (optional). |