@junghanacs/entwurf 0.14.1 → 0.14.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/AGENTS.md +1 -1
  2. package/CHANGELOG.md +34 -0
  3. package/DELIVERY.md +57 -0
  4. package/README.md +1 -1
  5. package/VERIFY.md +4 -4
  6. package/demo/README.md +3 -1
  7. package/demo/demo-baseline.sh +12 -1
  8. package/demo/demo.sh +9 -1
  9. package/docs/acp-backend-rail.md +103 -4
  10. package/docs/setup-clean-host.md +3 -3
  11. package/mcp/entwurf-bridge/dist/scripts/doctor-pi-provider.js +139 -47
  12. package/mcp/entwurf-bridge/dist/scripts/probe-bridge-command.js +294 -0
  13. package/mcp/entwurf-bridge/tsconfig.build.json +15 -5
  14. package/package.json +9 -9
  15. package/pi-extensions/lib/acp/backend.ts +229 -9
  16. package/run.sh +70 -25
  17. package/scripts/agy-bridge-config.py +47 -13
  18. package/scripts/agy-bridge.sh +73 -23
  19. package/scripts/check-acp-prompt-lifecycle.ts +221 -9
  20. package/scripts/check-entwurf-bridge-boot.ts +28 -0
  21. package/scripts/check-gate-qualification.ts +3 -2
  22. package/scripts/check-probe-bridge-command.ts +201 -0
  23. package/scripts/check-release-gate-outcomes.ts +54 -1
  24. package/scripts/doctor-pi-provider.ts +155 -51
  25. package/scripts/mutants/acp-prompt-lifecycle.json +25 -3
  26. package/scripts/mutants/bridge-command-boot.json +107 -0
  27. package/scripts/mutants/release-gate.json +13 -0
  28. package/scripts/probe-bridge-command.ts +330 -0
  29. package/scripts/raw-async-delivery/README.md +158 -1
  30. package/scripts/raw-async-delivery/copilot-ui-server-probe.mjs +337 -0
  31. package/scripts/smoke-acp-raw-turn-live.ts +1 -1
  32. package/scripts/smoke-agy-install-state.sh +76 -2
  33. package/scripts/smoke-entwurf-chain-live.ts +1 -1
  34. package/scripts/smoke-entwurf-v2-matrix-live.ts +2 -2
  35. package/scripts/smoke-mux-fresh-call-live.ts +1 -1
  36. package/scripts/smoke-mux-lifecycle-live.ts +1 -1
  37. package/scripts/smoke-pi-provider-state.sh +135 -6
  38. package/scripts/smoke-resident-garden-guard.sh +2 -2
@@ -31,6 +31,14 @@ REPO_BEFORE="$(cd "$REPO_DIR" && git status --porcelain)"
31
31
 
32
32
  SB="$(mktemp -d)"
33
33
  trap 'rm -rf "$SB"' EXIT
34
+ # This smoke drives register-pi-provider.py, which imports the sibling pi_settings_io module — and
35
+ # CPython writes scripts/__pycache__/*.pyc for that import, INSIDE the checkout. The purity cell
36
+ # below never caught it because those bytes are gitignored, so `git status --porcelain` stays clean
37
+ # while the working tree is not. That difference is invisible here and load-bearing under gate
38
+ # qualification, whose snapshot judges tree cleanliness rather than porcelain output. Write no
39
+ # bytecode instead of cleaning it up afterwards: a smoke that leaves artifacts and then sweeps them
40
+ # is one early `exit` away from leaving them for real.
41
+ export PYTHONDONTWRITEBYTECODE=1
34
42
  export HOME="$SB/home"
35
43
  export XDG_DATA_HOME="$SB/xdg"
36
44
  GLOBAL="$SB/global.json"
@@ -46,8 +54,52 @@ LEGACY_CMD="$FAKE_REPO/mcp/entwurf-bridge/start.sh"
46
54
  # authoritative: drop EVERY original PATH dir that carries a real entwurf-bridge. A maintainer
