@vellumai/assistant 0.9.0 → 0.9.1-staging.1

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 (222) hide show
  1. package/ARCHITECTURE.md +18 -34
  2. package/bun.lock +7 -8
  3. package/docs/activation-funnel-telemetry.md +4 -4
  4. package/docs/architecture/security.md +29 -28
  5. package/docs/stt-provider-onboarding.md +3 -5
  6. package/docs/workflows-testing.md +13 -44
  7. package/docs/workflows.md +3 -5
  8. package/node_modules/@vellumai/ces-client/src/__tests__/ces-client.test.ts +47 -0
  9. package/node_modules/@vellumai/ces-client/src/rpc-client.ts +28 -5
  10. package/node_modules/@vellumai/environments/src/seeds.ts +2 -5
  11. package/node_modules/@vellumai/gateway-client/src/index.ts +17 -6
  12. package/node_modules/@vellumai/gateway-client/src/outbound-contract.ts +119 -0
  13. package/node_modules/@vellumai/gateway-client/src/types.ts +15 -84
  14. package/openapi.yaml +135 -59
  15. package/package.json +2 -1
  16. package/scripts/sync-llm-catalog.ts +6 -15
  17. package/scripts/sync-web-search-catalog.ts +3 -11
  18. package/src/__tests__/actor-trust-resolver-address-fallback.test.ts +14 -26
  19. package/src/__tests__/agent-loop-compaction-strip.test.ts +240 -0
  20. package/src/__tests__/agent-loop-output-hooks.test.ts +69 -0
  21. package/src/__tests__/agent-loop-override-profile.test.ts +25 -0
  22. package/src/__tests__/always-loaded-tools-guard.test.ts +2 -3
  23. package/src/__tests__/app-dir-path-guard.test.ts +0 -1
  24. package/src/__tests__/assistant-feature-flag-guard.test.ts +1 -4
  25. package/src/__tests__/assistant-feature-flag-guardrails.test.ts +0 -2
  26. package/src/__tests__/avatar-identity-sync.test.ts +2 -27
  27. package/src/__tests__/btw-routes.test.ts +6 -8
  28. package/src/__tests__/checker.test.ts +0 -3
  29. package/src/__tests__/config-loader-backfill.test.ts +103 -6
  30. package/src/__tests__/config-watcher.test.ts +0 -18
  31. package/src/__tests__/conversation-agent-loop-inference-profile.test.ts +22 -0
  32. package/src/__tests__/credential-broker.test.ts +449 -1
  33. package/src/__tests__/credential-execution-tools.test.ts +0 -1
  34. package/src/__tests__/credential-prompt-route.test.ts +3 -4
  35. package/src/__tests__/credential-routes.test.ts +360 -0
  36. package/src/__tests__/credential-security-invariants.test.ts +2 -13
  37. package/src/__tests__/dynamic-page-surface.test.ts +101 -1
  38. package/src/__tests__/fixtures/credential-security-fixtures.ts +2 -33
  39. package/src/__tests__/gateway-only-guard.test.ts +3 -7
  40. package/src/__tests__/identity-routes.test.ts +0 -189
  41. package/src/__tests__/inbound-invite-redemption.test.ts +4 -4
  42. package/src/__tests__/invite-redemption-service.test.ts +4 -4
  43. package/src/__tests__/llm-callsite-catalog.test.ts +5 -6
  44. package/src/__tests__/llm-catalog-parity.test.ts +0 -22
  45. package/src/__tests__/llm-resolver.test.ts +49 -24
  46. package/src/__tests__/oauth-provider-seed-logos.test.ts +4 -6
  47. package/src/__tests__/onboarding-persona-write.test.ts +1 -1
  48. package/src/__tests__/persona-resolver.test.ts +11 -14
  49. package/src/__tests__/plugin-api-model-profiles.test.ts +178 -0
  50. package/src/__tests__/registry.test.ts +2 -7
  51. package/src/__tests__/schedule-routes-workflow-validation.test.ts +1 -10
  52. package/src/__tests__/schedule-routes.test.ts +0 -30
  53. package/src/__tests__/schedule-tools.test.ts +2 -18
  54. package/src/__tests__/skill-execute-input.test.ts +46 -1
  55. package/src/__tests__/skill-runtime-path.test.ts +2 -3
  56. package/src/__tests__/subagent-tools.test.ts +116 -0
  57. package/src/__tests__/surface-completion-nudge-hook.test.ts +367 -0
  58. package/src/__tests__/token-estimator-accuracy.benchmark.test.ts +1 -29
  59. package/src/__tests__/token-manager.test.ts +519 -0
  60. package/src/__tests__/tool-executor.test.ts +0 -79
  61. package/src/__tests__/trusted-contact-multichannel.test.ts +3 -3
  62. package/src/__tests__/trusted-contact-verification.test.ts +6 -6
  63. package/src/__tests__/voice-invite-redemption.test.ts +2 -2
  64. package/src/__tests__/web-search-catalog-parity.test.ts +6 -25
  65. package/src/__tests__/workspace-greetings.test.ts +152 -0
  66. package/src/agent/loop.ts +25 -5
  67. package/src/api/README.md +6 -6
  68. package/src/api/responses/conversation-message.ts +2 -4
  69. package/src/api/responses/home.ts +0 -4
  70. package/src/approvals/guardian-request-resolvers.ts +2 -2
  71. package/src/calls/relay-access-wait.ts +1 -1
  72. package/src/calls/voice-session-bridge.ts +2 -2
  73. package/src/cli/commands/plugins.ts +143 -2
  74. package/src/cli/lib/__tests__/diff-plugin.test.ts +443 -0
  75. package/src/cli/lib/__tests__/merge-plugin-tree.test.ts +313 -0
  76. package/src/cli/lib/__tests__/upgrade-plugin.test.ts +253 -2
  77. package/src/cli/lib/diff-plugin.ts +346 -0
  78. package/src/cli/lib/install-from-github.ts +105 -17
  79. package/src/cli/lib/merge-plugin-tree.ts +228 -0
  80. package/src/cli/lib/plugin-fingerprint.ts +14 -0
  81. package/src/cli/lib/upgrade-plugin.ts +270 -10
  82. package/src/cli/program.ts +0 -2
  83. package/src/config/bundled-skills/subagent/SKILL.md +4 -0
  84. package/src/config/bundled-skills/subagent/TOOLS.json +4 -0
  85. package/src/config/bundled-skills/workflows/SKILL.md +0 -1
  86. package/src/config/bundled-tool-registry.ts +2 -7
  87. package/src/config/call-site-defaults.ts +12 -2
  88. package/src/config/feature-flag-registry.json +1 -17
  89. package/src/config/inference-profile-validation.ts +26 -0
  90. package/src/config/loader.ts +4 -0
  91. package/src/config/profile-order.ts +28 -0
  92. package/src/config/schemas/elevenlabs.ts +0 -1
  93. package/src/config/schemas/platform.ts +0 -8
  94. package/src/config/seed-inference-profiles.ts +25 -20
  95. package/src/contacts/contact-store.ts +87 -96
  96. package/src/contacts/contacts-write.ts +5 -21
  97. package/src/context/compactor.ts +2 -2
  98. package/src/credential-execution/process-manager.ts +55 -14
  99. package/src/credential-execution/prompted-credential.ts +2 -3
  100. package/src/daemon/config-watcher.ts +0 -4
  101. package/src/daemon/conversation-agent-loop.ts +15 -4
  102. package/src/daemon/conversation-slash.ts +2 -23
  103. package/src/daemon/conversation-tool-setup.ts +11 -3
  104. package/src/daemon/conversation.ts +2 -0
  105. package/src/daemon/handlers/config-channels.ts +20 -16
  106. package/src/daemon/handlers/config-slack-channel.ts +2 -3
  107. package/src/daemon/lifecycle.ts +0 -7
  108. package/src/daemon/message-types/conversations.ts +3 -3
  109. package/src/daemon/message-types/sync.ts +0 -1
  110. package/src/daemon/orphan-reaper.test.ts +0 -19
  111. package/src/daemon/orphan-reaper.ts +2 -24
  112. package/src/daemon/server.ts +0 -10
  113. package/src/home/relationship-state.ts +2 -4
  114. package/src/memory/__tests__/memory-retrospective-job.test.ts +195 -401
  115. package/src/memory/bookmark-crud.ts +1 -2
  116. package/src/memory/db-init.ts +7 -17
  117. package/src/memory/embedding-backend.ts +23 -0
  118. package/src/memory/embedding-billing-breaker.ts +96 -0
  119. package/src/memory/jobs-store.ts +25 -13
  120. package/src/memory/jobs-worker.ts +52 -0
  121. package/src/memory/memory-retrospective-constants.ts +4 -4
  122. package/src/memory/memory-retrospective-job.ts +19 -227
  123. package/src/memory/migrations/291-contact-channels-renormalize-addresses.ts +62 -0
  124. package/src/memory/migrations/__tests__/291-contact-channels-renormalize-addresses.test.ts +311 -0
  125. package/src/memory/migrations/__tests__/run-migrations.test.ts +52 -0
  126. package/src/memory/migrations/index.ts +1 -0
  127. package/src/memory/migrations/run-migrations.ts +41 -0
  128. package/src/memory/migrations/validate-migration-state.ts +1 -1
  129. package/src/memory/schema/contacts.ts +0 -4
  130. package/src/messaging/providers/slack/adapter.ts +1 -1
  131. package/src/notifications/adapters/shared.ts +29 -0
  132. package/src/notifications/adapters/slack.ts +5 -32
  133. package/src/notifications/adapters/telegram.ts +2 -20
  134. package/src/notifications/broadcaster.ts +10 -1
  135. package/src/notifications/home-feed-side-effect.ts +4 -3
  136. package/src/notifications/notification-utils.ts +17 -19
  137. package/src/notifications/types.ts +7 -0
  138. package/src/oauth/AGENTS.md +5 -24
  139. package/src/plugin-api/constants.ts +1 -1
  140. package/src/plugin-api/index.ts +6 -1
  141. package/src/plugin-api/model-profiles.ts +33 -0
  142. package/src/plugin-api/types.ts +50 -2
  143. package/src/plugins/defaults/index.ts +25 -0
  144. package/src/plugins/defaults/memory-v3-shadow/__tests__/maintain-job.test.ts +54 -2
  145. package/src/plugins/defaults/memory-v3-shadow/maintain-job.ts +107 -7
  146. package/src/plugins/defaults/surface-completion-nudge/hooks/post-model-call.ts +276 -0
  147. package/src/plugins/defaults/surface-completion-nudge/hooks/stop.ts +22 -0
  148. package/src/plugins/defaults/surface-completion-nudge/nudge-state-store.ts +46 -0
  149. package/src/plugins/defaults/surface-completion-nudge/package.json +14 -0
  150. package/src/plugins/defaults/task-progress-nudge/hooks/post-tool-use.ts +1 -1
  151. package/src/prompts/persona-resolver.ts +2 -2
  152. package/src/runtime/AGENTS.md +0 -1
  153. package/src/runtime/actor-trust-resolver.ts +12 -44
  154. package/src/runtime/btw-sidechain.ts +3 -6
  155. package/src/runtime/channel-approval-types.ts +18 -45
  156. package/src/runtime/channel-invite-transports/telegram.ts +4 -4
  157. package/src/runtime/channel-verification-service.ts +4 -3
  158. package/src/runtime/invite-redemption-service.ts +3 -3
  159. package/src/runtime/routes/__tests__/plugins-routes.test.ts +218 -1
  160. package/src/runtime/routes/app-routes.ts +1 -1
  161. package/src/runtime/routes/approval-strategies/guardian-callback-strategy.ts +2 -2
  162. package/src/runtime/routes/assets/vellum-design-system.css +1959 -0
  163. package/src/runtime/routes/btw-routes.ts +1 -27
  164. package/src/runtime/routes/conversation-compaction-routes.ts +1 -1
  165. package/src/runtime/routes/conversation-routes.ts +2 -2
  166. package/src/runtime/routes/credential-routes.ts +40 -16
  167. package/src/runtime/routes/empty-state-greeting-cache.ts +1 -2
  168. package/src/runtime/routes/identity-routes.ts +1 -296
  169. package/src/runtime/routes/inbound-stages/acl-enforcement.ts +1 -1
  170. package/src/runtime/routes/plugins-routes.ts +171 -5
  171. package/src/runtime/routes/schedule-routes.ts +0 -22
  172. package/src/runtime/routes/workflow-routes.test.ts +4 -43
  173. package/src/runtime/routes/workflow-routes.ts +0 -28
  174. package/src/runtime/routes/workspace-greetings.ts +55 -0
  175. package/src/runtime/sync/resource-sync-events.ts +1 -11
  176. package/src/schedule/inference-profile.ts +2 -14
  177. package/src/subagent/manager.ts +6 -0
  178. package/src/subagent/types.ts +6 -0
  179. package/src/tools/AGENTS.md +3 -3
  180. package/src/tools/browser/browser-execution.ts +1 -1
  181. package/src/tools/network/web-search-error.ts +1 -1
  182. package/src/tools/permission-checker.ts +1 -1
  183. package/src/tools/schedule/create.ts +3 -9
  184. package/src/tools/schedule/update.ts +2 -10
  185. package/src/tools/side-effects.ts +2 -17
  186. package/src/tools/skills/execute.ts +34 -0
  187. package/src/tools/subagent/spawn.ts +34 -9
  188. package/src/tools/tool-approval-handler.ts +1 -3
  189. package/src/tools/tool-manifest.ts +0 -2
  190. package/src/tools/ui-surface/definitions.ts +39 -1
  191. package/src/tools/workflows/run-workflow.test.ts +8 -18
  192. package/src/util/platform.ts +2 -2
  193. package/src/workflows/capabilities.ts +2 -3
  194. package/src/workflows/run-manager.test.ts +0 -25
  195. package/src/workflows/run-manager.ts +2 -24
  196. package/src/__tests__/app-control-no-global-cgevent.test.ts +0 -98
  197. package/src/__tests__/credential-security-e2e.test.ts +0 -362
  198. package/src/__tests__/credential-vault-unit.test.ts +0 -1528
  199. package/src/__tests__/credential-vault.test.ts +0 -1706
  200. package/src/__tests__/identity-intro-cache.test.ts +0 -315
  201. package/src/__tests__/secret-onetime-send.test.ts +0 -182
  202. package/src/cli/commands/__tests__/task.test.ts +0 -914
  203. package/src/cli/commands/task.ts +0 -771
  204. package/src/config/bundled-skills/personal-page/SKILL.md +0 -57
  205. package/src/config/bundled-skills/personal-page/TOOLS.json +0 -27
  206. package/src/config/bundled-skills/personal-page/tools/app-refresh.ts +0 -17
  207. package/src/config/preloaded-apps/personal-page/src/components/About.tsx +0 -22
  208. package/src/config/preloaded-apps/personal-page/src/components/App.tsx +0 -16
  209. package/src/config/preloaded-apps/personal-page/src/components/Features.tsx +0 -77
  210. package/src/config/preloaded-apps/personal-page/src/components/Hero.tsx +0 -57
  211. package/src/config/preloaded-apps/personal-page/src/components/Pending.tsx +0 -28
  212. package/src/config/preloaded-apps/personal-page/src/components/animations.tsx +0 -234
  213. package/src/config/preloaded-apps/personal-page/src/components/icons.tsx +0 -48
  214. package/src/config/preloaded-apps/personal-page/src/components/media.ts +0 -16
  215. package/src/config/preloaded-apps/personal-page/src/index.html +0 -20
  216. package/src/config/preloaded-apps/personal-page/src/main.tsx +0 -7
  217. package/src/config/preloaded-apps/personal-page/src/profile-data.ts +0 -82
  218. package/src/config/preloaded-apps/personal-page/src/styles.css +0 -759
  219. package/src/memory/__tests__/preloaded-apps.test.ts +0 -85
  220. package/src/memory/preloaded-apps.ts +0 -116
  221. package/src/runtime/routes/identity-intro-cache.ts +0 -172
  222. package/src/tools/credentials/vault.ts +0 -712
