@otto-code/protocol 0.8.9 → 0.8.12

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 (60) hide show
  1. package/dist/agent-queue.d.ts +87 -0
  2. package/dist/agent-queue.js +106 -0
  3. package/dist/brain.d.ts +2321 -0
  4. package/dist/brain.js +1082 -0
  5. package/dist/client-capabilities.d.ts +2 -0
  6. package/dist/client-capabilities.js +10 -0
  7. package/dist/code-intelligence.d.ts +917 -0
  8. package/dist/code-intelligence.js +699 -0
  9. package/dist/communications.d.ts +1106 -0
  10. package/dist/communications.js +384 -0
  11. package/dist/context.d.ts +787 -0
  12. package/dist/context.js +295 -0
  13. package/dist/daemon-config.d.ts +377 -0
  14. package/dist/daemon-config.js +395 -0
  15. package/dist/file-operations.d.ts +380 -0
  16. package/dist/file-operations.js +282 -0
  17. package/dist/generated/validation/ws-outbound.aot.js +54927 -48878
  18. package/dist/git-hosting.d.ts +117 -0
  19. package/dist/git-hosting.js +109 -0
  20. package/dist/git-operations.d.ts +255 -0
  21. package/dist/git-operations.js +221 -0
  22. package/dist/integration-authorization.d.ts +195 -0
  23. package/dist/integration-authorization.js +125 -0
  24. package/dist/kanban.d.ts +341 -0
  25. package/dist/kanban.js +273 -0
  26. package/dist/loop/rpc-schemas.d.ts +6 -6
  27. package/dist/meetings.d.ts +95 -0
  28. package/dist/meetings.js +57 -0
  29. package/dist/messages.d.ts +21054 -24042
  30. package/dist/messages.js +4355 -8731
  31. package/dist/orchestration.d.ts +726 -0
  32. package/dist/orchestration.js +232 -0
  33. package/dist/personality-schemas.d.ts +221 -0
  34. package/dist/personality-schemas.js +340 -0
  35. package/dist/preview.d.ts +140 -0
  36. package/dist/preview.js +98 -0
  37. package/dist/project-knowledge.d.ts +740 -0
  38. package/dist/project-knowledge.js +229 -0
  39. package/dist/project-links.d.ts +102 -0
  40. package/dist/project-links.js +62 -0
  41. package/dist/provider-config.d.ts +87 -2
  42. package/dist/provider-config.js +110 -0
  43. package/dist/refine.d.ts +93 -0
  44. package/dist/refine.js +78 -0
  45. package/dist/schedule/rpc-schemas.d.ts +47 -47
  46. package/dist/schedule/types.d.ts +13 -13
  47. package/dist/speech.d.ts +180 -0
  48. package/dist/speech.js +177 -0
  49. package/dist/storage.d.ts +79 -0
  50. package/dist/storage.js +107 -0
  51. package/dist/suggested-tasks.d.ts +106 -0
  52. package/dist/suggested-tasks.js +81 -0
  53. package/dist/terminal-compatibility.d.ts +55 -0
  54. package/dist/terminal-compatibility.js +35 -0
  55. package/dist/usage-stats.d.ts +255 -0
  56. package/dist/usage-stats.js +162 -0
  57. package/dist/validation/ws-outbound-schema-metadata.d.ts +1404 -274
  58. package/dist/worktree-ops.d.ts +81 -0
  59. package/dist/worktree-ops.js +88 -0
  60. package/package.json +1 -1
@@ -5,6 +5,8 @@ export declare const CLIENT_CAPS: {
5
5
  readonly terminalReflowableSnapshot: "terminal_reflowable_snapshot";
6
6
  readonly providerSubagents: "provider_subagents";
7
7
  readonly projectUpdates: "project_updates";
8
+ readonly communicationsPresenceUpdates: "communications_presence_updates";
9
+ readonly brainLogWatch: "brain_log_watch";
8
10
  readonly browserHost: "browser_host";
9
11
  };
10
12
  export type ClientCapability = (typeof CLIENT_CAPS)[keyof typeof CLIENT_CAPS];
@@ -20,6 +20,16 @@ export const CLIENT_CAPS = {
20
20
  providerSubagents: "provider_subagents",
21
21
  // COMPAT(projectUpdates): added in v0.1.109, remove gate after 2027-01-15.
22
22
  projectUpdates: "project_updates",
23
+ // COMPAT(communicationsPresenceUpdates): added in v0.8.11, remove gate after
24
+ // 2027-02-14. Older clients do not know the presence-change notification, so
25
+ // the daemon sends it only after this capability is advertised.
26
+ communicationsPresenceUpdates: "communications_presence_updates",
27
+ // COMPAT(brainLogWatch): added in v0.8.11, remove gate after 2027-02-17.
28
+ // Brain log lines are pushed only to sockets that asked for them. A client
29
+ // advertising this defaults to NOT watching and turns the feed on when the
30
+ // Logs tab opens; a client without it keeps the old unconditional feed,
31
+ // because it has no way to ask and would otherwise lose live logs entirely.
32
+ brainLogWatch: "brain_log_watch",
23
33
  browserHost: "browser_host",
24
34
  };
25
35
  //# sourceMappingURL=client-capabilities.js.map