@yeaft/webchat-agent 0.1.617 → 0.1.619

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): task-scoped direct message echo.
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 `task_message` mirror back.
431
- case 'unify_task_message':
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 — task summary history + task affiliation CRUD.
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 'unify_task_crud':
462
+ case 'unify_feature_crud':
463
463
  await handleUnifyTaskCrud(msg);
464
464
  break;
465
465
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yeaft/webchat-agent",
3
- "version": "0.1.617",
3
+ "version": "0.1.619",
4
4
  "description": "Remote agent for Yeaft WebChat — connects worker machines to the central server",
5
5
  "main": "index.js",
6
6
  "type": "module",