@openclawbrain/cli 0.4.18 → 0.4.19
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.
|
@@ -284,7 +284,7 @@ function buildPersistedStatusSurfaceBridge(summary, context) {
|
|
|
284
284
|
brainRoot: context.brainRoot,
|
|
285
285
|
stateDbPath: context.dbPath,
|
|
286
286
|
persistedKey: TRACED_LEARNING_STATUS_SURFACE_STATE_KEY,
|
|
287
|
-
surfacedFrom: summary.source
|
|
287
|
+
surfacedFrom: summarizeBridgeSource(summary.source)
|
|
288
288
|
}
|
|
289
289
|
});
|
|
290
290
|
}
|
|
@@ -590,7 +590,7 @@ function buildRuntimeMaterializationMetadata(loaded) {
|
|
|
590
590
|
lastInterruptionSummary: loaded.bridge.lastInterruptionSummary,
|
|
591
591
|
fallbackReason: loaded.bridge.fallbackReason,
|
|
592
592
|
routerNoOpReason: loaded.bridge.routerNoOpReason,
|
|
593
|
-
source: loaded.bridge.source
|
|
593
|
+
source: summarizeBridgeSource(loaded.bridge.source)
|
|
594
594
|
};
|
|
595
595
|
}
|
|
596
596
|
function mergeCanonicalStatusBridge(canonicalBridge, runtimeLoaded) {
|
package/package.json
CHANGED