@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
package/openapi.yaml CHANGED
@@ -3,7 +3,7 @@
3
3
  openapi: 3.0.0
4
4
  info:
5
5
  title: Vellum Assistant API
6
- version: 0.8.2
6
+ version: 0.8.3
7
7
  description: Auto-generated OpenAPI specification for the Vellum Assistant runtime HTTP server.
8
8
  servers:
9
9
  - url: http://127.0.0.1:7821
@@ -3108,6 +3108,7 @@ paths:
3108
3108
  - slack
3109
3109
  - email
3110
3110
  - platform
3111
+ - a2a
3111
3112
  label:
3112
3113
  type: string
3113
3114
  subtitle:
@@ -3614,6 +3615,95 @@ paths:
3614
3615
  - ran
3615
3616
  - jobId
3616
3617
  additionalProperties: false
3618
+ /v1/consolidation/runs:
3619
+ get:
3620
+ operationId: consolidation_runs_get
3621
+ summary: List consolidation runs
3622
+ description:
3623
+ "Return recent memory v2 consolidation conversations as run records. Each consolidation dispatch creates
3624
+ exactly one background conversation tagged with `source = memory_v2_consolidation`; that conversation IS the
3625
+ run. Synthetic fields: `id` mirrors `conversationId` (no separate run row exists), `scheduledFor` and
3626
+ `startedAt` both equal `conversation.createdAt` (no separate schedule timestamp), `finishedAt` is the
3627
+ `createdAt` of the latest assistant message in the conversation (NOT `conversation.lastMessageAt`, which the
3628
+ kickoff user prompt bumps before the agent runs). `status` is `'ok'` when the conversation has at least one
3629
+ assistant message — i.e. positive evidence the agent emitted output — otherwise `'running'`. This is a weaker
3630
+ signal than heartbeat's `'ok'`: without a dedicated runs table we cannot distinguish 'ran cleanly' from 'crashed
3631
+ after emitting at least one assistant message'. `skipReason` and `error` are always null — skipped runs (lock
3632
+ held, disabled, empty buffer) never create a conversation, and run failure detail is not stored on the
3633
+ conversation row. Shape mirrors `heartbeat/runs` so the schedules settings UI can reuse its run-row component."
3634
+ tags:
3635
+ - consolidation
3636
+ responses:
3637
+ "200":
3638
+ description: Successful response
3639
+ content:
3640
+ application/json:
3641
+ schema:
3642
+ type: object
3643
+ properties:
3644
+ runs:
3645
+ type: array
3646
+ items:
3647
+ type: object
3648
+ properties:
3649
+ id:
3650
+ type: string
3651
+ scheduledFor:
3652
+ type: number
3653
+ startedAt:
3654
+ anyOf:
3655
+ - type: number
3656
+ - type: "null"
3657
+ finishedAt:
3658
+ anyOf:
3659
+ - type: number
3660
+ - type: "null"
3661
+ durationMs:
3662
+ anyOf:
3663
+ - type: number
3664
+ - type: "null"
3665
+ status:
3666
+ type: string
3667
+ enum:
3668
+ - ok
3669
+ - running
3670
+ skipReason:
3671
+ anyOf:
3672
+ - type: string
3673
+ - type: "null"
3674
+ error:
3675
+ anyOf:
3676
+ - type: string
3677
+ - type: "null"
3678
+ conversationId:
3679
+ anyOf:
3680
+ - type: string
3681
+ - type: "null"
3682
+ createdAt:
3683
+ type: number
3684
+ required:
3685
+ - id
3686
+ - scheduledFor
3687
+ - startedAt
3688
+ - finishedAt
3689
+ - durationMs
3690
+ - status
3691
+ - skipReason
3692
+ - error
3693
+ - conversationId
3694
+ - createdAt
3695
+ additionalProperties: false
3696
+ description: Consolidation run records
3697
+ required:
3698
+ - runs
3699
+ additionalProperties: false
3700
+ parameters:
3701
+ - name: limit
3702
+ in: query
3703
+ required: false
3704
+ schema:
3705
+ type: integer
3706
+ description: Max runs to return (default 20, max 100)
3617
3707
  /v1/contact-channels/{contactChannelId}:
3618
3708
  patch:
3619
3709
  operationId: contactchannels_by_contactChannelId_patch
@@ -7869,6 +7959,10 @@ paths:
7869
7959
  - background
