Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -544,17 +544,17 @@ is not.
that can collapse without losing accuracy or completeness, and cut it. Do not sacrifice
correctness or completeness for terseness -- the goal is removing WORDS, not INFORMATION.

- **Item 31: `docs/demo-bootstrapper-output.md` still has 6 scenarios below the 5-quote house-rule
- **Item 31: `docs/demo-bootstrapper-output.md` still has 5 scenarios below the 5-quote house-rule
minimum** (2026-08-08 audit; the 6 real `[TEST]`-line violations found in the same audit were
fixed same-day, and Scenario 40d's own shortfall was fixed same-day too -- this item is ONLY the
remaining quote-count shortfalls below, not a re-run of the whole audit). Each needs additional
genuine (real-capture or source-derived,
`[Extrapolated Branch]`-labeled if not independently confirmed) console-output quotes added,
not fabricated ones:
- Scenario 25 (pandas/openpyxl heuristic augmentation) -- only 1 real quote today, needs 4 more;
the worst shortfall in the doc. Real additional material likely exists near
`self.exe.warnfix.real`'s own captured evidence or genuine warnfix/install lines around the
heuristic firing.
- (Scenario 25, pandas/openpyxl heuristic augmentation, already fixed 2026-08-09 -- added a real
bootstrap-console capture from `self.exe.warnfix.real`'s own scratch directory in the SAME CI
run/job, showing the heuristic-installed `openpyxl` genuinely bundled and usable in a frozen
EXE, `wrote out.xlsx` and all -- 6 new real quotes, well past the 5-quote minimum.)
- "Reactive-only failure hint" (Part VIII, a standalone entry after Scenario 40) -- 2 quotes,
needs 3 more. No CI run has exercised a real Nuitka compiler failure yet, so any addition here
is necessarily `[Extrapolated Branch]` from source.
Expand All @@ -569,7 +569,7 @@ is not.
VIII.)
A handful of other scenarios sit right at the 5-6 quote line (Scenarios 2, 7, 10, 14, 16, 20,
21, 22, 27, 39, 40c) -- not violations, but worth a second pass for margin if this item is ever
picked up as a larger push rather than just closing the 6 genuine shortfalls above.
picked up as a larger push rather than just closing the 5 genuine shortfalls above.

- **Item 32: hint when zero `.py` files are found but a `.py.txt` (hidden-extension) file
exists.** Moved here from Cold Storage 2026-08-08 (a CodeRabbit review finding correctly caught
Expand Down
31 changes: 28 additions & 3 deletions docs/demo-bootstrapper-output.md
Original file line number Diff line number Diff line change
Expand Up @@ -1875,9 +1875,9 @@ detected, per REQ-019's suppression-only convention.
**What's tested:** `pandas_excel.translate`/`.conda.install`/`.conda.install.req006`/`.runtime`,
`self.pandas.openpyxl.install`/`.import` (`tests/selfapps_pandas_excel.ps1`, `conda-full` lane, all
real and passing) -- plus a genuinely SEPARATE test that happens to exercise the same heuristic in
a different scratch directory, `self.exe.warnfix.real` (`tests/selftest.ps1`'s `real` scenario,
`conda-full` lane, also real and passing, `desc: "Heuristic pre-installed openpyxl via pandas
heuristic; EXE succeeded"`).
a different scratch directory, `self.exe.warnfix.real` (`tests/selfapps_warnfix.ps1`'s `real`
scenario, `conda-full` lane, also real and passing, `desc: "Heuristic pre-installed openpyxl via
pandas heuristic; EXE succeeded"`).

**Source:** REAL CI CAPTURE, run `30328748330`, job `90179708094` (`conda-full` lane).

Expand Down Expand Up @@ -1930,6 +1930,31 @@ module named PIL - imported by openpyxl.drawing.image (optional)`, not a real ga
providers via `requirements.txt` write-back (CLAUDE.md's own "Deep research pass" Closed Backlog
entry on this exact fix), just not captured here since this test is conda-only by design.

That claim is directly confirmed by `self.exe.warnfix.real`'s own real bootstrap console capture from
the SAME CI run (`tests/~selftest_warnfix_real/~warnfix_real_bootstrap.log`) -- a full `run_setup.bat`
run whose `requirements.txt` declares only `pandas` (triggering the identical heuristic rule shown
above), while the app's own source imports `openpyxl` directly and writes `out.xlsx` via
`openpyxl.Workbook()` rather than through pandas -- deliberately isolating the heuristic-provisioned
package as the only thing under test. This run reaches an actual build and EXE smoke test:

```
[INFO] Building standalone executable -- this may take a minute or two...
[INFO] PyInstaller produced dist\_selftest_warnfix_real.exe
[INFO] EXE smokerun: testing dist\_selftest_warnfix_real.exe
wrote out.xlsx
[INFO] EXE smokerun: exited 0 (ok)
[STATUS] Run Status: SUCCESS (Exit Code: 0)
```

`wrote out.xlsx` is the app's own `print()` output, reached only after `openpyxl.Workbook().save()`
succeeds inside the frozen EXE -- direct, unambiguous proof the heuristic-installed `openpyxl` was
genuinely bundled and usable at runtime, not just resolved by conda's solver. This same real run
separately hit unrelated warnfix repair failures (`multiprocessing`, `pyimod02_importers`, `vms_lib`,
`java`, `win32pdh` -- none are real installable packages, a PyInstaller warn-scan false-positive class
distinct from this heuristic) and a declined REQ-009 cascade prompt; neither affected the pandas/
openpyxl outcome, since `openpyxl` was already correctly provisioned by the heuristic before the
build ever started.

---

### Scenario 26: Conda base periodic update
Expand Down
Loading