@vellumai/assistant 0.8.2 → 0.8.3

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.
Files changed (231) hide show
  1. package/ARCHITECTURE.md +11 -12
  2. package/docker-entrypoint.sh +13 -1
  3. package/docker-init-apt-root.sh +79 -6
  4. package/openapi.yaml +336 -21
  5. package/package.json +1 -1
  6. package/src/__tests__/agent-loop-exit-reason.test.ts +272 -0
  7. package/src/__tests__/agent-loop-provider-error-recording.test.ts +195 -0
  8. package/src/__tests__/compactor-tail-resolution.test.ts +107 -1
  9. package/src/__tests__/config-get-vision-flag.test.ts +136 -0
  10. package/src/__tests__/config-loader-backfill.test.ts +115 -18
  11. package/src/__tests__/context-token-estimator.test.ts +30 -65
  12. package/src/__tests__/conversation-agent-loop.test.ts +57 -1
  13. package/src/__tests__/conversation-media-retry.test.ts +19 -8
  14. package/src/__tests__/conversation-runtime-assembly.test.ts +26 -4
  15. package/src/__tests__/date-context.test.ts +45 -0
  16. package/src/__tests__/external-plugin-loader.test.ts +91 -19
  17. package/src/__tests__/guardian-action-no-hardcoded-copy.test.ts +0 -1
  18. package/src/__tests__/guardian-dispatch.test.ts +1 -0
  19. package/src/__tests__/heartbeat-service.test.ts +24 -164
  20. package/src/__tests__/helpers/channel-test-adapter.ts +0 -2
  21. package/src/__tests__/host-app-control-proxy.test.ts +241 -0
  22. package/src/__tests__/host-proxy-preactivation.test.ts +200 -13
  23. package/src/__tests__/injector-background-turn.test.ts +153 -0
  24. package/src/__tests__/injector-chain.test.ts +5 -0
  25. package/src/__tests__/lifecycle-memory-v2-seed.test.ts +9 -2
  26. package/src/__tests__/llm-callsite-catalog.test.ts +25 -0
  27. package/src/__tests__/llm-catalog-parity.test.ts +3 -0
  28. package/src/__tests__/llm-request-log-agent-loop-exit-reason.test.ts +116 -0
  29. package/src/__tests__/llm-request-log-error-payload.test.ts +138 -0
  30. package/src/__tests__/llm-request-log-source-clickhouse.test.ts +2 -0
  31. package/src/__tests__/llm-resolver.test.ts +255 -2
  32. package/src/__tests__/managed-profile-guard.test.ts +10 -0
  33. package/src/__tests__/notification-decision-fallback.test.ts +0 -91
  34. package/src/__tests__/notification-decision-strategy.test.ts +14 -31
  35. package/src/__tests__/notification-deep-link.test.ts +15 -0
  36. package/src/__tests__/notification-guardian-path.test.ts +1 -2
  37. package/src/__tests__/notification-platform-adapter.test.ts +5 -4
  38. package/src/__tests__/notification-telegram-adapter.test.ts +1 -0
  39. package/src/__tests__/notification-vellum-adapter.test.ts +113 -0
  40. package/src/__tests__/openai-provider.test.ts +218 -3
  41. package/src/__tests__/openai-responses-cutover-guard.test.ts +3 -3
  42. package/src/__tests__/openrouter-provider-only.test.ts +51 -3
  43. package/src/__tests__/openrouter-token-estimation.test.ts +34 -25
  44. package/src/__tests__/platform-proxy-context.test.ts +6 -1
  45. package/src/__tests__/plugin-tool-contribution.test.ts +3 -3
  46. package/src/__tests__/plugin-types.test.ts +2 -2
  47. package/src/__tests__/provider-catalog-visibility.test.ts +16 -0
  48. package/src/__tests__/provider-platform-proxy-integration.test.ts +27 -25
  49. package/src/__tests__/secret-routes-platform-proxy.test.ts +1 -1
  50. package/src/__tests__/system-prompt.test.ts +6 -73
  51. package/src/__tests__/workspace-migration-087-memory-router-balanced-profile.test.ts +228 -0
  52. package/src/a2a/__tests__/agent-card.test.ts +98 -0
  53. package/src/a2a/__tests__/e2e-a2a-channel.test.ts +597 -0
  54. package/src/a2a/__tests__/protocol-helpers.test.ts +113 -0
  55. package/src/a2a/__tests__/task-store.test.ts +246 -0
  56. package/src/a2a/agent-card.ts +58 -0
  57. package/src/a2a/feature-gate.ts +8 -0
  58. package/src/a2a/protocol-constants.ts +21 -0
  59. package/src/a2a/protocol-errors.ts +50 -0
  60. package/src/a2a/protocol-types.ts +162 -0
  61. package/src/a2a/task-store.ts +168 -0
  62. package/src/agent/loop.ts +167 -18
  63. package/src/channels/config.ts +9 -0
  64. package/src/channels/types.ts +14 -0
  65. package/src/cli/{__tests__ → commands/__tests__}/notifications.test.ts +201 -28
  66. package/src/cli/commands/__tests__/schedules.test.ts +469 -0
  67. package/src/cli/commands/notifications.ts +65 -35
  68. package/src/cli/commands/plugins.ts +67 -0
  69. package/src/cli/commands/schedules.ts +297 -5
  70. package/src/cli/lib/__tests__/search-plugins.test.ts +261 -0
  71. package/src/cli/lib/install-from-github.ts +8 -9
  72. package/src/cli/lib/search-plugins.ts +163 -0
  73. package/src/cli/program.ts +14 -0
  74. package/src/config/assistant-feature-flags.ts +24 -54
  75. package/src/config/bundled-skills/app-builder/SKILL.md +117 -1
  76. package/src/config/bundled-skills/phone-calls/SKILL.md +1 -1
  77. package/src/config/call-site-defaults.ts +105 -0
  78. package/src/config/feature-flag-registry.json +21 -29
  79. package/src/config/llm-resolver.ts +52 -1
  80. package/src/config/schema.ts +2 -0
  81. package/src/config/schemas/__tests__/memory-v2.test.ts +3 -3
  82. package/src/config/schemas/channels.ts +9 -0
  83. package/src/config/schemas/conversations.ts +10 -0
  84. package/src/config/schemas/heartbeat.ts +14 -0
  85. package/src/config/schemas/llm.ts +1 -3
  86. package/src/config/schemas/memory-retrospective.ts +1 -1
  87. package/src/config/schemas/memory-v2.ts +4 -4
  88. package/src/config/schemas/memory.ts +3 -1
  89. package/src/config/seed-inference-profiles.ts +99 -29
  90. package/src/context/compactor.ts +72 -12
  91. package/src/context/token-estimator.ts +32 -34
  92. package/src/daemon/__tests__/conversation-lifecycle-auto-analyze.test.ts +3 -22
  93. package/src/daemon/conversation-agent-loop-handlers.ts +78 -0
  94. package/src/daemon/conversation-agent-loop.ts +29 -2
  95. package/src/daemon/conversation-runtime-assembly.ts +9 -0
  96. package/src/daemon/conversation.ts +0 -7
  97. package/src/daemon/date-context.ts +40 -0
  98. package/src/daemon/guardian-action-generators.ts +1 -125
  99. package/src/daemon/handlers/__tests__/config-a2a-complete.test.ts +248 -0
  100. package/src/daemon/handlers/__tests__/config-a2a-invite.test.ts +154 -0
  101. package/src/daemon/handlers/__tests__/config-a2a-redeem.test.ts +133 -0
  102. package/src/daemon/handlers/__tests__/config-a2a.test.ts +95 -0
  103. package/src/daemon/handlers/config-a2a.ts +289 -0
  104. package/src/daemon/handlers/conversations.ts +1 -0
  105. package/src/daemon/host-app-control-proxy.ts +69 -18
  106. package/src/daemon/host-proxy-preactivation.ts +85 -18
  107. package/src/daemon/lifecycle.ts +49 -61
  108. package/src/daemon/memory-v2-startup.ts +49 -13
  109. package/src/daemon/message-types/notifications.ts +21 -0
  110. package/src/daemon/pkb-reminder-builder.test.ts +10 -53
  111. package/src/daemon/pkb-reminder-builder.ts +4 -19
  112. package/src/daemon/process-message.ts +3 -0
  113. package/src/daemon/skill-memory-refresh.ts +5 -1
  114. package/src/daemon/wake-target-adapter.ts +2 -0
  115. package/src/export/__tests__/transcript-formatter.test.ts +121 -0
  116. package/src/export/transcript-formatter.ts +54 -20
  117. package/src/heartbeat/__tests__/heartbeat-service.test.ts +44 -0
  118. package/src/heartbeat/heartbeat-service.ts +34 -191
  119. package/src/home/__tests__/feed-types.test.ts +40 -0
  120. package/src/home/feed-types.ts +14 -2
  121. package/src/ipc/cli-client.ts +147 -45
  122. package/src/memory/__tests__/conversation-queries.test.ts +220 -0
  123. package/src/memory/__tests__/memory-retrospective-enqueue.test.ts +2 -50
  124. package/src/memory/__tests__/memory-retrospective-job.test.ts +87 -4
  125. package/src/memory/conversation-queries.ts +87 -1
  126. package/src/memory/conversation-title-service.ts +26 -4
  127. package/src/memory/db-init.ts +6 -0
  128. package/src/memory/graph/__tests__/conversation-graph-memory-v2-routing.test.ts +84 -3
  129. package/src/memory/graph/conversation-graph-memory.ts +18 -6
  130. package/src/memory/graph/tools.ts +6 -37
  131. package/src/memory/invite-store.ts +53 -0
  132. package/src/memory/llm-request-log-source-clickhouse.ts +7 -2
  133. package/src/memory/llm-request-log-store.ts +92 -1
  134. package/src/memory/memory-retrospective-enqueue.ts +1 -20
  135. package/src/memory/memory-retrospective-job.ts +33 -6
  136. package/src/memory/migrations/250-provider-connection-base-url-and-models.ts +28 -0
  137. package/src/memory/migrations/251-a2a-tasks.ts +49 -0
  138. package/src/memory/migrations/252-llm-request-log-agent-loop-exit-reason.ts +32 -0
  139. package/src/memory/migrations/index.ts +3 -0
  140. package/src/memory/migrations/registry.ts +8 -0
  141. package/src/memory/schema/a2a.ts +15 -0
  142. package/src/memory/schema/index.ts +1 -0
  143. package/src/memory/schema/inference.ts +2 -0
  144. package/src/memory/schema/infrastructure.ts +1 -0
  145. package/src/memory/v2/__tests__/activation-store.test.ts +25 -23
  146. package/src/memory/v2/__tests__/cli-command-store.test.ts +404 -0
  147. package/src/memory/v2/__tests__/frontmatter-sweep.test.ts +25 -4
  148. package/src/memory/v2/__tests__/injection.test.ts +190 -3
  149. package/src/memory/v2/__tests__/static-context.test.ts +12 -1
  150. package/src/memory/v2/activation-store.ts +14 -16
  151. package/src/memory/v2/cli-command-content.ts +19 -0
  152. package/src/memory/v2/cli-command-store.ts +304 -0
  153. package/src/memory/v2/frontmatter-sweep.ts +7 -1
  154. package/src/memory/v2/injection.ts +49 -20
  155. package/src/memory/v2/page-index.ts +38 -13
  156. package/src/memory/v2/static-context.ts +4 -4
  157. package/src/memory/v2/types.ts +23 -0
  158. package/src/messaging/providers/a2a/__tests__/deliver.test.ts +274 -0
  159. package/src/messaging/providers/a2a/deliver.ts +156 -0
  160. package/src/messaging/providers/gmail/client.ts +9 -2
  161. package/src/messaging/providers/index.ts +11 -2
  162. package/src/notifications/__tests__/broadcaster.test.ts +203 -0
  163. package/src/notifications/__tests__/decision-engine.test.ts +283 -0
  164. package/src/notifications/__tests__/deterministic-checks.test.ts +286 -0
  165. package/src/notifications/__tests__/emit-signal-home-feed.test.ts +1 -0
  166. package/src/notifications/__tests__/home-feed-side-effect.test.ts +430 -7
  167. package/src/notifications/adapters/macos.ts +12 -2
  168. package/src/notifications/broadcaster.ts +29 -4
  169. package/src/notifications/copy-composer.ts +17 -64
  170. package/src/notifications/decision-engine.ts +111 -44
  171. package/src/notifications/deterministic-checks.ts +96 -0
  172. package/src/notifications/emit-signal.ts +1 -0
  173. package/src/notifications/home-feed-side-effect.ts +85 -6
  174. package/src/notifications/signal.ts +0 -4
  175. package/src/notifications/types.ts +8 -0
  176. package/src/oauth/platform-connection.test.ts +43 -3
  177. package/src/oauth/platform-connection.ts +13 -4
  178. package/src/plugins/defaults/injectors.ts +38 -19
  179. package/src/plugins/external-plugin-loader.ts +82 -10
  180. package/src/plugins/types.ts +16 -7
  181. package/src/prompts/__tests__/system-prompt.test.ts +6 -51
  182. package/src/prompts/__tests__/task-progress-hint-section.test.ts +4 -8
  183. package/src/prompts/system-prompt.ts +0 -8
  184. package/src/prompts/templates/BOOTSTRAP.md +5 -5
  185. package/src/prompts/templates/system-sections.ts +0 -9
  186. package/src/providers/__tests__/inference.test.ts +2 -0
  187. package/src/providers/call-site-routing.ts +24 -6
  188. package/src/providers/connection-resolution.ts +63 -13
  189. package/src/providers/inference/__tests__/adapter-factory-openai-compatible.test.ts +74 -0
  190. package/src/providers/inference/__tests__/connections-openai-compatible.test.ts +175 -0
  191. package/src/providers/inference/__tests__/connections-status-label.test.ts +15 -0
  192. package/src/providers/inference/adapter-factory.ts +9 -20
  193. package/src/providers/inference/auth.ts +12 -0
  194. package/src/providers/inference/backfill.ts +14 -1
  195. package/src/providers/inference/connections.ts +85 -5
  196. package/src/providers/inference/resolve-auth.ts +2 -0
  197. package/src/providers/model-catalog.ts +199 -244
  198. package/src/providers/model-intents.ts +3 -3
  199. package/src/providers/openai/__tests__/chat-completions-provider-reasoning.test.ts +235 -0
  200. package/src/providers/openai/chat-completions-provider.ts +159 -6
  201. package/src/providers/openrouter/client.ts +42 -4
  202. package/src/providers/platform-proxy/constants.ts +3 -4
  203. package/src/providers/provider-catalog-visibility.ts +3 -1
  204. package/src/providers/provider-send-message.ts +27 -12
  205. package/src/providers/registry.ts +30 -1
  206. package/src/runtime/agent-wake.ts +61 -1
  207. package/src/runtime/auth/route-policy.ts +13 -0
  208. package/src/runtime/http-server.ts +7 -16
  209. package/src/runtime/http-types.ts +0 -47
  210. package/src/runtime/routes/__tests__/consolidation-routes.test.ts +258 -0
  211. package/src/runtime/routes/__tests__/conversation-query-routes.test.ts +66 -4
  212. package/src/runtime/routes/__tests__/inference-provider-connection-routes.test.ts +275 -44
  213. package/src/runtime/routes/__tests__/llm-call-sites-routes.test.ts +12 -0
  214. package/src/runtime/routes/channel-availability-routes.ts +5 -0
  215. package/src/runtime/routes/consolidation-routes.ts +100 -0
  216. package/src/runtime/routes/conversation-query-routes.ts +70 -11
  217. package/src/runtime/routes/conversation-routes.ts +7 -0
  218. package/src/runtime/routes/index.ts +2 -0
  219. package/src/runtime/routes/inference-provider-connection-routes.ts +134 -1
  220. package/src/runtime/routes/integrations/a2a.ts +235 -0
  221. package/src/runtime/routes/llm-call-sites-routes.ts +11 -1
  222. package/src/runtime/routes/subagents-routes.ts +41 -0
  223. package/src/subagent/manager.ts +2 -0
  224. package/src/tools/memory/register.ts +1 -9
  225. package/src/tools/registry.ts +2 -2
  226. package/src/tools/types.ts +37 -2
  227. package/src/workspace/migrations/087-memory-router-balanced-profile.ts +91 -0
  228. package/src/workspace/migrations/registry.ts +2 -0
  229. package/src/__tests__/guardian-action-conversation-turn.test.ts +0 -441
  230. package/src/memory/graph/__tests__/remember-description.test.ts +0 -55
  231. package/src/runtime/guardian-action-conversation-turn.ts +0 -99
