# Unified v2 Release Checklist ## Protocol - [x] Confirm all clients send explicit `channel` (`control` / `acheron`). - [x] Confirm all clients use canonical unified v2 type names. - [x] Verify control negotiation order: 1. `control.version` (`{"protocol":"unified-v2"}`) 2. `control.connect` - [x] Verify runtime Acheron negotiation order: 1. `acheron.t_version` (`"version":"acheron-1"`) 2. `acheron.t_attach` - [x] Verify FS routing negotiation order: 1. `acheron.t_fs_hello` (`{"protocol":"unified-v2-fs","proto":2,...}`) ## Auth and Security - [x] If enabling control mutation gate, set `SPIDERWEB_CONTROL_OPERATOR_TOKEN` and validate protected operations require `payload.operator_token`. - [x] If enabling encrypted control-plane snapshots, set `SPIDERWEB_CONTROL_STATE_KEY_HEX` (64 hex chars). - [x] If enabling FS session auth on standalone nodes, set `spiderweb-fs-node --auth-token` (or `SPIDERWEB_FS_NODE_AUTH_TOKEN`) and verify router HELLO includes matching `auth_token`. ## Observability - [x] Set `SPIDERWEB_METRICS_PORT` and verify: - [x] `GET /livez` returns 200 - [x] `GET /readyz` returns 200 - [x] `GET /metrics` returns Prometheus text - [x] `GET /metrics.json` returns JSON metrics ## Integration Validation - [x] `cd test-env && make test-distributed-workspace` - [x] `cd test-env && make test-distributed-workspace-bootstrap` - [x] `cd test-env && make test-distributed-workspace-drift` - [x] `cd test-env && make test-distributed-workspace-matrix` - [x] `cd test-env && make test-distributed-workspace-encrypted` - [x] `cd test-env && make test-distributed-workspace-operator-token` - [x] `cd test-env && make test-distributed-soak-chaos` - [x] `cd test-env && make test-unified-v2-protocol` ## Client / Tooling Updates - [x] Update automation/scripts to use `spiderweb-control` for control-plane calls where appropriate. - [x] Update mount workflows using project pinning (`--project-id`) to benefit from project-scoped topology deltas.