@@ -138,10 +138,9 @@ describe("credentials/prompt route", () => {
138
138
 
139
139
  test("forwards usageDescription as the prompt purpose and to metadata", async () => {
140
140
  /**
141
- * The CLI `credentials prompt` command exposes `--usage-description` to
142
- * match the credential_store tool's prompt action. The route must thread
143
- * it to the secure prompt (as `purpose`, shown to the user) and persist it
144
- * to credential metadata (as `usageDescription`).
141
+ * The CLI `credentials prompt` command exposes `--usage-description`. The
142
+ * route must thread it to the secure prompt (as `purpose`, shown to the
143
+ * user) and persist it to credential metadata (as `usageDescription`).
145
144
  */
146
145
  // GIVEN the credentials/prompt route is registered
147
146
  expect(promptRoute).toBeDefined();
@@ -0,0 +1,360 @@
1
+ import { beforeEach, describe, expect, mock, test } from "bun:test";
2
+
3
+ import { BadRequestError } from "../runtime/routes/errors.js";
4
+ import type { CredentialMetadata } from "../tools/credentials/metadata-store.js";
5
+
6
+ // ---------------------------------------------------------------------------
7
+ // Mutable mock state (closed over by the mock factories below)
8
+ // ---------------------------------------------------------------------------
9
+
10
+ let secureStore: Map<string, string>;
11
+ let metadataStore: Map<string, CredentialMetadata>;
12
+ let syncedServices: string[];
13
+ let disconnectedProviders: string[];
14
+ let credentialIdCounter: number;
15
+
16
+ function metaKey(service: string, field: string): string {
17
+ return `${service}:${field}`;
18
+ }
19
+
20
+ // ---------------------------------------------------------------------------
21
+ // Mocks for the routes' collaborators
22
+ // ---------------------------------------------------------------------------
23
+
24
+ mock.module("../runtime/auth/route-policy.js", () => ({
25
+ ACTOR_PRINCIPALS: [],
26
+ }));
27
+
28
+ mock.module("../security/credential-key.js", () => ({
29
+ credentialKey: (service: string, field: string) => `${service}:${field}`,
30
+ }));
31
+
32
+ mock.module("../security/secure-keys.js", () => ({
33
+ setSecureKeyAsync: mock(async (key: string, value: string) => {
34
+ secureStore.set(key, value);
35
+ return true;
36
+ }),
37
+ getSecureKeyAsync: mock(async (key: string) => secureStore.get(key)),
38
+ getSecureKeyResultAsync: mock(async (key: string) => ({
39
+ value: secureStore.get(key),
40
+ unreachable: false,
41
+ })),
42
+ deleteSecureKeyAsync: mock(async (key: string) =>
43
+ secureStore.delete(key) ? "deleted" : "not-found",
44
+ ),
45
+ getActiveBackendName: () => "encrypted-store",
46
+ getActiveBackendInfoAsync: mock(async () => ({ backend: "encrypted-store" })),
47
+ }));
48
+
49
+ mock.module("../tools/credentials/metadata-store.js", () => ({
50
+ assertMetadataWritable: () => {},
51
+ listCredentialMetadata: mock(() => Array.from(metadataStore.values())),
52
+ getCredentialMetadata: mock((service: string, field: string) =>
53
+ metadataStore.get(metaKey(service, field)),
54
+ ),
55
+ getCredentialMetadataById: mock((id: string) =>
56
+ Array.from(metadataStore.values()).find((m) => m.credentialId === id),
57
+ ),
58
+ upsertCredentialMetadata: mock(
59
+ (
60
+ service: string,
61
+ field: string,
62
+ policy?: {
63
+ allowedTools?: string[];
64
+ usageDescription?: string;
65
+ alias?: string | null;
66
+ },
67
+ ): CredentialMetadata => {
68
+ const key = metaKey(service, field);
69
+ const existing = metadataStore.get(key);
70
+ const now = Date.now();
71
+ const meta: CredentialMetadata = {
72
+ credentialId: existing?.credentialId ?? `cred-${++credentialIdCounter}`,
73
+ service,
74
+ field,
75
+ allowedTools: policy?.allowedTools ?? existing?.allowedTools ?? [],
76
+ allowedDomains: existing?.allowedDomains ?? [],
77
+ usageDescription:
78
+ policy?.usageDescription ?? existing?.usageDescription,
79
+ alias: policy?.alias ?? existing?.alias ?? undefined,
80
+ createdAt: existing?.createdAt ?? now,
81
+ updatedAt: now,
82
+ };
83
+ metadataStore.set(key, meta);
84
+ return meta;
85
+ },
86
+ ),
87
+ deleteCredentialMetadata: mock((service: string, field: string) =>
88
+ metadataStore.delete(metaKey(service, field)),
89
+ ),
90
+ }));
91
+
92
+ mock.module("../oauth/manual-token-connection.js", () => ({
93
+ syncManualTokenConnection: mock(async (service: string) => {
94
+ syncedServices.push(service);
95
+ }),
96
+ }));
97
+
98
+ mock.module("../oauth/oauth-store.js", () => ({
99
+ listConnections: mock(() => []),
100
+ getConnectionByProvider: mock(() => undefined),
101
+ disconnectOAuthProvider: mock(async (provider: string) => {
102
+ disconnectedProviders.push(provider);
103
+ return "not-found";
104
+ }),
105
+ }));
106
+
107
+ mock.module("../credential-execution/managed-catalog.js", () => ({
108
+ fetchManagedCatalog: mock(async () => ({ ok: true, descriptors: [] })),
109
+ }));
110
+
111
+ import { ROUTES } from "../runtime/routes/credential-routes.js";
112
+
113
+ const setRoute = ROUTES.find((r) => r.operationId === "credentials_set");
114
+ const listRoute = ROUTES.find((r) => r.operationId === "credentials_list");
115
+ const deleteRoute = ROUTES.find((r) => r.operationId === "credentials_delete");
116
+
117
+ type SetResponse = { credentialId: string; service: string; field: string };
118
+ type ListResponse = {
119
+ credentials: Array<{
120
+ service: string;
121
+ field: string;
122
+ scrubbedValue: string;
123
+ hasSecret: boolean;
124
+ }>;
125
+ managedCredentials: unknown[];
126
+ };
127
+ type DeleteResponse = { service: string; field: string };
128
+
129
+ const SECRET_VALUE = "super-secret-token-value";
130
+
131
+ describe("credentials routes", () => {
132
+ beforeEach(() => {
133
+ secureStore = new Map();
134
+ metadataStore = new Map();
135
+ syncedServices = [];
136
+ disconnectedProviders = [];
137
+ credentialIdCounter = 0;
138
+ });
139
+
140
+ describe("credentials_set", () => {
141
+ test("stores the secret and returns identifiers without leaking the value", async () => {
142
+ /**
143
+ * Storing a credential via the route persists the plaintext to secure
144
+ * storage and creates metadata, but the response surfaces only the
145
+ * credential identifiers — never the secret itself.
146
+ */
147
+ // GIVEN the credentials_set route is registered
148
+ expect(setRoute).toBeDefined();
149
+
150
+ // WHEN a credential is stored with a label, description, and allowed tools
151
+ const result = (await setRoute!.handler({
152
+ body: {
153
+ service: "vercel",
154
+ field: "api_token",
155
+ value: SECRET_VALUE,
156
+ label: "Vercel API Token",
157
+ description: "Used to deploy pages",
158
+ allowedTools: ["publish_page"],
159
+ },
160
+ })) as SetResponse;
161
+
162
+ // THEN the response carries the credential identifiers only
163
+ expect(result.service).toBe("vercel");
164
+ expect(result.field).toBe("api_token");
165
+ expect(result.credentialId).toBe("cred-1");
166
+
167
+ // AND the secret is persisted to secure storage
168
+ expect(secureStore.get("vercel:api_token")).toBe(SECRET_VALUE);
169
+
170
+ // AND a manual-token connection sync is triggered for the service
171
+ expect(syncedServices).toContain("vercel");
172
+
173
+ // AND the plaintext value never appears in the response
174
+ expect(JSON.stringify(result)).not.toContain(SECRET_VALUE);
175
+ });
176
+
177
+ test("rejects a request missing the value", async () => {
178
+ /**
179
+ * The route validates required fields and rejects a store request that
180
+ * omits the secret value before touching storage.
181
+ */
182
+ // GIVEN a store request with no value
183
+ const body = { service: "vercel", field: "api_token" };
184
+
185
+ // WHEN the handler runs
186
+ const call = setRoute!.handler({ body });
187
+
188
+ // THEN it rejects with a BadRequestError and stores nothing
189
+ await expect(call).rejects.toBeInstanceOf(BadRequestError);
190
+ expect(secureStore.size).toBe(0);
191
+ });
192
+ });
193
+
194
+ describe("credentials_list", () => {
195
+ test("returns masked metadata without exposing stored secrets", async () => {
196
+ /**
197
+ * Listing credentials returns metadata and a scrubbed preview for each
198
+ * stored secret; the raw plaintext is never included in the output.
199
+ */
200
+ // GIVEN a stored credential
201
+ await setRoute!.handler({
202
+ body: {
203
+ service: "vercel",
204
+ field: "api_token",
205
+ value: SECRET_VALUE,
206
+ label: "Vercel API Token",
207
+ },
208
+ });
209
+
210
+ // WHEN the credentials are listed
211
+ const result = (await listRoute!.handler({ body: {} })) as ListResponse;
212
+
213
+ // THEN the listing includes the credential with a masked value
214
+ expect(result.credentials).toHaveLength(1);
215
+ const entry = result.credentials[0];
216
+ expect(entry.service).toBe("vercel");
217
+ expect(entry.field).toBe("api_token");
218
+ expect(entry.hasSecret).toBe(true);
219
+ expect(entry.scrubbedValue).toBe("****alue");
220
+
221
+ // AND the raw secret never appears anywhere in the response
222
+ expect(JSON.stringify(result)).not.toContain(SECRET_VALUE);
223
+ });
224
+
225
+ test("filters credentials by search substring", async () => {
226
+ /**
227
+ * The optional `search` filter restricts the listing to credentials
228
+ * whose service, field, alias, or description match the query.
229
+ */
230
+ // GIVEN two stored credentials in different services
231
+ await setRoute!.handler({
232
+ body: { service: "vercel", field: "api_token", value: "v-secret" },
233
+ });
234
+ await setRoute!.handler({
235
+ body: { service: "github", field: "token", value: "g-secret" },
236
+ });
237
+
238
+ // WHEN the listing is filtered by a service substring
239
+ const result = (await listRoute!.handler({
240
+ body: { search: "git" },
241
+ })) as ListResponse;
242
+
243
+ // THEN only the matching credential is returned
244
+ expect(result.credentials).toHaveLength(1);
245
+ expect(result.credentials[0].service).toBe("github");
246
+ });
247
+ });
248
+
249
+ describe("credentials_delete", () => {
250
+ test("removes the secret and metadata and echoes the identifiers", async () => {
251
+ /**
252
+ * Deleting a credential removes both the stored secret and its metadata,
253
+ * returning the service and field that were deleted.
254
+ */
255
+ // GIVEN a stored credential
256
+ await setRoute!.handler({
257
+ body: { service: "vercel", field: "api_token", value: SECRET_VALUE },
258
+ });
259
+ expect(secureStore.has("vercel:api_token")).toBe(true);
260
+
261
+ // WHEN the credential is deleted
262
+ const result = (await deleteRoute!.handler({
263
+ body: { service: "vercel", field: "api_token" },
264
+ })) as DeleteResponse;
265
+
266
+ // THEN the response echoes the identifiers
267
+ expect(result).toEqual({ service: "vercel", field: "api_token" });
268
+
269
+ // AND the secret and metadata are gone
270
+ expect(secureStore.has("vercel:api_token")).toBe(false);
271
+ expect(metadataStore.has("vercel:api_token")).toBe(false);
272
+ });
273
+
274
+ test("deletes the Slack user_token surgically, preserving the OAuth connection", async () => {
275
+ /**
276
+ * The Slack user_token grants only read access to channels the bot isn't
277
+ * a member of; Socket Mode runs on the bot + app tokens. Deleting just the
278
+ * user_token removes that secret without disconnecting the provider, so
279
+ * the integration's connected state does not flap.
280
+ */
281
+ // GIVEN a connected Slack channel with bot, app, and user tokens
282
+ secureStore.set("slack_channel:bot_token", "xoxb-bot");
283
+ secureStore.set("slack_channel:app_token", "xapp-app");
284
+ secureStore.set("slack_channel:user_token", "xoxp-user");
285
+
286
+ // WHEN only the user_token is deleted
287
+ const result = (await deleteRoute!.handler({
288
+ body: { service: "slack_channel", field: "user_token" },
289
+ })) as DeleteResponse;
290
+
291
+ // THEN the response echoes the identifiers
292
+ expect(result).toEqual({ service: "slack_channel", field: "user_token" });
293
+
294
+ // AND only the user_token is removed; bot + app tokens remain
295
+ expect(secureStore.has("slack_channel:user_token")).toBe(false);
296
+ expect(secureStore.has("slack_channel:bot_token")).toBe(true);
297
+ expect(secureStore.has("slack_channel:app_token")).toBe(true);
298
+
299
+ // AND the OAuth provider is never disconnected
300
+ expect(disconnectedProviders).not.toContain("slack_channel");
301
+ });
302
+
303
+ test("rejects deleting an absent Slack user_token without disconnecting the provider", async () => {
304
+ /**
305
+ * Deleting a Slack user_token that was never stored surfaces the same
306
+ * not-found rejection as any other missing credential — it must not be
307
+ * reported as an internal storage error, and it must still skip the
308
+ * OAuth teardown so a connected channel's bot + app tokens are untouched.
309
+ */
310
+ // GIVEN a connected Slack channel with only bot + app tokens (no user_token)
311
+ secureStore.set("slack_channel:bot_token", "xoxb-bot");
312
+ secureStore.set("slack_channel:app_token", "xapp-app");
313
+
314
+ // WHEN the absent user_token is deleted
315
+ const call = deleteRoute!.handler({
316
+ body: { service: "slack_channel", field: "user_token" },
317
+ });
318
+
319
+ // THEN it rejects with a BadRequestError (not an InternalError)
320
+ await expect(call).rejects.toBeInstanceOf(BadRequestError);
321
+
322
+ // AND the bot + app tokens remain and the provider is never disconnected
323
+ expect(secureStore.has("slack_channel:bot_token")).toBe(true);
324
+ expect(secureStore.has("slack_channel:app_token")).toBe(true);
325
+ expect(disconnectedProviders).not.toContain("slack_channel");
326
+ });
327
+
328
+ test("disconnects the provider when a connection-critical Slack token is deleted", async () => {
329
+ /**
330
+ * Deleting a token that powers the Socket Mode connection (bot_token)
331
+ * follows the generic path, which tears down the OAuth connection.
332
+ */
333
+ // GIVEN a stored Slack bot_token
334
+ secureStore.set("slack_channel:bot_token", "xoxb-bot");
335
+
336
+ // WHEN the bot_token is deleted
337
+ await deleteRoute!.handler({
338
+ body: { service: "slack_channel", field: "bot_token" },
339
+ });
340
+
341
+ // THEN the generic path disconnects the provider
342
+ expect(disconnectedProviders).toContain("slack_channel");
343
+ });
344
+
345
+ test("rejects deleting a credential that does not exist", async () => {
346
+ /**
347
+ * Deleting a credential with no stored secret, metadata, or OAuth
348
+ * connection rejects with a not-found error.
349
+ */
350
+ // GIVEN no stored credential for the service+field
351
+ const body = { service: "ghost", field: "token" };
352
+
353
+ // WHEN the handler runs
354
+ const call = deleteRoute!.handler({ body });
355
+
356
+ // THEN it rejects with a BadRequestError
357
+ await expect(call).rejects.toBeInstanceOf(BadRequestError);
358
+ });
359
+ });
360
+ });
@@ -95,17 +95,7 @@ import {
95
95
 
96
96
  describe("Invariant 1: secrets never enter LLM context", () => {
97
97
  for (const tc of contextInjectionCases) {
98
- if (
99
- tc.vector === "tool_output" &&
100
- tc.tool === "credential_store" &&
101
- tc.input.action === "store"
102
- ) {
103
- // Store output never includes the value
104
- test(`${tc.label}: secret not in output`, () => {
105
- expect(tc.forbiddenValue).toBeTruthy();
106
- // Actual assertion is in credential-vault.test.ts baseline section
107
- });
108
- } else if (tc.vector === "confirmation_payload") {
98
+ if (tc.vector === "confirmation_payload") {
109
99
  // PR 23 added redaction to confirmation_request payloads via redactSensitiveFields
110
100
  test(`${tc.label}: secret redacted from confirmation payload`, () => {
111
101
  const payload = { ...tc.input };
@@ -132,7 +122,7 @@ describe("Invariant 1: secrets never enter LLM context", () => {
132
122
  }
133
123
  });
134
124
  } else {
135
- // tool_output cases for list and browser_fill — already passing via baselines
125
+ // tool_output cases (browser_fill_credential) — already passing via baselines
136
126
  test(`${tc.label}: secret not in output`, () => {
137
127
  expect(tc.forbiddenValue).toBeTruthy();
138
128
  });
@@ -165,7 +155,6 @@ describe("Invariant 2: no generic plaintext secret read API", () => {
165
155
  // Hard boundary: only these production files may import from secure-keys.
166
156
  // Any new import must be reviewed for secret-leak risk and added here.
167
157
  const ALLOWED_IMPORTERS = new Set([
168
- "tools/credentials/vault.ts", // credential store tool
169
158
  "credential-execution/prompted-credential.ts", // shared prompt-action persistence (stores secret via setSecureKeyAsync)
170
159
  "tools/credentials/broker.ts", // brokered credential access
171
160
  "tools/network/web-search.ts", // web search API key lookup
@@ -5,7 +5,7 @@ import type {
5
5
  UiSurfaceShowDynamicPage,
6
6
  } from "../daemon/message-protocol.js";
7
7
  import { INTERACTIVE_SURFACE_TYPES } from "../daemon/message-protocol.js";
8
- import { uiShowTool } from "../tools/ui-surface/definitions.js";
8
+ import { uiShowTool, uiUpdateTool } from "../tools/ui-surface/definitions.js";
9
9
 
10
10
  // ---------------------------------------------------------------------------
11
11
  // DynamicPageSurfaceData shape
@@ -300,6 +300,106 @@ describe("ui_show empty card guard", () => {
300
300
  });
301
301
  });
302
302
 
303
+ describe("ui_update empty payload guard", () => {
304
+ function makeCtx(onProxy: () => void) {
305
+ return {
306
+ conversationId: "conversation-123",
307
+ workingDir: "/tmp",
308
+ trustClass: "guardian" as const,
309
+ proxyToolResolver: async () => {
310
+ onProxy();
311
+ return { content: "Surface updated", isError: false };
312
+ },
313
+ };
314
+ }
315
+
316
+ test("rejects an empty data object and does not proxy", async () => {
317
+ let proxied = false;
318
+ const result = await uiUpdateTool.execute(
319
+ { surface_id: "surf-1", data: {} },
320
+ makeCtx(() => {
321
+ proxied = true;
322
+ }),
323
+ );
324
+
325
+ expect(result.isError).toBe(true);
326
+ expect(result.content).toContain("empty `data` payload");
327
+ expect(proxied).toBe(false);
328
+ });
329
+
330
+ test("rejects missing data and does not proxy", async () => {
331
+ let proxied = false;
332
+ const result = await uiUpdateTool.execute(
333
+ { surface_id: "surf-1" },
334
+ makeCtx(() => {
335
+ proxied = true;
336
+ }),
337
+ );
338
+
339
+ expect(result.isError).toBe(true);
340
+ expect(proxied).toBe(false);
341
+ });
342
+
343
+ test("rejects data containing only nested empty objects", async () => {
344
+ let proxied = false;
345
+ const result = await uiUpdateTool.execute(
346
+ { surface_id: "surf-1", data: { templateData: {} } },
347
+ makeCtx(() => {
348
+ proxied = true;
349
+ }),
350
+ );
351
+
352
+ expect(result.isError).toBe(true);
353
+ expect(proxied).toBe(false);
354
+ });
355
+
356
+ test("rejects a task_progress update with an empty steps array", async () => {
357
+ let proxied = false;
358
+ const result = await uiUpdateTool.execute(
359
+ { surface_id: "surf-1", data: { templateData: { steps: [] } } },
360
+ makeCtx(() => {
361
+ proxied = true;
362
+ }),
363
+ );
364
+
365
+ expect(result.isError).toBe(true);
366
+ expect(proxied).toBe(false);
367
+ });
368
+
369
+ test("allows a task_progress step update", async () => {
370
+ let proxied = false;
371
+ const result = await uiUpdateTool.execute(
372
+ {
373
+ surface_id: "surf-1",
374
+ data: {
375
+ templateData: {
376
+ steps: [{ label: "Read memo", status: "completed" }],
377
+ },
378
+ },
379
+ },
380
+ makeCtx(() => {
381
+ proxied = true;
382
+ }),
383
+ );
384
+
385
+ expect(result.isError).toBe(false);
386
+ expect(proxied).toBe(true);
387
+ });
388
+
389
+ test("allows a status-only update without resending steps", async () => {
390
+ let proxied = false;
391
+ const result = await uiUpdateTool.execute(
392
+ { surface_id: "surf-1", data: { templateData: { status: "completed" } } },
393
+ makeCtx(() => {
394
+ proxied = true;
395
+ }),
396
+ );
397
+
398
+ expect(result.isError).toBe(false);
399
+ expect(proxied).toBe(true);
400
+ });
401
+ });
402
+
303
403
  // ---------------------------------------------------------------------------
304
404
  // task_progress ui_show appends the update hint to its return value
305
405
  // ---------------------------------------------------------------------------
@@ -29,25 +29,6 @@ export interface ContextInjectionCase {
29
29
  }
30
30
 
31
31
  export const contextInjectionCases: ContextInjectionCase[] = [
32
- {
33
- label: "credential_store store action output",
34
- vector: "tool_output",
35
- tool: "credential_store",
36
- input: {
37
- action: "store",
38
- service: "github",
39
- field: "token",
40
- value: TEST_CREDENTIAL,
41
- },
42
- forbiddenValue: TEST_CREDENTIAL,
43
- },
44
- {
45
- label: "credential_store list action output",
46
- vector: "tool_output",
47
- tool: "credential_store",
48
- input: { action: "list" },
49
- forbiddenValue: TEST_CREDENTIAL,
50
- },
51
32
  {
52
33
  label: "browser_fill_credential result",
53
34
  vector: "tool_output",
@@ -59,18 +40,6 @@ export const contextInjectionCases: ContextInjectionCase[] = [
59
40
  },
60
41
  forbiddenValue: TEST_CREDENTIAL,
61
42
  },
62
- {
63
- label: "confirmation_request payload for credential_store",
64
- vector: "confirmation_payload",
65
- tool: "credential_store",
66
- input: {
67
- action: "store",
68
- service: "github",
69
- field: "token",
70
- value: TEST_CREDENTIAL,
71
- },
72
- forbiddenValue: TEST_CREDENTIAL,
73
- },
74
43
  ];
75
44
 
76
45
  // ---------------------------------------------------------------------------
@@ -87,8 +56,8 @@ export interface DirectReadCase {
87
56
 
88
57
  export const directReadCases: DirectReadCase[] = [
89
58
  {
90
- label: "vault.ts getCredentialValue",
91
- modulePath: "tools/credentials/vault",
59
+ label: "broker.ts getCredentialValue",
60
+ modulePath: "tools/credentials/broker",
92
61
  exportName: "getCredentialValue",
93
62
  },
94
63
  ];
@@ -23,11 +23,7 @@ const ALLOWLIST = new Set([
23
23
 
24
24
  // --- Intentional local daemon-control paths ---
25
25
  "assistant/src/cli/commands/conversations.ts", // CLI wipe talks to runtime directly
26
- "clients/shared/Network/DaemonClient.swift",
27
- "clients/shared/App/Auth/PlatformOAuthService.swift", // comment explaining runtimeUrl vs platformUrl
28
- "clients/macos/vellum-assistant/App/AppDelegate.swift",
29
- "clients/macos/vellum-assistant/Features/Settings/SettingsConnectTab.swift",
30
- "apps/macos/src/main/bundle-flow.ts", // Electron main calls the local gateway (gatewayPort) with a Guardian token to scan bundles
26
+ "clients/macos/src/main/bundle-flow.ts", // Electron main calls the local gateway (gatewayPort) with a Guardian token to scan bundles
31
27
  ".claude/skills/update/SKILL.md", // daemon health check script
32
28
 
33
29
  // --- Test fixtures that poll the daemon directly (gateway may require auth) ---
@@ -87,12 +83,12 @@ function isGatewayInternal(filePath: string): boolean {
87
83
 
88
84
  /** Additional files allowed for the interpolated-port check only (use gateway port, not runtime). */
89
85
  const INTERPOLATED_PORT_ALLOWLIST = new Set([
90
- "apps/macos/src/main/bundle-flow.ts",
86
+ "clients/macos/src/main/bundle-flow.ts",
91
87
  // Electron main bridges the host proxy to a local assistant's gateway
92
88
  // (gatewayPort) over loopback with a Guardian-minted gateway token — same
93
89
  // class as bundle-flow.ts. Added with #34049 (host proxy for cloud/managed
94
90
  // assistants); the allowlist entry was missed there.
95
- "apps/macos/src/main/host-proxy-router.ts",
91
+ "clients/macos/src/main/host-proxy-router.ts",
96
92
  ]);
97
93
 
98
94
  /** Shared violation filter: exempt test files, gateway internals, and allowlisted paths. */