@@ -32,51 +32,6 @@ export function nonEmpty(value: string | undefined): string | undefined {
32
32
  return trimmed.length > 0 ? trimmed : undefined;
33
33
  }
34
34
 
35
- export function looksLikeIntermediaryInstruction(text: string): boolean {
36
- const normalized = text.replace(/\s+/g, " ").trim();
37
- const intermediaryAction =
38
- "(?:tell|telling|ask|asking|remind|reminding|nudge|nudging|prompt|prompting|notify|notifying|encourage|encouraging|prime|priming|brief|briefing|coach|coaching)";
39
- const target = "(?:the\\s+)?(?:guardian|recipient|user)";
40
- return (
41
- /\b(?:assistant|agent|system|model|watcher)\s+(?:should|needs?\s+to|must|can|could)\b/i.test(
42
- normalized,
43
- ) ||
44
- new RegExp(
45
- `\\b(?:consider|try|please)\\s+${intermediaryAction}\\s+${target}\\b`,
46
- "i",
47
- ).test(normalized) ||
48
- new RegExp(
49
- `\\b${intermediaryAction}\\s+${target}\\s+(?:to|that|about|with)\\b`,
50
- "i",
51
- ).test(normalized) ||
52
- new RegExp(
53
- `\\b${target}\\s+(?:should|needs?\\s+to|must|might\\s+want\\s+to)\\b`,
54
- "i",
55
- ).test(normalized) ||
56
- new RegExp(`\\b(?:for|to)\\s+${target}\\s+to\\b`, "i").test(normalized)
57
- );
58
- }
59
-
60
- function buildHeartbeatAlertCopy(
61
- payload: Record<string, unknown>,
62
- ): RenderedChannelCopy {
63
- const summary = str(
64
- payload.summary,
65
- str(payload.body, "Your assistant found something worth your attention."),
66
- ).trim();
67
- const safePopupBody = looksLikeIntermediaryInstruction(summary)
68
- ? "I found something worth your attention in a heartbeat check. Open the conversation for details."
69
- : summary;
70
-
71
- return {
72
- title: str(payload.title, "Heartbeat Alert"),
73
- body: safePopupBody,
74
- deliveryText: safePopupBody,
75
- conversationTitle: str(payload.conversationTitle, "Heartbeat"),
76
- conversationSeedMessage: summary,
77
- };
78
- }
79
-
80
35
  // ── Access-request copy contract ─────────────────────────────────────────────