7870
7960
  - email
7871
7961
  - system
7962
+ noteworthy:
7963
+ type: boolean
7964
+ fromAssistant:
7965
+ type: boolean
7872
7966
  metadata:
7873
7967
  type: object
7874
7968
  propertyNames:
@@ -7880,7 +7974,6 @@ paths:
7880
7974
  - id
7881
7975
  - type
7882
7976
  - priority
7883
- - title
7884
7977
  - summary
7885
7978
  - timestamp
7886
7979
  - status
@@ -8031,6 +8124,10 @@ paths:
8031
8124
  - background
8032
8125
  - email
8033
8126
  - system
8127
+ noteworthy:
8128
+ type: boolean
8129
+ fromAssistant:
8130
+ type: boolean
8034
8131
  metadata:
8035
8132
  type: object
8036
8133
  propertyNames:
@@ -8042,7 +8139,6 @@ paths:
8042
8139
  - id
8043
8140
  - type
8044
8141
  - priority
8045
- - title
8046
8142
  - summary
8047
8143
  - timestamp
8048
8144
  - status
@@ -8742,9 +8838,7 @@ paths:
8742
8838
  - ollama
8743
8839
  - fireworks
8744
8840
  - openrouter
8745
- - zai
8746
- - deepseek
8747
- - minimax
8841
+ - openai-compatible
8748
8842
  auth:
8749
8843
  oneOf:
8750
8844
  - type: object
@@ -8809,6 +8903,27 @@ paths:
8809
8903
  - type: string
8810
8904
  minLength: 1
8811
8905
  - type: "null"
8906
+ baseUrl:
8907
+ anyOf:
8908
+ - type: string
8909
+ format: uri
8910
+ - type: "null"
8911
+ models:
8912
+ anyOf:
8913
+ - type: array
8914
+ items:
8915
+ type: object
8916
+ properties:
8917
+ id:
8918
+ type: string
8919
+ minLength: 1
8920
+ displayName:
8921
+ type: string
8922
+ minLength: 1
8923
+ required:
8924
+ - id
8925
+ additionalProperties: false
8926
+ - type: "null"
8812
8927
  createdAt:
8813
8928
  type: integer
8814
8929
  minimum: -9007199254740991
@@ -8825,6 +8940,8 @@ paths:
8825
8940
  - auth
8826
8941
  - status
8827
8942
  - label
8943
+ - baseUrl
8944
+ - models
8828
8945
  - createdAt
8829
8946
  - updatedAt
8830
8947
  - isManaged
@@ -8838,9 +8955,7 @@ paths:
8838
8955
  required: false
8839
8956
  schema:
8840
8957
  type: string
8841
- description:
8842
- "Filter by provider. One of: anthropic, openai, gemini, ollama, fireworks, openrouter, zai, deepseek,
8843
- minimax"
8958
+ description: "Filter by provider. One of: anthropic, openai, gemini, ollama, fireworks, openrouter, openai-compatible"
8844
8959
  post:
8845
8960
  operationId: inference_providerconnections_post
8846
8961
  summary: Create a provider connection
@@ -8867,9 +8982,7 @@ paths:
8867
8982
  - ollama
8868
8983
  - fireworks
8869
8984
  - openrouter
8870
- - zai
8871
- - deepseek
8872
- - minimax
8985
+ - openai-compatible
8873
8986
  auth:
8874
8987
  oneOf:
8875
8988
  - type: object
@@ -8934,6 +9047,27 @@ paths:
8934
9047
  - type: string
8935
9048
  minLength: 1
8936
9049
  - type: "null"
9050
+ baseUrl:
9051
+ anyOf:
9052
+ - type: string
9053
+ format: uri
9054
+ - type: "null"
9055
+ models:
9056
+ anyOf:
9057
+ - type: array
9058
+ items:
9059
+ type: object
9060
+ properties:
9061
+ id:
9062
+ type: string
9063
+ minLength: 1
9064
+ displayName:
9065
+ type: string
9066
+ minLength: 1
9067
+ required:
9068
+ - id
9069
+ additionalProperties: false
9070
+ - type: "null"
8937
9071
  createdAt:
8938
9072
  type: integer
8939
9073
  minimum: -9007199254740991
@@ -8950,6 +9084,8 @@ paths:
8950
9084
  - auth
8951
9085
  - status
8952
9086
  - label
9087
+ - baseUrl
9088
+ - models
8953
9089
  - createdAt
