instar 1.3.289 → 1.3.291
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 +2 -0
- package/dist/commands/server.js.map +1 -1
- package/dist/monitoring/PromptGate.d.ts +9 -0
- package/dist/monitoring/PromptGate.d.ts.map +1 -1
- package/dist/monitoring/PromptGate.js +29 -0
- package/dist/monitoring/PromptGate.js.map +1 -1
- package/package.json +1 -1
- package/scripts/instar-dev-precommit.js +31 -10
- package/src/data/builtin-manifest.json +2 -2
- package/upgrades/1.3.290.md +21 -0
- package/upgrades/1.3.291.md +26 -0
- package/upgrades/decisions-per-entry.eli16.md +5 -0
- package/upgrades/side-effects/decisions-per-entry.md +44 -0
- package/upgrades/side-effects/promptgate-auto-dismiss-memory.md +91 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"server.d.ts","sourceRoot":"","sources":["../../src/commands/server.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AA4SH,UAAU,YAAY;IACpB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb;2DACuD;IACvD,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAqxDD,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;AA4SH,UAAU,YAAY;IACpB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb;2DACuD;IACvD,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAqxDD,wBAAsB,WAAW,CAAC,OAAO,EAAE,YAAY,GAAG,OAAO,CAAC,IAAI,CAAC,CAglRtE;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
|
@@ -2945,6 +2945,8 @@ export async function startServer(options) {
|
|
|
2945
2945
|
: 'non-blocking prompt';
|
|
2946
2946
|
console.log(`[PromptGate] Auto-dismissed ${dismissKind} for ${prompt.sessionName} ` +
|
|
2947
2947
|
`(key="${prompt.autoDismissKey}", sent=${dismissed}): ${prompt.summary}`);
|
|
2948
|
+
if (dismissed)
|
|
2949
|
+
detector.onAutoDismissSent(prompt);
|
|
2948
2950
|
// Reset detector state so the next genuine prompt isn't blocked
|
|
2949
2951
|
// by the per-session cooldown.
|
|
2950
2952
|
detector.onInputSent(prompt.sessionName);
|