47
55
  # can have both the managed dev link and the registry package shim; filtering only command -v's
48
56
  # first hit lets the second one mask the dangling-command cell.
49
- printf '#!/usr/bin/env bash\necho fake-bridge\n' > "$SB/bin/entwurf-bridge"
50
- chmod +x "$SB/bin/entwurf-bridge"
57
+ #
58
+ # #81: the doctor no longer stops at resolvability — it BOOTS the effective command and requires
59
+ # the entwurf MCP tool surface back. So the healthy fake must actually speak MCP: answer the
60
+ # `tools/list` frame (id 2) with a tools array carrying entwurf_v2. A fake that only echoed a word
61
+ # would now (correctly) read as "resolves but does not serve MCP", which is the NEGATIVE cell
62
+ # below — keeping the two fakes distinct is what makes this an A/B rather than a rename.
63
+ write_mcp_fake() { # $1 = path
64
+ cat > "$1" <<'FAKE'
65
+ #!/usr/bin/env bash
66
+ # minimal MCP stdio server: enough frames for the boot probe, nothing else.
67
+ while IFS= read -r line; do
68
+ case "$line" in
69
+ *'"id":1'*) printf '%s\n' '{"jsonrpc":"2.0","id":1,"result":{"protocolVersion":"2024-11-05","capabilities":{},"serverInfo":{"name":"fake-entwurf-bridge","version":"0"}}}' ;;
70
+ *'"id":2'*) printf '%s\n' '{"jsonrpc":"2.0","id":2,"result":{"tools":[{"name":"entwurf_v2"},{"name":"entwurf_self"},{"name":"entwurf_peers"},{"name":"entwurf_inbox_read"},{"name":"entwurf_register_native"},{"name":"entwurf_fresh_call"},{"name":"entwurf_resume_call"}]}}' ;;
71
+ esac
72
+ done
73
+ FAKE
74
+ chmod +x "$1"
75
+ }
76
+ # A launcher that RESOLVES and dies on exec — the shape of a relocated package-manager shim whose
77
+ # $0-derived target is gone (observed: exit 127 with a "No such file or directory" on stderr).
78
+ write_dead_fake() { # $1 = path
79
+ cat > "$1" <<'FAKE'
80
+ #!/usr/bin/env bash
81
+ echo "bash: /nonexistent/../global/v11/deadbeef/node_modules/@junghanacs/entwurf/mcp/entwurf-bridge/start.sh: No such file or directory" >&2
82
+ exit 127
83
+ FAKE
84
+ chmod +x "$1"
85
+ }
86
+ # A launcher that boots and speaks MCP but is NOT this bridge: it serves entwurf_v2 while missing
87
+ # entwurf_self. This is the shape of the observed #81 session (its schema had no entwurf_self) and
88
+ # of a stale build or a foreign binary that happens to own the name — a probe keyed on one tool
89
+ # would call it healthy, which is why identity is the exact verb SET.
90
+ write_stale_fake() { # $1 = path
91
+ cat > "$1" <<'FAKE'
92
+ #!/usr/bin/env bash
93
+ while IFS= read -r line; do
94
+ case "$line" in
95
+ *'"id":1'*) printf '%s\n' '{"jsonrpc":"2.0","id":1,"result":{"protocolVersion":"2024-11-05","capabilities":{},"serverInfo":{"name":"stale-bridge","version":"0"}}}' ;;
96
+ *'"id":2'*) printf '%s\n' '{"jsonrpc":"2.0","id":2,"result":{"tools":[{"name":"entwurf_v2"},{"name":"entwurf_peers"},{"name":"entwurf_inbox_read"},{"name":"entwurf_register_native"},{"name":"entwurf_fresh_call"},{"name":"entwurf_resume_call"}]}}' ;;
97
+ esac
98
+ done
99
+ FAKE
100
+ chmod +x "$1"
101
+ }
102
+ write_mcp_fake "$SB/bin/entwurf-bridge"
51
103
  _clean_path=""
