@otto-code/protocol 0.8.10 → 0.8.13
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.
- package/dist/agent-labels.d.ts +3 -0
- package/dist/agent-labels.js +10 -0
- package/dist/agent-personalities.d.ts +4 -3
- package/dist/agent-personalities.js +13 -20
- package/dist/agent-queue.d.ts +87 -0
- package/dist/agent-queue.js +106 -0
- package/dist/agent-types.d.ts +24 -4
- package/dist/binary-frames/terminal.d.ts +4 -0
- package/dist/binary-frames/terminal.js +1 -0
- package/dist/brain.d.ts +2412 -0
- package/dist/brain.js +1100 -0
- package/dist/chat/rpc-schemas.js +1 -0
- package/dist/chat/types.js +1 -0
- package/dist/client-capabilities.d.ts +3 -0
- package/dist/client-capabilities.js +14 -0
- package/dist/code-intelligence.d.ts +917 -0
- package/dist/code-intelligence.js +699 -0
- package/dist/communications.d.ts +1106 -0
- package/dist/communications.js +384 -0
- package/dist/context.d.ts +787 -0
- package/dist/context.js +295 -0
- package/dist/daemon-config.d.ts +383 -0
- package/dist/daemon-config.js +401 -0
- package/dist/file-operations.d.ts +380 -0
- package/dist/file-operations.js +282 -0
- package/dist/generated/validation/ws-outbound.aot.js +67260 -57392
- package/dist/git-hosting.d.ts +117 -0
- package/dist/git-hosting.js +109 -0
- package/dist/git-operations.d.ts +255 -0
- package/dist/git-operations.js +221 -0
- package/dist/integration-authorization.d.ts +195 -0
- package/dist/integration-authorization.js +125 -0
- package/dist/kanban.d.ts +341 -0
- package/dist/kanban.js +273 -0
- package/dist/loop/rpc-schemas.d.ts +6 -6
- package/dist/loop/rpc-schemas.js +1 -0
- package/dist/meetings.d.ts +95 -0
- package/dist/meetings.js +57 -0
- package/dist/messages.d.ts +11175 -11039
- package/dist/messages.js +4756 -8700
- package/dist/orchestration.d.ts +726 -0
- package/dist/orchestration.js +232 -0
- package/dist/personality-schemas.d.ts +221 -0
- package/dist/personality-schemas.js +340 -0
- package/dist/preview.d.ts +140 -0
- package/dist/preview.js +98 -0
- package/dist/project-knowledge.d.ts +740 -0
- package/dist/project-knowledge.js +229 -0
- package/dist/project-links.d.ts +102 -0
- package/dist/project-links.js +62 -0
- package/dist/provider-config.d.ts +87 -2
- package/dist/provider-config.js +110 -0
- package/dist/provider-manifest.js +7 -0
- package/dist/provider-snapshot-codec.d.ts +18 -0
- package/dist/provider-snapshot-codec.js +71 -0
- package/dist/refine.d.ts +93 -0
- package/dist/refine.js +78 -0
- package/dist/schedule/rpc-schemas.d.ts +55 -111
- package/dist/schedule/types.d.ts +16 -37
- package/dist/schedule/types.js +1 -11
- package/dist/search/text-match.d.ts +55 -0
- package/dist/search/text-match.js +262 -0
- package/dist/speech.d.ts +180 -0
- package/dist/speech.js +177 -0
- package/dist/storage.d.ts +79 -0
- package/dist/storage.js +107 -0
- package/dist/suggested-tasks.d.ts +106 -0
- package/dist/suggested-tasks.js +81 -0
- package/dist/terminal-compatibility.d.ts +55 -0
- package/dist/terminal-compatibility.js +35 -0
- package/dist/terminal-input-mode.d.ts +4 -0
- package/dist/terminal-input-mode.js +35 -6
- package/dist/terminal-key-input.js +15 -6
- package/dist/terminal-profiles.d.ts +35 -0
- package/dist/terminal-profiles.js +246 -4
- package/dist/tool-call-display.d.ts +2 -2
- package/dist/tool-call-display.js +6 -6
- package/dist/usage-stats.d.ts +255 -0
- package/dist/usage-stats.js +162 -0
- package/dist/validation/ws-outbound-schema-metadata.d.ts +1906 -266
- package/dist/worktree-ops.d.ts +81 -0
- package/dist/worktree-ops.js +88 -0
- package/package.json +1 -1
package/dist/chat/rpc-schemas.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
import { ChatMessageSchema, ChatRoomDetailSchema } from "./types.js";
|
|
3
|
+
// COMPAT(chatRooms): retained after the v0.3.0 feature removal; remove after 2027-02-09 when mixed-version peers no longer send legacy messages.
|
|
3
4
|
export const ChatCreateRequestSchema = z.object({
|
|
4
5
|
type: z.literal("chat/create"),
|
|
5
6
|
requestId: z.string(),
|
package/dist/chat/types.js
CHANGED
|
@@ -5,6 +5,9 @@ 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";
|
|
10
|
+
readonly compactProviderSnapshots: "compact_provider_snapshots";
|
|
8
11
|
readonly browserHost: "browser_host";
|
|
9
12
|
};
|
|
10
13
|
export type ClientCapability = (typeof CLIENT_CAPS)[keyof typeof CLIENT_CAPS];
|
|
@@ -20,6 +20,20 @@ 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",
|
|
33
|
+
// COMPAT(compactProviderSnapshots): added in v0.2.X. Capable clients receive
|
|
34
|
+
// provider catalogs with shared thinking sets and may revalidate by content hash.
|
|
35
|
+
// Remove the legacy snapshot encoding after 2027-02-04.
|
|
36
|
+
compactProviderSnapshots: "compact_provider_snapshots",
|
|
23
37
|
browserHost: "browser_host",
|
|
24
38
|
};
|
|
25
39
|
//# sourceMappingURL=client-capabilities.js.map
|