81
36
  //
82
37
  // Deterministic helpers for building guardian-facing access-request copy.
@@ -550,8 +505,6 @@ const TEMPLATES: Partial<Record<NotificationSourceEventName, CopyTemplate>> = {
550
505
  body: str(payload.body, "A watcher event requires your attention"),
551
506
  }),
552
507
 
553
- "heartbeat.alert": buildHeartbeatAlertCopy,
554
-
555
508
  "tool_confirmation.required_action": (payload) => ({
556
509
  title: "Tool Confirmation",
557
510
  body: str(payload.toolName, "A tool") + " requires your confirmation",
@@ -605,11 +558,11 @@ export function composeFallbackCopy(
605
558
 
606
559
  const baseCopy: RenderedChannelCopy = template
607
560
  ? template(signal.contextPayload)
608
- : buildGenericCopy(signal);
561
+ : buildGenericCopy();
609
562
 
610
563
  const result: Partial<Record<NotificationChannel, RenderedChannelCopy>> = {};
611
564
  for (const ch of channels) {
612
- result[ch] = applyChannelDefaults(ch, baseCopy, signal);
565
+ result[ch] = applyChannelDefaults(ch, baseCopy);
613
566
  }
614
567
  return result;
615
568
  }
@@ -617,12 +570,11 @@ export function composeFallbackCopy(
617
570
  function applyChannelDefaults(
618
571
  channel: NotificationChannel,
619
572
  baseCopy: RenderedChannelCopy,
620
- signal: NotificationSignal,
621
573
  ): RenderedChannelCopy {
622
574
  const copy: RenderedChannelCopy = { ...baseCopy };
623
575
 
624
576
  if (channel === "telegram") {
625
- copy.deliveryText = buildChatSurfaceFallbackDeliveryText(baseCopy, signal);
577
+ copy.deliveryText = buildChatSurfaceFallbackDeliveryText(baseCopy);
626
578
  }
627
579
 
628
580
  return copy;
@@ -630,7 +582,6 @@ function applyChannelDefaults(
630
582
 
631
583
  function buildChatSurfaceFallbackDeliveryText(
632
584
  baseCopy: RenderedChannelCopy,
633
- signal: NotificationSignal,
634
585
  ): string {
635
586
  const explicit = nonEmpty(baseCopy.deliveryText);
636
587
  if (explicit) return explicit;
@@ -641,23 +592,25 @@ function buildChatSurfaceFallbackDeliveryText(
641
592
  const title = nonEmpty(baseCopy.title);
642
593
  if (title) return title;
643
594
 
644
- return signal.sourceEventName.replace(/[._]/g, " ");
595
+ // No usable text: return empty string. The broadcaster's empty-body skip in
596
+ // `broadcaster.ts` suppresses fallback-derived empty bodies; the
597
+ // deterministic `checkRenderedCopyQuality` (see deterministic-checks.ts)
598
+ // covers the same case when the empty body originates in
599
+ // `decision.renderedCopy`.
600
+ return "";
645
601
  }
646
602
 
647
603
  /**
648
- * Build generic copy when no template matches. Uses the signal's
649
- * sourceEventName and attention hints to produce something reasonable.
604
+ * Build generic copy when no template matches. Returns an empty body so the
605
+ * notification is suppressed rather than rendering an event-name placeholder.
606
+ * The broadcaster's empty-body skip in `broadcaster.ts` catches fallback-derived
607
+ * empty bodies; the deterministic `checkRenderedCopyQuality` (see
608
+ * deterministic-checks.ts) covers the same case when the empty body originates
609
+ * in `decision.renderedCopy`.
650
610
  */
651
- function buildGenericCopy(signal: NotificationSignal): RenderedChannelCopy {
652
- const humanName = signal.sourceEventName.replace(/[._]/g, " ");
653
- const urgencyPrefix =
654
- signal.attentionHints.urgency === "high" ? "Urgent: " : "";
655
- const actionSuffix = signal.attentionHints.requiresAction
656
- ? " — action required"
657
- : "";
658
-
611
+ function buildGenericCopy(): RenderedChannelCopy {
659
612
  return {
660
613
  title: "Notification",
661
- body: `${urgencyPrefix}${humanName}${actionSuffix}`,
614
+ body: "",
662
615
  };
663
616
  }
@@ -35,7 +35,6 @@ import {
35
35
  composeFallbackCopy,
36
36
  hasAccessRequestInstructions,
37
37
  hasInviteFlowDirective,
38
- looksLikeIntermediaryInstruction,
39
38
  } from "./copy-composer.js";
40
39
  import { createDecision } from "./decisions-store.js";
41
40
  import {
@@ -58,6 +57,21 @@ const log = getLogger("notification-decision-engine");
58
57
  const DECISION_TIMEOUT_MS = 15_000;
59
58
  const PROMPT_VERSION = "v4";
60
59
 
60
+ /**
61
+ * Derive a short notification title from a message body. Used when an
62
+ * assistant_tool-sourced signal supplies `requestedMessage` without an
63
+ * explicit `requestedTitle`: trims to the first sentence terminator when
64
+ * present, then caps the result at 60 characters with an ellipsis.
65
+ */
66
+ function deriveTitle(body: string): string {
67
+ const firstSentenceEnd = body.search(/[.!?](\s|$)/);
68
+ const candidate =
69
+ firstSentenceEnd > 0 ? body.slice(0, firstSentenceEnd + 1) : body;
70
+ return candidate.length > 60
71
+ ? candidate.slice(0, 60).trim() + "…"
72
+ : candidate.trim();
73
+ }
74
+
61
75
  /**
62
76
  * Maximum character budget for identity context injected into the notification
63
77
  * decision prompt. We truncate to prevent oversized prompts when SOUL.md /
@@ -668,47 +682,6 @@ function enforceAccessRequestInstructions(
668
682
  };
669
683
  }
670
684
 
671
- function enforceHeartbeatAlertCopy(
672
- decision: NotificationDecision,
673
- signal: NotificationSignal,
674
- ): NotificationDecision {
675
- if (signal.sourceEventName !== "heartbeat.alert") return decision;
676
- if (!decision.shouldNotify || decision.selectedChannels.length === 0)
677
- return decision;
678
-
679
- const fallbackCopy = composeFallbackCopy(signal, decision.selectedChannels);
680
- const nextCopy: Partial<Record<NotificationChannel, RenderedChannelCopy>> = {
681
- ...decision.renderedCopy,
682
- };
683
-
684
- for (const channel of decision.selectedChannels) {
685
- const currentCopy = nextCopy[channel];
686
- if (
687
- currentCopy &&
688
- !heartbeatCopyLooksLikeIntermediaryInstruction(currentCopy)
689
- ) {
690
- continue;
691
- }
692
- const safeCopy = fallbackCopy[channel];
693
- if (!safeCopy) continue;
694
- nextCopy[channel] = safeCopy;
695
- }
696
-
697
- return {
698
- ...decision,
699
- renderedCopy: nextCopy,
700
- };
701
- }
702
-
703
- function heartbeatCopyLooksLikeIntermediaryInstruction(
704
- copy: RenderedChannelCopy,
705
- ): boolean {
706
- return [copy.title, copy.body, copy.deliveryText].some(
707
- (value) =>
708
- typeof value === "string" && looksLikeIntermediaryInstruction(value),
709
- );
710
- }
711
-
712
685
  function ensureAccessRequestInstructionsInCopy(
713
686
  copy: RenderedChannelCopy,
714
687
  requestCode: string,
@@ -791,6 +764,102 @@ export async function evaluateSignal(
791
764
  );
792
765
  }
793
766
 
767
+ // Assistant-tool pass-through: when a producer hands us a verbatim
768
+ // message body via contextPayload.requestedMessage, skip the LLM
769
+ // classifier entirely. The producer has already done the routing and
770
+ // copy decisions — we just enforce the standard post-decision guards
771
+ // and persist the result.
772
+ if (
773
+ signal.sourceChannel === "assistant_tool" &&
774
+ typeof signal.contextPayload === "object" &&
775
+ signal.contextPayload != null &&
776
+ typeof (signal.contextPayload as Record<string, unknown>)
777
+ .requestedMessage === "string" &&
778
+ (
779
+ (signal.contextPayload as Record<string, unknown>)
780
+ .requestedMessage as string
781
+ ).trim().length > 0
782
+ ) {
783
+ const payload = signal.contextPayload as Record<string, unknown>;
784
+ const body = (payload.requestedMessage as string).trim();
785
+ const title =
786
+ typeof payload.requestedTitle === "string" &&
787
+ payload.requestedTitle.trim().length > 0
788
+ ? (payload.requestedTitle as string).trim()
789
+ : deriveTitle(body);
790
+ const isUrgent =
791
+ signal.attentionHints.urgency === "critical" ||
792
+ signal.attentionHints.urgency === "high";
793
+ const defaultChannels: NotificationChannel[] = isUrgent
794
+ ? [...availableChannels]
795
+ : availableChannels.includes("vellum")
796
+ ? ["vellum" as NotificationChannel]
797
+ : [];
798
+ // Honor `--preferred-channels` as ADDITIVE push targets on top of
799
+ // the default channel set. The notification center (vellum) is the
800
+ // always-on canonical inbox; preferred channels add push surfaces
801
+ // on top, they never replace vellum. Disconnected channels are
802
+ // filtered out so we never try to deliver on something unavailable.
803
+ const preferredChannelsRaw = Array.isArray(payload.preferredChannels)
804
+ ? (payload.preferredChannels as unknown[]).filter(
805
+ (c): c is string => typeof c === "string",
806
+ )
807
+ : undefined;
808
+ let selectedChannels = defaultChannels;
809
+ if (preferredChannelsRaw && preferredChannelsRaw.length > 0) {
810
+ const availableSet = new Set<string>(availableChannels);
811
+ const preferredAvailable = preferredChannelsRaw.filter((c) =>
812
+ availableSet.has(c),
813
+ ) as NotificationChannel[];
814
+ if (preferredAvailable.length > 0) {
815
+ selectedChannels = Array.from(
816
+ new Set<NotificationChannel>([
817
+ ...selectedChannels,
818
+ ...preferredAvailable,
819
+ ]),
820
+ );
821
+ }
822
+ }
823
+ // Thread `--deep-link-metadata` through when supplied as a plain object.
824
+ const deepLinkTarget =
825
+ payload.deepLinkMetadata != null &&
826
+ typeof payload.deepLinkMetadata === "object" &&
827
+ !Array.isArray(payload.deepLinkMetadata)
828
+ ? (payload.deepLinkMetadata as Record<string, unknown>)
829
+ : undefined;
830
+ // Populate renderedCopy and conversationActions for every available
831
+ // channel — not just `selectedChannels`. Downstream guards
832
+ // (routing-intent expansion in `enforceRoutingIntent`, urgency-forced
833
+ // vellum prepending in `emit-signal`) may widen `selectedChannels`
834
+ // beyond what we picked here. Pre-seeding copy for all channels ensures
835
+ // the verbatim message survives those expansions rather than falling
836
+ // back to an empty `composeFallbackCopy` body.
837
+ let decision: NotificationDecision = {
838
+ shouldNotify: selectedChannels.length > 0,
839
+ selectedChannels,
840
+ reasoningSummary: "assistant_tool pass-through",
841
+ renderedCopy: Object.fromEntries(
842
+ availableChannels.map((ch) => [ch, { title, body }]),
843
+ ) as NotificationDecision["renderedCopy"],
844
+ conversationActions: Object.fromEntries(
845
+ availableChannels.map((ch) => [ch, { action: "start_new" as const }]),
846
+ ) as NotificationDecision["conversationActions"],
847
+ dedupeKey: signal.signalId,
848
+ confidence: 1.0,
849
+ fallbackUsed: false,
850
+ ...(deepLinkTarget ? { deepLinkTarget } : {}),
851
+ };
852
+ decision = enforceGuardianRequestCode(decision, signal);
853
+ decision = enforceAccessRequestInstructions(decision, signal);
854
+ decision = enforceGuardianCallConversationAffinity(decision, signal);
855
+ decision = enforceConversationAffinity(
856
+ decision,
857
+ signal.conversationAffinityHint,
858
+ );
859
+ decision.persistedDecisionId = persistDecision(signal, decision);
860
+ return decision;
861
+ }
862
+
794
863
  const provider = await getConfiguredProvider("notificationDecision");
795
864
  if (!provider) {
796
865
  log.warn(
@@ -799,7 +868,6 @@ export async function evaluateSignal(
799
868
  let decision = buildFallbackDecision(signal, availableChannels);
800
869
  decision = enforceGuardianRequestCode(decision, signal);
801
870
  decision = enforceAccessRequestInstructions(decision, signal);
802
- decision = enforceHeartbeatAlertCopy(decision, signal);
803
871
  decision = enforceGuardianCallConversationAffinity(decision, signal);
804
872
  decision = enforceConversationAffinity(
805
873
  decision,
@@ -829,7 +897,6 @@ export async function evaluateSignal(
829
897
 
830
898
  decision = enforceGuardianRequestCode(decision, signal);
831
899
  decision = enforceAccessRequestInstructions(decision, signal);
832
- decision = enforceHeartbeatAlertCopy(decision, signal);
833
900
  decision = enforceGuardianCallConversationAffinity(decision, signal);
834
901
  decision = enforceConversationAffinity(
835
902
  decision,
@@ -12,6 +12,7 @@ import { and, eq } from "drizzle-orm";
12
12
  import { getDb } from "../memory/db-connection.js";
13
13
  import { notificationEvents } from "../memory/schema.js";
14
14
  import { getLogger } from "../util/logger.js";
15
+ import { composeFallbackCopy } from "./copy-composer.js";
15
16
  import type { NotificationSignal } from "./signal.js";
16
17
  import type { NotificationChannel, NotificationDecision } from "./types.js";
17
18
 
@@ -88,6 +89,16 @@ export async function runDeterministicChecks(
88
89
  return dedupeCheck;
89
90
  }
90
91
 
92
+ // Check 5: Rendered copy quality (fail-closed)
93
+ const copyCheck = checkRenderedCopyQuality(signal, decision);
94
+ if (!copyCheck.passed) {
95
+ log.info(
96
+ { signalId: signal.signalId, reason: copyCheck.reason },
97
+ "Deterministic check failed: rendered copy quality",
98
+ );
99
+ return copyCheck;
100
+ }
101
+
91
102
  return { passed: true };
92
103
  }
93
104
 
@@ -232,3 +243,88 @@ function checkDedupe(
232
243
 
233
244
  return { passed: true };
234
245
  }
246
+
247
+ /**
248
+ * Fail-closed check that the rendered copy is real text and not an
249
+ * accidental fallback leak (empty body, or body that is just the raw
250
+ * source event name like "user.send_notification").
251
+ *
252
+ * Only validates channels that the decision engine actually emitted
253
+ * copy for. Channels appended after the decision (urgency-forced
254
+ * `vellum` prepend, `enforceRoutingIntent` expansion) have no entry
255
+ * in `renderedCopy` and are left for the broadcaster's
256
+ * `composeFallbackCopy` rescue at delivery time.
257
+ *
258
+ * If `renderedCopy` is empty for every selected channel, the
259
+ * broadcaster's fallback must produce a usable body — otherwise the
260
+ * signal would be silently dropped at delivery (broadcaster skips
261
+ * empty-body channels, `dispatchDecision` reports 0/N sent). In that
262
+ * case, require `composeFallbackCopy` to yield a non-empty body for
263
+ * at least one selected channel; otherwise fail-closed.
264
+ *
265
+ * The event-name-match branch is skipped for `assistant_tool`
266
+ * pass-through decisions because the producer supplied the body
267
+ * verbatim — a coincidental match with the event name is the user's
268
+ * intent, not a fallback leak.
269
+ */
270
+ function checkRenderedCopyQuality(
271
+ signal: NotificationSignal,
272
+ decision: NotificationDecision,
273
+ ): CheckResult {
274
+ if (!decision.shouldNotify) {
275
+ return { passed: true };
276
+ }
277
+
278
+ const isAssistantToolPassthrough =
279
+ decision.reasoningSummary === "assistant_tool pass-through";
280
+ const normalizedEventName = signal.sourceEventName
281
+ .replace(/[._]/g, " ")
282
+ .toLowerCase()
283
+ .trim();
284
+ const rawEventName = signal.sourceEventName.toLowerCase();
285
+
286
+ let anyChannelHasCopy = false;
287
+ for (const channel of decision.selectedChannels) {
288
+ const copy = decision.renderedCopy[channel];
289
+ if (!copy) {
290
+ continue;
291
+ }
292
+ anyChannelHasCopy = true;
293
+ const trimmedBody = copy.body.trim();
294
+ if (trimmedBody.length === 0) {
295
+ return {
296
+ passed: false,
297
+ reason: "rendered copy body is empty",
298
+ };
299
+ }
300
+ if (isAssistantToolPassthrough) {
301
+ continue;
302
+ }
303
+ const normalizedBody = trimmedBody.toLowerCase();
304
+ if (
305
+ normalizedBody === normalizedEventName ||
306
+ normalizedBody === rawEventName
307
+ ) {
308
+ return {
309
+ passed: false,
310
+ reason: "rendered copy body is the source event name (fallback leak)",
311
+ };
312
+ }
313
+ }
314
+
315
+ if (!anyChannelHasCopy && decision.selectedChannels.length > 0) {
316
+ const fallback = composeFallbackCopy(signal, decision.selectedChannels);
317
+ const fallbackUsable = decision.selectedChannels.some(
318
+ (ch) => (fallback[ch]?.body ?? "").trim().length > 0,
319
+ );
320
+ if (!fallbackUsable) {
321
+ return {
322
+ passed: false,
323
+ reason:
324
+ "rendered copy missing for all selected channels and fallback body is empty (would silently drop)",
325
+ };
326
+ }
327
+ }
328
+
329
+ return { passed: true };
330
+ }
@@ -88,6 +88,7 @@ function getBroadcaster(): NotificationBroadcaster {
88
88
  targetGuardianPrincipalId: info.targetGuardianPrincipalId,
89
89
  groupId: info.groupId,
90
90
  source: info.source,
91
+ silent: info.silent,
91
92
  });
92
93
  log.info(
93
94
  {
@@ -25,6 +25,7 @@ import type { NotificationSignal } from "./signal.js";
25
25
  import type {
26
26
  NotificationDecision,
27
27
  NotificationDeliveryResult,
28
+ RenderedChannelCopy,
28
29
  } from "./types.js";
29
30
 
30
31
  const log = getLogger("home-feed-side-effect");
@@ -51,9 +52,30 @@ export async function writeHomeFeedItemForSignal(
51
52
  ): Promise<FeedItem | null> {
52
53
  if (!shouldMirrorToHomeFeed(signal)) return null;
53
54
 
54
- const renderedCopy = decision.renderedCopy.vellum;
55
- const payloadTitle = readPayloadString(signal.contextPayload, "title");
56
- const payloadBody = readPayloadString(signal.contextPayload, "body");
55
+ const renderedCopy =
56
+ decision.renderedCopy.vellum ??
57
+ firstSelectedRenderedCopy(decision.renderedCopy, decision.selectedChannels);
58
+ const payloadTitle =
59
+ readPayloadString(signal.contextPayload, "title") ??
60
+ readPayloadString(signal.contextPayload, "requestedTitle");
61
+ const payloadBody =
62
+ readPayloadString(signal.contextPayload, "body") ??
63
+ readPayloadString(signal.contextPayload, "requestedMessage");
64
+
65
+ // Source the title from the payload only. The LLM's `renderedCopy.title`
66
+ // often echoes the body when no explicit title was passed, which stutters
67
+ // against `summary` in the row. Leave undefined when absent; renderers
68
+ // fall back to `summary`.
69
+ const resolvedTitle = payloadTitle?.trim() || undefined;
70
+ const resolvedSummary =
71
+ renderedCopy?.body?.trim() || payloadBody?.trim() || "";
72
+ if (!resolvedSummary) {
73
+ log.warn(
74
+ { signalId: signal.signalId, sourceEventName: signal.sourceEventName },
75
+ "Home-feed write skipped: no summary available (would have fallen back to event name)",
76
+ );
77
+ return null;
78
+ }
57
79
 
58
80
  const conversationId = deliveryResults.find(
59
81
  (r) => r.channel === "vellum",
@@ -76,12 +98,14 @@ export async function writeHomeFeedItemForSignal(
76
98
  id: `notif:${signal.signalId}`,
77
99
  type: "notification",
78
100
  priority: 50,
79
- title: renderedCopy?.title ?? payloadTitle ?? signal.sourceEventName,
80
- summary: renderedCopy?.body ?? payloadBody ?? signal.sourceEventName,
101
+ ...(resolvedTitle ? { title: resolvedTitle } : {}),
102
+ summary: resolvedSummary,
81
103
  timestamp: now,
82
104
  createdAt: now,
83
105
  status: "new",
84
106
  category,
107
+ noteworthy: deriveNoteworthy(signal),
108
+ fromAssistant: signal.sourceChannel === "assistant_tool",
85
109
  ...(urgency ? { urgency } : {}),
86
110
  ...(conversationId ? { conversationId } : {}),
87
111
  ...(panelKind ? { detailPanel: { kind: panelKind } } : {}),
@@ -108,7 +132,6 @@ const EVENT_CATEGORY_MAP: Record<string, FeedItemCategory> = {
108
132
  "credential.health_alert": "security",
109
133
  "activity.failed": "background",
110
134
  "activity.complete": "background",
111
- "heartbeat.alert": "system",
112
135
  "watcher.notification": "system",
113
136
  "schedule.notify": "scheduling",
114
137
  "guardian.question": "security",
@@ -146,8 +169,17 @@ function deriveDetailPanelKind(
146
169
  * `sourceContextId` is best-effort — it may not be a conversation id
147
170
  * (e.g. scheduler job id, watcher event id), so a lookup failure
148
171
  * falls through to "not a background conversation" rather than throwing.
172
+ *
173
+ * `assistant_tool` is the source channel used by the `notifications send`
174
+ * skill (and by background-job failure emits). These signals represent
175
+ * the assistant actively choosing to share, so we mirror them into the
176
+ * home feed without requiring a background-typed conversation or the
177
+ * `isAsyncBackground` hint — the documented (SKILL.md) CLI surface
178
+ * intentionally does not expose either; internal call sites that still set
179
+ * the hint keep working unchanged.
149
180
  */
150
181
  function shouldMirrorToHomeFeed(signal: NotificationSignal): boolean {
182
+ if (signal.sourceChannel === "assistant_tool") return true;
151
183
  if (signal.attentionHints.isAsyncBackground) return true;
152
184
  if (!signal.sourceContextId) return false;
153
185
  try {
@@ -163,3 +195,50 @@ function readPayloadString(payload: unknown, key: string): string | undefined {
163
195
  const value = (payload as Record<string, unknown>)[key];
164
196
  return typeof value === "string" ? value : undefined;
165
197
  }
198
+
199
+ /**
200
+ * Routing-intent enforcement can prune `selectedChannels` without also
201
+ * pruning `renderedCopy`, so iterating `renderedCopy` directly risks
202
+ * surfacing copy for a channel that was never delivered. Walk
203
+ * `selectedChannels` in order instead so the channel that actually shipped
204
+ * wins.
205
+ */
206
+ function firstSelectedRenderedCopy(
207
+ renderedCopy: NotificationDecision["renderedCopy"],
208
+ selectedChannels: NotificationDecision["selectedChannels"],
209
+ ): RenderedChannelCopy | undefined {
210
+ for (const channel of selectedChannels) {
211
+ const copy = renderedCopy[channel];
212
+ if (copy && (copy.title?.trim() || copy.body?.trim())) return copy;
213
+ }
214
+ return undefined;
215
+ }
216
+
217
+ // ── Noteworthy derivation ─────────────────────────────────────────────
218
+ //
219
+ // Clients split the feed into inbox-style (noteworthy) and activity-style
220
+ // (routine) surfaces. Assistant-initiated shares and a small allow-list of
221
+ // high-importance system events land in the inbox; routine background
222
+ // signals stay in activity.
223
+
224
+ const NOTEWORTHY_EVENT_NAMES: ReadonlySet<string> = new Set([
225
+ "guardian.question",
226
+ "guardian.channel_activation",
227
+ "ingress.access_request",
228
+ "ingress.escalation",
229
+ "credential.health_alert",
230
+ ]);
231
+
232
+ function deriveNoteworthy(signal: NotificationSignal): boolean {
233
+ // Background-job failures emit with `sourceChannel: "assistant_tool"`
234
+ // (see `runtime/background-job-runner.ts`), so the activity.failed rule
235
+ // must run BEFORE the assistant_tool short-circuit — otherwise every
236
+ // routine watcher/heartbeat failure would land in the Inbox instead of
237
+ // staying in the activity feed.
238
+ if (signal.sourceEventName === "activity.failed") {
239
+ return signal.attentionHints.urgency === "critical";
240
+ }
241
+ if (signal.sourceChannel === "assistant_tool") return true;
242
+ if (NOTEWORTHY_EVENT_NAMES.has(signal.sourceEventName)) return true;
243
+ return false;
244
+ }
@@ -107,10 +107,6 @@ export const NOTIFICATION_SOURCE_EVENT_NAMES = [
107
107
  description:
108
108
  "OAuth credential health issue detected (expired, revoked, missing scopes)",
109
109
  },
110
- {
111
- id: "heartbeat.alert",
112
- description: "Heartbeat found something worth surfacing to the guardian",
113
- },
114
110
  ] as const;
115
111
 
116
112
  export type NotificationSourceEventName =
@@ -7,6 +7,7 @@
7
7
 
8
8
  import type { ChannelPolicies } from "../channels/config.js";
9
9
  import type { ChannelId } from "../channels/types.js";
10
+ import type { AttentionHints } from "./signal.js";
10
11
 
11
12
  /**
12
13
  * Derived from the channel policy registry: only channels whose
@@ -81,6 +82,13 @@ export interface ChannelDeliveryPayload {
81
82
  deepLinkTarget?: Record<string, unknown>;
82
83
  /** Original signal context payload — available for channel-specific structured rendering. */
83
84
  contextPayload?: Record<string, unknown>;
85
+ /**
86
+ * Forwarded from the originating signal so adapters can make
87
+ * urgency-aware decisions (e.g. the vellum adapter suppresses the OS
88
+ * banner for non-urgent intents while still emitting the conversation
89
+ * pairing side effects).
90
+ */
91
+ urgency: AttentionHints["urgency"];
84
92
  }
85
93
 
86
94
  /** Interface that each channel adapter must implement. */
@@ -261,17 +261,57 @@ describe("PlatformOAuthConnection", () => {
261
261
  ).rejects.toThrow(CredentialRequiredError);
262
262
  });
263
263
 
264
- test("502 response throws ProviderUnreachableError", async () => {
264
+ test("502 response retries then throws ProviderUnreachableError", async () => {
265
+ let callCount = 0;
266
+ const client = makeMockClient(
267
+ mock(async () => {
268
+ callCount++;
269
+ return new Response("", { status: 502 });
270
+ }) as unknown as typeof globalThis.fetch,
271
+ );
272
+
273
+ const conn = new PlatformOAuthConnection({ ...DEFAULT_OPTIONS, client });
274
+ await expect(
275
+ conn.request({ method: "GET", path: "/test" }),
276
+ ).rejects.toThrow(ProviderUnreachableError);
277
+ // 1 initial + 3 retries = 4 total attempts
278
+ expect(callCount).toBe(4);
279
+ });
280
+
281
+ test("502 response includes detail from response body", async () => {
265
282
  const client = makeMockClient(
266
283
  mock(
267
- async () => new Response("", { status: 502 }),
284
+ async () => new Response("upstream timeout after 30s", { status: 502 }),
268
285
  ) as unknown as typeof globalThis.fetch,
269
286
  );
270
287
 
271
288
  const conn = new PlatformOAuthConnection({ ...DEFAULT_OPTIONS, client });
272
289
  await expect(
273
290
  conn.request({ method: "GET", path: "/test" }),
274
- ).rejects.toThrow(ProviderUnreachableError);
291
+ ).rejects.toThrow(/upstream timeout after 30s/);
292
+ });
293
+
294
+ test("502 recovers on retry", async () => {
295
+ let callCount = 0;
296
+ const client = makeMockClient(
297
+ mock(async () => {
298
+ callCount++;
299
+ if (callCount <= 2) {
300
+ return new Response("", { status: 502 });
301
+ }
302
+ return new Response(
303
+ JSON.stringify({ status: 200, headers: {}, body: { ok: true } }),
304
+ { status: 200 },
305
+ );
306
+ }) as unknown as typeof globalThis.fetch,
307
+ );
308
+
309
+ const conn = new PlatformOAuthConnection({ ...DEFAULT_OPTIONS, client });
310
+ const result = await conn.request({ method: "GET", path: "/test" });
311
+
312
+ expect(result.status).toBe(200);
313
+ expect(result.body).toEqual({ ok: true });
314
+ expect(callCount).toBe(3);
275
315
  });
276
316
 
277
317
  test("withToken throws clear error", async () => {