8954
9090
  - updatedAt
8955
9091
  - isManaged
@@ -8977,9 +9113,7 @@ paths:
8977
9113
  - ollama
8978
9114
  - fireworks
8979
9115
  - openrouter
8980
- - zai
8981
- - deepseek
8982
- - minimax
9116
+ - openai-compatible
8983
9117
  auth:
8984
9118
  oneOf:
8985
9119
  - type: object
@@ -9042,6 +9176,27 @@ paths:
9042
9176
  enum:
9043
9177
  - active
9044
9178
  - disabled
9179
+ base_url:
9180
+ anyOf:
9181
+ - type: string
9182
+ format: uri
9183
+ - type: "null"
9184
+ models:
9185
+ anyOf:
9186
+ - type: array
9187
+ items:
9188
+ type: object
9189
+ properties:
9190
+ id:
9191
+ type: string
9192
+ minLength: 1
9193
+ displayName:
9194
+ type: string
9195
+ minLength: 1
9196
+ required:
9197
+ - id
9198
+ additionalProperties: false
9199
+ - type: "null"
9045
9200
  required:
9046
9201
  - name
9047
9202
  - provider
@@ -9109,9 +9264,7 @@ paths:
9109
9264
  - ollama
9110
9265
  - fireworks
9111
9266
  - openrouter
9112
- - zai
9113
- - deepseek
9114
- - minimax
9267
+ - openai-compatible
9115
9268
  auth:
9116
9269
  oneOf:
9117
9270
  - type: object
@@ -9176,6 +9329,27 @@ paths:
9176
9329
  - type: string
9177
9330
  minLength: 1
9178
9331
  - type: "null"
9332
+ baseUrl:
9333
+ anyOf:
9334
+ - type: string
9335
+ format: uri
9336
+ - type: "null"
9337
+ models:
9338
+ anyOf:
9339
+ - type: array
9340
+ items:
9341
+ type: object
9342
+ properties:
9343
+ id:
9344
+ type: string
9345
+ minLength: 1
9346
+ displayName:
9347
+ type: string
9348
+ minLength: 1
9349
+ required:
9350
+ - id
9351
+ additionalProperties: false
9352
+ - type: "null"
9179
9353
  createdAt:
9180
9354
  type: integer
9181
9355
  minimum: -9007199254740991
@@ -9192,6 +9366,8 @@ paths:
9192
9366
  - auth
9193
9367
  - status
9194
9368
  - label
9369
+ - baseUrl
9370
+ - models
9195
9371
  - createdAt
9196
9372
  - updatedAt
9197
9373
  - isManaged
@@ -9233,9 +9409,7 @@ paths:
9233
9409
  - ollama
9234
9410
  - fireworks
9235
9411
  - openrouter
9236
- - zai
9237
- - deepseek
9238
- - minimax
9412
+ - openai-compatible
9239
9413
  auth:
9240
9414
  oneOf:
9241
9415
  - type: object
@@ -9300,6 +9474,27 @@ paths:
9300
9474
  - type: string
9301
9475
  minLength: 1
9302
9476
  - type: "null"
9477
+ baseUrl:
9478
+ anyOf:
9479
+ - type: string
9480
+ format: uri
9481
+ - type: "null"
9482
+ models:
9483
+ anyOf:
9484
+ - type: array
9485
+ items:
9486
+ type: object
9487
+ properties:
9488
+ id:
9489
+ type: string
9490
+ minLength: 1
9491
+ displayName:
9492
+ type: string
9493
+ minLength: 1
9494
+ required:
9495
+ - id
9496
+ additionalProperties: false
9497
+ - type: "null"
9303
9498
  createdAt:
9304
9499
  type: integer
9305
9500
  minimum: -9007199254740991
@@ -9316,6 +9511,8 @@ paths:
9316
9511
  - auth
9317
9512
  - status
9318
9513
  - label
9514
+ - baseUrl
9515
+ - models
9319
9516
  - createdAt
9320
9517
  - updatedAt
9321
9518
  - isManaged
@@ -9401,6 +9598,27 @@ paths:
9401
9598
  - type: string
9402
9599
  minLength: 1
9403
9600
  - type: "null"
