Commit 76b1421
Wire the 4 dead nexus-setup wizard handlers + refresh stale governance pin (#67)
<!-- SPDX-License-Identifier: CC-BY-SA-4.0 -->
## Summary
A post-merge deep check of `main` (after #63–#66) found `main` in
excellent shape — build + 167 tests green across six suites, ABI
contract with no drift, the new AffineScript FFI contract in sync
(38/38), version SSOT clean at 0.9.0, and the Ephapax parser gaps
closed. It surfaced **one genuine defect** plus one stale metadata note;
this PR fixes both.
The defect: the `nexus-setup` GUI wizard's IPC handlers were never
bound. `Shell.eph`'s `bindAllHandlers` wired 25 commands but not the
four the wizard actually invokes, so wizard steps 2/5/6/7 (Steam
operator lookup, stage files, provision, verify) had no webview→engine
path — the calls went nowhere.
## Changes
- **`src/core/Shell.eph`** — bind the four missing `nexus-setup` IPC
handlers: `steam_resolve_vanity`, `nexus_stage_files`,
`nexus_provision`, `nexus_verify`. Each mirrors the existing binding
pattern and matches its verified `Bridge.eph` signature
(`handleSteamResolveVanity` is payload-only; the three `nexus_*`
handlers take `caps`). `panel.html` calls all four via `gossamerInvoke`;
`Bridge.eph` implements all four (lines 523–626); the scripts they drive
(`scripts/provision-server.sh`, `scripts/steam-stage.sh`) both exist.
- **`.machine_readable/descriptiles/NEUROSYM.a2ml`** — the standards
reusable-pin note still cited `4ddc926` (PR #45). Updated to the current
per-workflow pins (governance/scorecard `d7c2271`, secret-scanner
`891b1ed`, mirror `d135b05`) with bump history, pointing at
`CI-CD-GUIDE.adoc` as authoritative.
## RSR Quality Checklist
### Required
- [x] Tests pass — full `main` re-verified: 167 Zig tests across six
suites + fuzz compiles (this PR does not touch Zig)
- [x] No banned language patterns
- [x] No banned functions (`believe_me`, `unsafeCoerce`, …)
- [x] SPDX license headers present on all modified files
- [x] No secrets/credentials included
### As Applicable
- [x] ABI/FFI validated — regen produced no drift; AffineScript FFI
contract in sync (38/38)
- [ ] Documentation — no user-facing doc change needed (the wizard is
already documented in the wiki)
## Testing
`Shell.eph` is Ephapax, an estate toolchain **not present in this
environment**, so the binding change is **verified by inspection**, not
a local compile: it mirrors the 25 existing bindings exactly and matches
the `Bridge.eph` handler signatures and the `panel.html` call sites (all
confirmed by grep). The rest of the deep check ran for real — build, six
test suites (94+41+10+3+5+14), `gen_result_codes`/`gen_abi_expected`
regen + `git diff` (no drift), `affine-ffi-contract-check.sh`, and
`check_version_drift.sh` all green.
## Screenshots
```
Shell.eph bindAllHandlers: +4 bindings (steam_resolve_vanity, nexus_stage_files,
nexus_provision, nexus_verify)
main verification: build OK · 167 tests pass · ABI no-drift · affine 38/38 · SSOT 0.9.0
```
🤖 Generated with [Claude Code](https://claude.com/claude-code)
https://claude.ai/code/session_01TaWWedv6VQqeZaPvc94keN
---
_Generated by [Claude
Code](https://claude.ai/code/session_01TaWWedv6VQqeZaPvc94keN)_
Co-authored-by: Claude <noreply@anthropic.com>1 parent e09cd1b commit 76b1421
2 files changed
Lines changed: 14 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
19 | | - | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
20 | 23 | | |
21 | 24 | | |
22 | 25 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
190 | 190 | | |
191 | 191 | | |
192 | 192 | | |
| 193 | + | |
| 194 | + | |
| 195 | + | |
| 196 | + | |
| 197 | + | |
| 198 | + | |
| 199 | + | |
| 200 | + | |
| 201 | + | |
| 202 | + | |
193 | 203 | | |
194 | 204 | | |
195 | 205 | | |
| |||
0 commit comments