instar 1.3.336 → 1.3.337
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/server.d.ts.map +1 -1
- package/dist/commands/server.js +6 -5
- package/dist/commands/server.js.map +1 -1
- package/dist/core/PostUpdateMigrator.d.ts.map +1 -1
- package/dist/core/PostUpdateMigrator.js +25 -5
- package/dist/core/PostUpdateMigrator.js.map +1 -1
- package/dist/monitoring/ContextWedgeSentinel.d.ts +46 -17
- package/dist/monitoring/ContextWedgeSentinel.d.ts.map +1 -1
- package/dist/monitoring/ContextWedgeSentinel.js +92 -30
- package/dist/monitoring/ContextWedgeSentinel.js.map +1 -1
- package/dist/server/routes.d.ts.map +1 -1
- package/dist/server/routes.js +14 -3
- package/dist/server/routes.js.map +1 -1
- package/package.json +1 -1
- package/src/data/builtin-manifest.json +63 -63
- package/upgrades/1.3.337.md +56 -0
- package/upgrades/aup-wedge-fresh-api.eli16.md +45 -0
- package/upgrades/side-effects/aup-wedge-fresh-api.md +83 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"server.d.ts","sourceRoot":"","sources":["../../src/commands/server.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AA6SH,UAAU,YAAY;IACpB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb;2DACuD;IACvD,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAuxDD,wBAAsB,WAAW,CAAC,OAAO,EAAE,YAAY,GAAG,OAAO,CAAC,IAAI,CAAC,
|
|
1
|
+
{"version":3,"file":"server.d.ts","sourceRoot":"","sources":["../../src/commands/server.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AA6SH,UAAU,YAAY;IACpB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb;2DACuD;IACvD,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAuxDD,wBAAsB,WAAW,CAAC,OAAO,EAAE,YAAY,GAAG,OAAO,CAAC,IAAI,CAAC,CA6uRtE;AAED,wBAAsB,UAAU,CAAC,OAAO,EAAE;IAAE,GAAG,CAAC,EAAE,MAAM,CAAA;CAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CAsDzE;AAED;;;;;;;;;;;GAWG;AACH,wBAAsB,aAAa,CAAC,OAAO,EAAE;IAAE,GAAG,CAAC,EAAE,MAAM,CAAA;CAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CAuD5E"}
|
package/dist/commands/server.js
CHANGED
|
@@ -5803,7 +5803,8 @@ export async function startServer(options) {
|
|
|
5803
5803
|
? ' ActiveWorkSilenceSentinel enabled (silent-freeze watchdog — Telegram escalation ON, consolidated)'
|
|
5804
5804
|
: ' ActiveWorkSilenceSentinel enabled (silent-freeze watchdog — logs only, Telegram escalation OFF)'));
|
|
5805
5805
|
}
|
|
5806
|
-
// ── ContextWedgeSentinel —
|
|
5806
|
+
// ── ContextWedgeSentinel — transcript fast-fail wedges (thinking-block
|
|
5807
|
+
// 400 + AUP-rejection loop) ──
|
|
5807
5808
|
// Detection + audit ship default-ON (harmless housekeeping). The
|
|
5808
5809
|
// destructive fresh-respawn is gated by autoRecovery (default OFF +
|
|
5809
5810
|
// dryRun) and rides the Graduated Feature Rollout track. freshRespawn is
|
|
@@ -5832,15 +5833,15 @@ export async function startServer(options) {
|
|
|
5832
5833
|
tickIntervalMs: wedgeCfg.tickIntervalMs,
|
|
5833
5834
|
confirmWindowMs: wedgeCfg.confirmWindowMs,
|
|
5834
5835
|
});
|
|
5835
|
-
wedgeSentinel.on('detected', (e) => notifier.record('detected', 'context-wedge', e.sessionName));
|
|
5836
|
-
wedgeSentinel.on('recovered', (e) => notifier.record('recovered', 'context-wedge', e.sessionName,
|
|
5837
|
-
wedgeSentinel.on('dry-run', (e) => notifier.record('dry-run', 'context-wedge', e.sessionName,
|
|
5836
|
+
wedgeSentinel.on('detected', (e) => notifier.record('detected', 'context-wedge', e.sessionName, e.kind));
|
|
5837
|
+
wedgeSentinel.on('recovered', (e) => notifier.record('recovered', 'context-wedge', e.sessionName, `fresh respawn (${e.kind ?? 'unknown'})`));
|
|
5838
|
+
wedgeSentinel.on('dry-run', (e) => notifier.record('dry-run', 'context-wedge', e.sessionName, `would fresh-respawn (${e.kind ?? 'unknown'})`));
|
|
5838
5839
|
wedgeSentinel.on('false-alarm', (e) => notifier.record('false-alarm', 'context-wedge', e.sessionName, 'signature scrolled out of tail'));
|
|
5839
5840
|
wedgeSentinel.on('recovery-error', (e) => notifier.record('recovery-error', 'context-wedge', e.sessionName, e.err instanceof Error ? e.err.message : String(e.err)));
|
|
5840
5841
|
wedgeSentinel.start();
|
|
5841
5842
|
wedgeRecoveryActive = (s) => wedgeSentinel.isRecoveryActive(s);
|
|
5842
5843
|
const mode = autoRecovery.enabled ? (autoRecovery.dryRun ? 'auto-recover dry-run' : 'auto-recover LIVE') : 'detect-only';
|
|
5843
|
-
console.log(pc.green(` ContextWedgeSentinel enabled (thinking-block-400
|
|
5844
|
+
console.log(pc.green(` ContextWedgeSentinel enabled (thinking-block-400 + aup-rejection wedges — ${mode})`));
|
|
5844
5845
|
}
|
|
5845
5846
|
}
|
|
5846
5847
|
// Recompose the zombie-kill veto to include ALL four recovery sentinels now
|