52
104
  while IFS= read -r _dir; do
53
105
  [ -n "$_dir" ] || continue
@@ -136,14 +188,91 @@ printf '{}\n' > "$PROJECT"; rm -f "$STATE"
136
188
  OUT="$(doctor)"; RC=$?
137
189
  want "doctor(user-only bare): exits 0" "[ '$RC' -eq 0 ]"
138
190
  want "doctor(user-only bare): ok — bare bin resolves" "printf '%s' \"\$OUT\" | grep -q 'bare stable bin'"
191
+ # The green must be about BOOTING, not about resolving — anchored on the verdict word so a doctor
192
+ # that regressed to the resolvability-only ok cannot keep this cell green.
193
+ want "doctor(user-only bare): green says the bin BOOTS (#81), not merely resolves" "printf '%s' \"\$OUT\" | grep -q 'and it BOOTS'"
194
+
195
+ # ── H-merge: the doctor normalizes what PRODUCTION normalizes, not what each FILE holds ──
196
+ # resolveProviderConfig merges the two mcpServers maps per-name and normalizes the RESULT once. A
197
+ # doctor that normalized each file separately would validate entries production never sees: a
198
+ # malformed global entry the project map shadows is gone before pi ever looks, yet the per-file
199
+ # doctor throws and calls a healthy session red. Both directions are pinned here.
200
+ python3 -c 'import json,sys; json.dump({"entwurfProvider":{"mcpServers":{"entwurf-bridge":{"command":123}}}}, open(sys.argv[1],"w"))' "$GLOBAL"
201
+ printf '{"entwurfProvider":{"mcpServers":{"entwurf-bridge":{"command":"entwurf-bridge"}}}}\n' > "$PROJECT"
202
+ set +e
203
+ OUT="$(doctor 2>&1)"; RC=$?
204
+ set -e
205
+ want "doctor(invalid global SHADOWED by valid project): green — production never sees the bad entry" "[ '$RC' -eq 0 ]"
206
+ want "doctor(invalid global shadowed): EFFECTIVE scope is project" "printf '%s' \"\$OUT\" | grep -q 'EFFECTIVE (project)'"
207
+ # An unrelated malformed server in the global map is likewise production's problem only if it
208
+ # survives the merge — here the project map does not shadow it, so it MUST stay red.
209
+ python3 -c 'import json,sys; json.dump({"entwurfProvider":{"mcpServers":{"entwurf-bridge":{"command":"entwurf-bridge"},"other":{"command":[]}}}}, open(sys.argv[1],"w"))' "$GLOBAL"
210
+ printf '{}\n' > "$PROJECT"
211
+ if doctor >/dev/null 2>&1; then die "doctor(unshadowed malformed sibling): should FAIL — the merged map is what production normalizes"; fi
212
+ ok "doctor(unshadowed malformed sibling): FAILS — an invalid entry that SURVIVES the merge is red"
213
+ # The effective entry itself malformed → red regardless of which scope wrote it.
214
+ printf '{"entwurfProvider":{"mcpServers":{"entwurf-bridge":{"command":"entwurf-bridge"}}}}\n' > "$GLOBAL"
215
+ python3 -c 'import json,sys; json.dump({"entwurfProvider":{"mcpServers":{"entwurf-bridge":{"command":123}}}}, open(sys.argv[1],"w"))' "$PROJECT"
216
+ if doctor >/dev/null 2>&1; then die "doctor(effective malformed): should FAIL"; fi
217
+ ok "doctor(effective malformed in project): FAILS — shadowing cannot rescue the EFFECTIVE entry"
218
+ # restore the H-1 baseline for the cells below
219
+ printf '{"entwurfProvider":{"mcpServers":{"entwurf-bridge":{"command":"entwurf-bridge"}}}}\n' > "$GLOBAL"
220
+ printf '{}\n' > "$PROJECT"
221
+
222
+ # ── H-boot: #81 A/B — a bare bin that RESOLVES but does not serve MCP ─────────
223
+ # This is the whole defect in one cell: before #81 the doctor printed ok here, and a host in this
224
+ # exact state ran Pi ACP turns with NO mcp__entwurf-bridge__* tool at all. PATH/HOME/XDG are the
225
+ # sandbox's, so the operator's real launcher is never touched by this A/B.
226
+ write_dead_fake "$SB/bin/entwurf-bridge"
227
+ # `set -e` is on: a doctor that (correctly) exits non-zero here would kill the smoke before it could
228
+ # judge the failure. Fence just the drive, never the assertions — a silently swallowed rc is how a
229
+ # negative cell turns into decoration.
230
+ set +e
231
+ OUT="$(doctor 2>&1)"; RC=$?
232
+ set -e
233
+ want "[QK:PI-DOCTOR-BOOT-NEGATIVE] doctor(bare resolves, does not boot): FAILS instead of printing ok" "[ '$RC' -ne 0 ]"
234
+ want "doctor(bare resolves, does not boot): names the boot failure reason" "printf '%s' \"\$OUT\" | grep -q 'does NOT serve MCP \[exited-before-tools-list\]'"
235
+ want "doctor(bare resolves, does not boot): carries the launcher's own stderr" "printf '%s' \"\$OUT\" | grep -q 'No such file or directory'"
236
+ # Remediation must NOT be a fix-all: entwurf may not clobber a launcher it does not own, so the
237
+ # foreign case has to be named as the operator's repair.
238
+ want "doctor(bare resolves, does not boot): refuses to clobber a foreign launcher" "printf '%s' \"\$OUT\" | grep -q 'will not overwrite'"
239
+ want "doctor(bare resolves, does not boot): still distinguishes 'resolves' from 'boots'" "printf '%s' \"\$OUT\" | grep -q 'RESOLVES — probing'"
240
+ # A bridge that BOOTS and speaks MCP but is not this one — the #81 symptom exactly.
241
+ write_stale_fake "$SB/bin/entwurf-bridge"
242
+ set +e
243
+ OUT="$(doctor 2>&1)"; RC=$?
244
+ set -e
245
+ want "doctor(boots, wrong verb set): FAILS — booting an MCP server is not being THIS bridge" "[ '$RC' -ne 0 ]"
246
+ want "doctor(boots, wrong verb set): names the missing verb (#81 symptom was entwurf_self)" "printf '%s' \"\$OUT\" | grep -q 'missing entwurf_self'"
247
+ want "doctor(boots, wrong verb set): reason is the tool-set mismatch, not a boot failure" "printf '%s' \"\$OUT\" | grep -q 'tool-set-mismatch'"
139
248
 