9601
+ base_url:
9602
+ anyOf:
9603
+ - type: string
9604
+ format: uri
9605
+ - type: "null"
9606
+ models:
9607
+ anyOf:
9608
+ - type: array
9609
+ items:
9610
+ type: object
9611
+ properties:
9612
+ id:
9613
+ type: string
9614
+ minLength: 1
9615
+ displayName:
9616
+ type: string
9617
+ minLength: 1
9618
+ required:
9619
+ - id
9620
+ additionalProperties: false
9621
+ - type: "null"
9404
9622
  required:
9405
9623
  - auth
9406
9624
  additionalProperties: false
@@ -9464,6 +9682,64 @@ paths:
9464
9682
  required:
9465
9683
  - message
9466
9684
  additionalProperties: false
9685
+ /v1/integrations/a2a/config:
9686
+ delete:
9687
+ operationId: integrations_a2a_config_delete
9688
+ summary: Disable A2A channel
9689
+ description: Disable the A2A channel.
9690
+ tags:
9691
+ - integrations
9692
+ responses:
9693
+ "200":
9694
+ description: Successful response
9695
+ get:
9696
+ operationId: integrations_a2a_config_get
9697
+ summary: Get A2A config
9698
+ description: Check current A2A channel configuration status.
9699
+ tags:
9700
+ - integrations
9701
+ responses:
9702
+ "200":
9703
+ description: Successful response
9704
+ post:
9705
+ operationId: integrations_a2a_config_post
9706
+ summary: Enable A2A channel
9707
+ description: Enable the A2A channel for inter-assistant communication.
9708
+ tags:
9709
+ - integrations
9710
+ responses:
9711
+ "200":
9712
+ description: Successful response
9713
+ /v1/integrations/a2a/invite:
9714
+ post:
9715
+ operationId: integrations_a2a_invite_post
9716
+ summary: Create A2A invite
9717
+ description: Create a shareable A2A invite token for link-based contact creation.
9718
+ tags:
9719
+ - integrations
9720
+ responses:
9721
+ "200":
9722
+ description: Successful response
9723
+ /v1/integrations/a2a/invite/complete:
9724
+ post:
9725
+ operationId: integrations_a2a_invite_complete_post
9726
+ summary: Complete A2A invite (sender side)
9727
+ description: Called by the platform to finalize the sender side of a link-based A2A connection.
9728
+ tags:
9729
+ - integrations
9730
+ responses:
9731
+ "200":
9732
+ description: Successful response
9733
+ /v1/integrations/a2a/invite/redeem:
9734
+ post:
9735
+ operationId: integrations_a2a_invite_redeem_post
9736
+ summary: Redeem A2A invite (receiver side)
9737
+ description: Called by the platform to create a trusted contact on the receiver side of a link-based A2A connection.
9738
+ tags:
9739
+ - integrations
9740
+ responses:
9741
+ "200":
9742
+ description: Successful response
9467
9743
  /v1/integrations/ingress/config:
9468
9744
  get:
9469
9745
  operationId: integrations_ingress_config_get
@@ -14512,6 +14788,45 @@ paths:
14512
14788
  - conversationId
14513
14789
  - content
14514
14790
  additionalProperties: false
14791
+ /v1/subagents/reconcile:
14792
+ get:
14793
+ operationId: subagents_reconcile_get
14794
+ summary: Reconcile subagent live status
14795
+ description:
14796
+ Returns the live in-memory status of all subagents known to the daemon for a given parent conversation.
14797
+ Subagents not in the response are orphaned.
14798
+ tags:
14799
+ - subagents
14800
+ responses:
14801
+ "200":
14802
+ description: Successful response
14803
+ content:
14804
+ application/json:
14805
+ schema:
14806
+ type: object
14807
+ properties:
14808
+ subagents:
14809
+ type: object
14810
+ propertyNames:
14811
+ type: string
14812
+ additionalProperties:
14813
+ type: object
14814
+ properties:
14815
+ status:
14816
+ type: string
14817
+ required:
14818
+ - status
14819
+ additionalProperties: false
14820
+ required:
14821
+ - subagents
14822
+ additionalProperties: false
14823
+ parameters:
14824
+ - name: parentConversationId
14825
+ in: query
14826
+ required: false
14827
+ schema:
14828
+ type: string
14829
+ description: Parent conversation ID
14515
14830
  /v1/suggestion:
14516
14831
  get:
14517
14832
  operationId: suggestion_get
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vellumai/assistant",
3
- "version": "0.8.2",
3
+ "version": "0.8.3",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "exports": {