mirror of
https://github.com/saymrwulf/proof-aware-crypto-tooling-agent.git
synced 2026-09-04 20:03:40 +00:00
Operator questions answered in code: (1) the estate map now lives IN the cockpit too — /estate serves the interactive map (lanes, typed edges, loops, clickable dossiers) to the same human audience the cockpit serves; ESTATE.md remains the canonical committed version (renders on GitHub, reachable by agents via llms.txt, needs no running process), and a name-level sync test guards drift between the two renderings — the published_assets lesson applied preemptively. (2) 'What is RUNNING?' is now answered everywhere: an operations strip on the map (ALWAYS ON: caddy + the LTL read-only container + Forgejo with its single 03:00 mirror cron, all droplet; ON-DEMAND: append/publish/sign ceremonies, cockpit, MCP, operator machine only; NOT RUNNING: warden — prototype, no deployed instance, no funds watched; everything else: static files or external parties), a per-entity Runtime line in every dossier, and a verified What-is-running table in ESTATE.md (container commands, :ro mounts and read_only:true on the LTL service, and the crontab checked on the droplet 2026-07-20, not recalled). Suite 128 -> 130 (estate route + drift guard). Local-only as before: nothing deployed, live estate untouched. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
52 lines
3 KiB
Markdown
52 lines
3 KiB
Markdown
# The custody cockpit — a read-only surface for the human operator
|
|
|
|
`pacta wallet cockpit --wallet <dir>` serves a local web UI
|
|
(default `http://127.0.0.1:8471`) over an existing warden wallet.
|
|
warden has always been agent-native (MCP) and CLI-native; the cockpit is
|
|
the third surface — for the human who ultimately answers for the money.
|
|
|
|
## The design law
|
|
|
|
**The cockpit renders evidence; it never asserts it.** Every panel is
|
|
recomputed at request time by the same functions the wallet itself uses
|
|
(`Wallet.posture()`, `Wallet.verify_ledger()`, directory listings,
|
|
`transparency.verify_receipt`), and every panel carries a provenance
|
|
line naming the function and the timestamp. Anything that cannot be
|
|
recomputed renders as a loud red FAILED-TO-VERIFY panel. There is no
|
|
cached green and no neutral gray — a cockpit that shows unverified green
|
|
lights would be the anti-warden.
|
|
|
|
## The read-only guarantee
|
|
|
|
The cockpit cannot approve, sign, unlatch, or modify custody state. It
|
|
calls only read paths; the one POST route (the receipt inspector) parses
|
|
submitted artifacts in memory and throwaway temp files, never near the
|
|
wallet directory. `tests/test_walletui.py` asserts this at the byte
|
|
level: a full request sweep, POST included, leaves every file in the
|
|
wallet directory hash-identical. Human approve/deny is deliberately NOT
|
|
here — that would be a custody-semantics change, which belongs to a
|
|
separate, explicitly reviewed milestone.
|
|
|
|
## The four views
|
|
|
|
| view | shows | recomputed by |
|
|
|---|---|---|
|
|
| **Posture** (`/`) | custody latch state, ledger head with full hash-chain re-verification, the pinned quorum members (backend, component, tier, source commit, binary hash), spending policy verbatim, incident/refusal counts | `Wallet.posture()` / `Wallet.verify_ledger()` |
|
|
| **Signature queue** (`/queue`) | parked airgap signing requests (outbox) and whether the device has answered (inbox) — observed, never operated | airgap outbox/inbox listing |
|
|
| **Incidents & refusals** (`/incidents`) | incident records and signed refusal receipts, verbatim, newest first | `incidents/*.json`, `receipts/*.json` |
|
|
| **Estate map** (`/estate`) | the whole endeavour — every repo, service, mirror, loop — with RUNTIME on every entity (always-on / on-demand / not-running / static) | rendering of ESTATE.md's model (drift-guarded by test) |
|
|
| **Receipt inspector** (`/inspect`) | paste an attestation + transparency receipt + log public key; the verdict, per-signature results, and diagnostics come verbatim from the deployed verifier | `pacta.transparency.verify_receipt` |
|
|
|
|
Every panel also states what it does **not** prove (e.g. the quorum
|
|
table says binary hashes are pinned but source-to-binary correspondence
|
|
is out of scope until reproducible builds).
|
|
|
|
## Serving
|
|
|
|
```bash
|
|
pacta wallet cockpit --wallet ~/my-wallet # 127.0.0.1:8471
|
|
pacta wallet cockpit --wallet ~/my-wallet --port 9000
|
|
```
|
|
|
|
The server binds localhost by default and is not meant to be exposed;
|
|
there is no authentication because there is nothing to operate.
|