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.
- package/dist/commands/intent.d.ts.map +1 -1
- package/dist/commands/intent.js +17 -0
- package/dist/commands/intent.js.map +1 -1
- package/dist/core/IntentTestHarness.d.ts +58 -0
- package/dist/core/IntentTestHarness.d.ts.map +1 -0
- package/dist/core/IntentTestHarness.js +119 -0
- package/dist/core/IntentTestHarness.js.map +1 -0
- package/dist/core/OrgIntentIdentityLayer.d.ts +37 -0
- package/dist/core/OrgIntentIdentityLayer.d.ts.map +1 -0
- package/dist/core/OrgIntentIdentityLayer.js +125 -0
- package/dist/core/OrgIntentIdentityLayer.js.map +1 -0
- package/dist/core/OrgIntentManager.d.ts +3 -0
- package/dist/core/OrgIntentManager.d.ts.map +1 -1
- package/dist/core/OrgIntentManager.js +4 -2
- package/dist/core/OrgIntentManager.js.map +1 -1
- package/dist/core/PostUpdateMigrator.d.ts.map +1 -1
- package/dist/core/PostUpdateMigrator.js +20 -0
- package/dist/core/PostUpdateMigrator.js.map +1 -1
- package/dist/scaffold/templates.d.ts.map +1 -1
- package/dist/scaffold/templates.js +5 -0
- package/dist/scaffold/templates.js.map +1 -1
- package/dist/server/routes.d.ts.map +1 -1
- package/dist/server/routes.js +38 -0
- package/dist/server/routes.js.map +1 -1
- package/package.json +1 -1
- package/src/data/builtin-manifest.json +63 -63
- package/src/scaffold/templates.ts +5 -0
- package/upgrades/1.3.322.md +56 -0
- package/upgrades/side-effects/exo3-g1-ci-greening.md +42 -0
|
@@ -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.
|