140
- # H-2: project STALE (user bare, project legacy) → effective=project=legacy note (green-runtime-red guard)
249
+ write_mcp_fake "$SB/bin/entwurf-bridge"
250
+ OUT="$(doctor)"; RC=$?
251
+ want "doctor(after repair): the SAME unchanged doctor goes green once the launcher boots" "[ '$RC' -eq 0 ]"
252
+ want "doctor(after repair): green names the exact verb set as the evidence" "printf '%s' \"\$OUT\" | grep -q 'exact entwurf verb set'"
253
+
254
+ # The review A/B: an unowned/non-bare override shadows the healthy user bridge in production.
255
+ # Ownership remains the operator's, but runtime truth cannot become a green note merely because
256
+ # entwurf will not overwrite it. Keep this QK cell before the healthy legacy override: a mutant
257
+ # that skips all non-bare runtime probes must be attributed to THIS failure, not the later positive.
258
+ write_dead_fake "$SB/bin/dead-override"
141
259
  printf '{"entwurfProvider":{"mcpServers":{"entwurf-bridge":{"command":"entwurf-bridge"}}}}\n' > "$GLOBAL"
260
+ python3 -c 'import json,sys; json.dump({"entwurfProvider":{"mcpServers":{"entwurf-bridge":{"command":sys.argv[2],"args":[]}}}}, open(sys.argv[1],"w"))' "$PROJECT" "$SB/bin/dead-override"
261
+ set +e
262
+ OUT="$(doctor 2>&1)"; RC=$?
263
+ set -e
264
+ want "[QK:PI-DOCTOR-PROBES-OVERRIDE] doctor(dead unowned override): FAILS runtime independently of ownership" "[ '$RC' -ne 0 ]"
265
+ want "doctor(dead unowned override): names the exact invocation failure" "printf '%s' \"\$OUT\" | grep -q 'effective invocation does NOT serve MCP'"
266
+
267
+ # H-2: project legacy override still gets an independent runtime verdict before its ownership note.
268
+ mkdir -p "$(dirname "$LEGACY_CMD")"
269
+ write_mcp_fake "$LEGACY_CMD"
142
270
  python3 -c 'import json,sys; json.dump({"entwurfProvider":{"mcpServers":{"entwurf-bridge":{"command":sys.argv[2]}}}}, open(sys.argv[1],"w"))' "$PROJECT" "$LEGACY_CMD"
