|
| 1 | += ECHIDNA MVP 1.0 Checklist |
| 2 | +:toc: macro |
| 3 | +:toclevels: 2 |
| 4 | + |
| 5 | +This checklist defines the minimum shippable scope for ECHIDNA 1.0. |
| 6 | + |
| 7 | +TOC::[] |
| 8 | + |
| 9 | +== Scope |
| 10 | + |
| 11 | +* All 12 core provers are wired and available via CLI + HTTP API. |
| 12 | +* CLI supports prove/verify/search/interactive/server. |
| 13 | +* HTTP API exposes health, provers, prove/verify/suggest/search, sessions. |
| 14 | +* Basic smoke checks exist for prover executables and pipeline paths. |
| 15 | +* Release documentation is updated and consistent. |
| 16 | + |
| 17 | +== Prover Coverage (Core 12) |
| 18 | + |
| 19 | +* Agda |
| 20 | +* Coq |
| 21 | +* Lean |
| 22 | +* Isabelle |
| 23 | +* Z3 |
| 24 | +* CVC5 |
| 25 | +* Metamath |
| 26 | +* HOL Light |
| 27 | +* Mizar |
| 28 | +* PVS |
| 29 | +* ACL2 |
| 30 | +* HOL4 |
| 31 | + |
| 32 | +== CLI |
| 33 | + |
| 34 | +* `echidna prove` works for each prover (file-based proof). |
| 35 | +* `echidna verify` works for each prover. |
| 36 | +* `echidna search` works (at least for provers with theorem DBs). |
| 37 | +* `echidna interactive` starts for each prover. |
| 38 | +* `echidna server` starts API server and serves endpoints. |
| 39 | + |
| 40 | +== HTTP API |
| 41 | + |
| 42 | +* `GET /api/health` returns OK + version. |
| 43 | +* `GET /api/provers` lists all 12 core provers. |
| 44 | +* `POST /api/prove` accepts payload + returns success. |
| 45 | +* `POST /api/verify` accepts payload + returns success. |
| 46 | +* `POST /api/suggest` returns tactics (or explicit “not available”). |
| 47 | +* `GET /api/search` returns matches (or explicit “not available”). |
| 48 | +* `POST /api/session/create` creates a session. |
| 49 | +* `GET /api/session/:id/state` returns state. |
| 50 | +* `POST /api/session/:id/apply` applies tactic. |
| 51 | + |
| 52 | +== Smoke Tests |
| 53 | + |
| 54 | +* Script exists to check prover executables are available (or clearly report missing). |
| 55 | +* Script runs minimal prove/verify for each prover when available. |
| 56 | + |
| 57 | +== Release Prep |
| 58 | + |
| 59 | +* `README.adoc` updated for 1.0 MVP. |
| 60 | +* `CHANGELOG.adoc` updated for 1.0 MVP. |
| 61 | +* Tagging plan for `v1.0.0`. |
0 commit comments