instar 1.2.73 → 1.2.75
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 -2
- package/dist/commands/server.js.map +1 -1
- package/dist/memory/WorkingMemoryAssembler.d.ts +26 -0
- package/dist/memory/WorkingMemoryAssembler.d.ts.map +1 -1
- package/dist/memory/WorkingMemoryAssembler.js +56 -0
- package/dist/memory/WorkingMemoryAssembler.js.map +1 -1
- package/dist/memory/WorkingSet.d.ts +53 -0
- package/dist/memory/WorkingSet.d.ts.map +1 -0
- package/dist/memory/WorkingSet.js +140 -0
- package/dist/memory/WorkingSet.js.map +1 -0
- package/dist/threadline/ConversationStore.d.ts +53 -25
- package/dist/threadline/ConversationStore.d.ts.map +1 -1
- package/dist/threadline/ConversationStore.js +149 -68
- package/dist/threadline/ConversationStore.js.map +1 -1
- package/dist/threadline/ThreadResumeMap.d.ts +49 -116
- package/dist/threadline/ThreadResumeMap.d.ts.map +1 -1
- package/dist/threadline/ThreadResumeMap.js +194 -252
- package/dist/threadline/ThreadResumeMap.js.map +1 -1
- package/dist/threadline/ThreadlineObservability.d.ts +6 -1
- package/dist/threadline/ThreadlineObservability.d.ts.map +1 -1
- package/dist/threadline/ThreadlineObservability.js +17 -8
- package/dist/threadline/ThreadlineObservability.js.map +1 -1
- package/package.json +1 -1
- package/src/data/builtin-manifest.json +2 -2
- package/upgrades/1.2.74.md +62 -0
- package/upgrades/1.2.75.md +69 -0
- package/upgrades/side-effects/cwa-unify-stores.md +83 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"server.d.ts","sourceRoot":"","sources":["../../src/commands/server.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAyQH,UAAU,YAAY;IACpB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb;2DACuD;IACvD,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAiqDD,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;AAyQH,UAAU,YAAY;IACpB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb;2DACuD;IACvD,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAiqDD,wBAAsB,WAAW,CAAC,OAAO,EAAE,YAAY,GAAG,OAAO,CAAC,IAAI,CAAC,CAs+LtE;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
|
@@ -3863,13 +3863,17 @@ export async function startServer(options) {
|
|
|
3863
3863
|
// Initialize WorkingMemoryAssembler — token-budgeted context assembly for session-start hooks.
|
|
3864
3864
|
// Placed after activitySentinel so episodicMemory can be wired from the sentinel.
|
|
3865
3865
|
// Skipped in minimal-config setups where neither memory system is available.
|
|
3866
|
-
if (semanticMemory || activitySentinel) {
|
|
3866
|
+
if (semanticMemory || activitySentinel || topicIntentStore) {
|
|
3867
3867
|
workingMemory = new WorkingMemoryAssembler({
|
|
3868
3868
|
semanticMemory,
|
|
3869
3869
|
episodicMemory: activitySentinel?.getEpisodicMemory(),
|
|
3870
|
+
// rung 2 — unified read path: topic-intent refs + Playbook manifest items
|
|
3871
|
+
// join the assembled working set (both read-only, degrade-safe).
|
|
3872
|
+
topicIntentStore,
|
|
3873
|
+
stateDir: config.stateDir,
|
|
3870
3874
|
});
|
|
3871
3875
|
const epStatus = activitySentinel ? 'yes' : 'no';
|
|
3872
|
-
console.log(pc.green(` WorkingMemoryAssembler: ready (semantic: ${semanticMemory ? 'yes' : 'no'}, episodic: ${epStatus})`));
|
|
3876
|
+
console.log(pc.green(` WorkingMemoryAssembler: ready (semantic: ${semanticMemory ? 'yes' : 'no'}, episodic: ${epStatus}, topic-intent: ${topicIntentStore ? 'yes' : 'no'})`));
|
|
3873
3877
|
}
|
|
3874
3878
|
// Session Watchdog — auto-remediation for stuck commands
|
|
3875
3879
|
let watchdog;
|