@yeaft/webchat-agent 0.1.617 → 0.1.618
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.
|
@@ -425,10 +425,10 @@ export async function handleMessage(msg) {
|
|
|
425
425
|
handleUnifyVpRead(msg);
|
|
426
426
|
break;
|
|
427
427
|
|
|
428
|
-
// task-334h (R6 §Δ28 / §Δ31.6):
|
|
428
|
+
// task-334h (R6 §Δ28 / §Δ31.6): feature-scoped direct message echo.
|
|
429
429
|
// Replaces the withdrawn R3 `unify_task_private_chat`. Agent validates,
|
|
430
|
-
// stamps msgId + ts, and broadcasts the `
|
|
431
|
-
case '
|
|
430
|
+
// stamps msgId + ts, and broadcasts the `feature_message` mirror back.
|
|
431
|
+
case 'unify_feature_message':
|
|
432
432
|
handleUnifyTaskMessage(msg);
|
|
433
433
|
break;
|
|
434
434
|
|
|
@@ -455,11 +455,11 @@ export async function handleMessage(msg) {
|
|
|
455
455
|
handleUnifyMemoryTrace(msg);
|
|
456
456
|
break;
|
|
457
457
|
|
|
458
|
-
// R6 G1a —
|
|
458
|
+
// R6 G1a — feature summary history + feature affiliation CRUD.
|
|
459
459
|
case 'unify_fetch_summary_history':
|
|
460
460
|
await handleUnifyFetchSummaryHistory(msg);
|
|
461
461
|
break;
|
|
462
|
-
case '
|
|
462
|
+
case 'unify_feature_crud':
|
|
463
463
|
await handleUnifyTaskCrud(msg);
|
|
464
464
|
break;
|
|
465
465
|
|