143
271
  OUT="$(doctor)"; RC=$?
144
- want "doctor(project-stale): exits 0 (honest note, not a crash)" "[ '$RC' -eq 0 ]"
145
- want "doctor(project-stale): EFFECTIVE is project (shadows user)" "printf '%s' \"\$OUT\" | grep -q 'EFFECTIVE (project)'"
146
- want "doctor(project-stale): flags legacy managed path (not adopted)" "printf '%s' \"\$OUT\" | grep -q 'LEGACY managed repo path'"
272
+ want "doctor(project-legacy): exits 0 when the exact override boots" "[ '$RC' -eq 0 ]"
273
+ want "doctor(project-legacy): EFFECTIVE is project (shadows user)" "printf '%s' \"\$OUT\" | grep -q 'EFFECTIVE (project)'"
274
+ want "doctor(project-legacy): runtime BOOTS before the ownership note" "printf '%s' \"\$OUT\" | grep -q 'configured override BOOTS'"
275
+ want "doctor(project-legacy): flags legacy managed path (not adopted)" "printf '%s' \"\$OUT\" | grep -q 'LEGACY managed repo path'"
147
276
 
148
277
  # H-3: state-owned DRIFT → FAIL (state says managed but effective is foreign)
149
278
  printf '{"entwurfProvider":{"mcpServers":{"entwurf-bridge":{"command":"/foreign/thing"}}}}\n' > "$GLOBAL"
@@ -70,7 +70,7 @@ fi
70
70
  SESSIONS_BASE="$RGG_AGENT_DIR/sessions"
71
71
  cleanup() { rm -rf "$RGG_AGENT_DIR"; }
72
72
  trap cleanup EXIT
73
- # Default target stays pi-native (openai-codex/gpt-5.4), but honor the SAME target
73
+ # Default target stays pi-native (openai-codex/gpt-5.6-luna), but honor the SAME target
74
74
  # knob as the other live smokes: ENTWURF_LIVE_TARGET="<provider>/<model>". On
75
75
  # acp-on-v2 the ACP `entwurf` provider is back, and `./run.sh smoke-acp-rgg-live`
76
76
  # drives THIS runner against it (deterministic half) — the citizen logic (record +
@@ -83,7 +83,7 @@ if [ -n "${ENTWURF_LIVE_TARGET:-}" ]; then
83
83
  esac
84
84
  else
85
85
  _rgg_provider="${ENTWURF_LIVE_PROVIDER:-openai-codex}"
86
- _rgg_model="${ENTWURF_LIVE_MODEL:-gpt-5.4}"
86
+ _rgg_model="${ENTWURF_LIVE_MODEL:-gpt-5.6-luna}"
87
87
  fi
88
88
  PROVIDER="${SMOKE_RGG_PROVIDER:-$_rgg_provider}"
89
89
  MODEL="${SMOKE_RGG_MODEL:-$_rgg_model}"