fix(provision): grant user lire (251) to ai_agent_sandbox so the armed probe passes

The checkpoint status/relink-env armed probe calls GET /users/info, which
requires Dolibarr right 251 (user->user->lire). WRITE_IDS didn't include it,
so a freshly provisioned agent answered 403 on the probe — reported NOT armed
— while its key actually authenticates (GET /thirdparties -> 200). Right 251
was granted live in SQL on the sandbox (fk_user=4) today; this persists it in
WRITE_IDS so every future provision grants it.

Also teach both probes to tell the failure modes apart instead of one opaque
message: 401 = key rejected (stale/instance-encrypted -> re-provision),
403 = key OK but right 251 missing (-> grant it / re-provision), 200 = armed.
Docs updated accordingly (checkpoint SKILL.md probe outcomes, sandbox-write
SKILL.md gotcha, test/README.md rights table synced to WRITE_IDS incl. 262/111).

Co-Authored-By: Claude Fable 5 <[email protected]>
This commit is contained in:
2026-07-11 17:38:30 +02:00
co-authored by Claude Fable 5
parent 3045d50626
commit 0240c519b1
6 changed files with 37 additions and 10 deletions
@@ -29,7 +29,12 @@ arcodange sandbox checkpoint relink-env
```
1. **`status`** — HTTP liveness + whether the write agent (`ai_agent_sandbox`) is
*armed* (its key authenticates `GET /users/info`). Read-only, no cluster access.
*armed*. The armed probe calls `GET /users/info` with the linked key; three
outcomes: **200**`ARMED`; **401** → the key itself is rejected (stale, e.g.
an iso-prod refresh re-encrypted it) → re-run `provision`; **403** → the key
authenticates but lacks right **251** (`user → lire`, which `/users/info`
requires) → re-provision (a fresh run grants it via `WRITE_IDS` in
`test/provisionSandbox.ts`) or grant 251 by hand. Read-only, no cluster access.
2. **`refresh --yes`** — re-seed the sandbox iso-prod from prod, wrapping
`ops/sandbox/sandbox-lifecycle.sh` (read-only `pg_dump` of prod → `DROP OWNED`
`pg_restore`, then documents/logo sync). **Destructive**: requires `--yes`, and
@@ -40,7 +45,8 @@ arcodange sandbox checkpoint relink-env
(`test/provisionSandbox.ts`). It opens a browser; **you complete the admin
login** — with the **PROD** admin credentials, since the sandbox is iso-prod
(they come from `test/.env.sandbox`). The POC re-grants the agent's rights
(including `banque lire`) and writes the key to `test/.ai_agent_sandbox.key`,
(including `banque lire` and `user lire` = right 251, which the armed probe
needs) and writes the key to `test/.ai_agent_sandbox.key`,
then this command auto-runs `relink-env`. Needs `deno`.
4. **`relink-env`** — (re)write `dolibarr-sandbox-write/.env` from
`test/.ai_agent_sandbox.key` (mode 600) and verify it authenticates. Run it