instar 1.3.321 → 1.3.322

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.
@@ -0,0 +1,42 @@
1
+ # Side-effects — EXO 3.0 G1 (#785) CI greening on post-rebase main
2
+
3
+ ## Change set
4
+
5
+ - `tests/e2e/mtp-protocol-test-action-lifecycle.test.ts` — teardown `fs.rmSync`
6
+ → `SafeFsExecutor.safeRmSync` (lint-no-direct-destructive compliance; test-only).
7
+ - `upgrades/next/mtp-protocol-exo3.md` — adds `## What to Tell Your User` +
8
+ `## Summary of New Capabilities` (fragment validation + Repo Invariants).
9
+ - `tests/unit/feature-delivery-completeness.test.ts` — registers
10
+ 'MTP Protocol — the two EXO 3.0 tests' in `featureSections`.
11
+ - `src/core/PostUpdateMigrator.ts` — adds the `'**MTP Protocol — the two EXO
12
+ 3.0 tests'` shadow marker to `migrateFrameworkShadowCapabilities` markers[]
13
+ (mirrors the section to AGENTS.md / GEMINI.md).
14
+
15
+ ## Side effects considered
16
+
17
+ - **Shadow mirror growth**: Codex/Gemini agents gain one more mirrored section
18
+ on their next migration run. Idempotent (`appended.includes(marker)` guard);
19
+ marker omits trailing punctuation so it matches both the template variant
20
+ ("…tests (Phase 5).") and the migrator variant ("…tests."). Risk: none beyond
21
+ a few hundred bytes in shadow files.
22
+ - **Slice bounding**: the marker participates in the next-marker boundary scan
23
+ for OTHER sections' slices. Because the MTP section sits adjacent to other
24
+ bold-marker sections, including it actually IMPROVES slice precision (the
25
+ same reason the markers list exists — see the Secret Drop regression note in
26
+ the migrator).
27
+ - **No runtime behavior change**: no route, no migration logic, no scheduler,
28
+ no messaging path touched. The only src edit is data (one marker string).
29
+ - **Test-only deletions**: SafeFsExecutor in e2e teardown routes through the
30
+ audited funnel; tmpdir-scoped, recursive+force semantics unchanged.
31
+
32
+ ## Verification
33
+
34
+ - `tests/unit/feature-delivery-completeness.test.ts` + the MTP e2e: 73/73 green locally.
35
+ - `node scripts/check-repo-invariants.mjs` → "Repository invariants hold."
36
+ - `node scripts/lint-no-direct-destructive.js` → clean.
37
+ - `tsc --noEmit` → 0 errors.
38
+
39
+ ## Rollback
40
+
41
+ Revert this single commit; the feature commit (da33b79a7) and merge commit
42
+ (bf8022b1b) are untouched by it.