@kilocode/sdk 7.2.30 → 7.2.33

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.
@@ -500,6 +500,29 @@ export type EventVcsBranchUpdated = {
500
500
  branch?: string;
501
501
  };
502
502
  };
503
+ export type EventKilocodeAgentManagerStart = {
504
+ type: "kilocode.agent_manager.start";
505
+ properties: {
506
+ requestID: string;
507
+ sessionID: string;
508
+ mode: "worktree" | "local";
509
+ versions?: boolean;
510
+ tasks: Array<{
511
+ /**
512
+ * Initial prompt to send to the new session
513
+ */
514
+ prompt?: string;
515
+ /**
516
+ * Short display name for the Agent Manager card
517
+ */
518
+ name?: string;
519
+ /**
520
+ * Git branch name seed for worktree mode
521
+ */
522
+ branchName?: string;
523
+ }>;
524
+ };
525
+ };
503
526
  export type EventSessionCompacted = {
504
527
  type: "session.compacted";
505
528
  properties: {
@@ -1116,7 +1139,7 @@ export type GlobalEvent = {
1116
1139
  directory: string;
1117
1140
  project?: string;
1118
1141
  workspace?: string;
1119
- payload: EventProjectUpdated | EventServerInstanceDisposed | EventServerConnected | EventGlobalDisposed | EventGlobalConfigUpdated | EventFileEdited | EventFileWatcherUpdated | EventLspClientDiagnostics | EventLspUpdated | EventInstallationUpdated | EventInstallationUpdateAvailable | EventTuiPromptAppend | EventTuiCommandExecute | EventTuiToastShow | EventTuiSessionSelect | EventMcpToolsChanged | EventMcpBrowserOpenFailed | EventSessionNetworkAsked | EventSessionNetworkReplied | EventSessionNetworkRejected | EventSessionNetworkRestored | EventMessagePartDelta | EventPermissionAsked | EventPermissionReplied | EventSessionTurnOpen | EventSessionTurnClose | EventSessionDiff | EventSessionError | EventQuestionAsked | EventQuestionReplied | EventQuestionRejected | EventCommandExecuted | EventSuggestionShown | EventSuggestionAccepted | EventSuggestionDismissed | EventSessionStatus | EventSessionIdle | EventTodoUpdated | EventVcsBranchUpdated | EventSessionCompacted | EventKiloSessionsRemoteStatusChanged | EventWorktreeReady | EventWorktreeFailed | EventPtyCreated | EventPtyUpdated | EventPtyExited | EventPtyDeleted | EventWorkspaceReady | EventWorkspaceFailed | EventWorkspaceRestore | EventWorkspaceStatus | EventMessageUpdated | EventMessageRemoved | EventMessagePartUpdated | EventMessagePartRemoved | EventSessionCreated | EventSessionUpdated | EventSessionDeleted | EventIndexingStatus | SyncEventMessageUpdated | SyncEventMessageRemoved | SyncEventMessagePartUpdated | SyncEventMessagePartRemoved | SyncEventSessionCreated | SyncEventSessionUpdated | SyncEventSessionDeleted;
1142
+ payload: EventProjectUpdated | EventServerInstanceDisposed | EventServerConnected | EventGlobalDisposed | EventGlobalConfigUpdated | EventFileEdited | EventFileWatcherUpdated | EventLspClientDiagnostics | EventLspUpdated | EventInstallationUpdated | EventInstallationUpdateAvailable | EventTuiPromptAppend | EventTuiCommandExecute | EventTuiToastShow | EventTuiSessionSelect | EventMcpToolsChanged | EventMcpBrowserOpenFailed | EventSessionNetworkAsked | EventSessionNetworkReplied | EventSessionNetworkRejected | EventSessionNetworkRestored | EventMessagePartDelta | EventPermissionAsked | EventPermissionReplied | EventSessionTurnOpen | EventSessionTurnClose | EventSessionDiff | EventSessionError | EventQuestionAsked | EventQuestionReplied | EventQuestionRejected | EventCommandExecuted | EventSuggestionShown | EventSuggestionAccepted | EventSuggestionDismissed | EventSessionStatus | EventSessionIdle | EventTodoUpdated | EventVcsBranchUpdated | EventKilocodeAgentManagerStart | EventSessionCompacted | EventKiloSessionsRemoteStatusChanged | EventWorktreeReady | EventWorktreeFailed | EventPtyCreated | EventPtyUpdated | EventPtyExited | EventPtyDeleted | EventWorkspaceReady | EventWorkspaceFailed | EventWorkspaceRestore | EventWorkspaceStatus | EventMessageUpdated | EventMessageRemoved | EventMessagePartUpdated | EventMessagePartRemoved | EventSessionCreated | EventSessionUpdated | EventSessionDeleted | EventIndexingStatus | SyncEventMessageUpdated | SyncEventMessageRemoved | SyncEventMessagePartUpdated | SyncEventMessagePartRemoved | SyncEventSessionCreated | SyncEventSessionUpdated | SyncEventSessionDeleted;
1120
1143
  };
1121
1144
  /**
1122
1145
  * Log level
@@ -1280,6 +1303,7 @@ export type PermissionConfig = PermissionActionConfig | {
1280
1303
  lsp?: PermissionRuleConfig;
1281
1304
  doom_loop?: PermissionActionConfig;
1282
1305
  skill?: PermissionRuleConfig;
1306
+ agent_manager?: PermissionRuleConfig;
1283
1307
  [key: string]: PermissionRuleConfig | PermissionActionConfig | undefined;
1284
1308
  };
1285
1309
  export type AgentConfig = {
@@ -1363,6 +1387,7 @@ export type ProviderConfig = {
1363
1387
  id?: string;
1364
1388
  name?: string;
1365
1389
  family?: string;
1390
+ prompt?: "codex" | "gemini" | "beast" | "anthropic" | "trinity" | "anthropic_without_todo" | "ling" | "gpt55";
1366
1391
  release_date?: string;
1367
1392
  attachment?: boolean;
1368
1393
  reasoning?: boolean;
@@ -1562,7 +1587,15 @@ export type Config = {
1562
1587
  * Enable remote control of sessions via Kilo Cloud. Equivalent to running /remote on startup.
1563
1588
  */
1564
1589
  remote_control?: boolean;
1590
+ /**
1591
+ * Automatically collapse reasoning blocks after the agent finishes writing them
1592
+ */
1593
+ auto_collapse_reasoning?: boolean;
1565
1594
  indexing?: IndexingConfig;
1595
+ /**
1596
+ * Controls whether terminal command blocks are expanded or collapsed by default in the VS Code chat UI
1597
+ */
1598
+ terminal_command_display?: "expanded" | "collapsed";
1566
1599
  /**
1567
1600
  * Model to use in the format of provider/model, eg anthropic/claude-2
1568
1601
  */
@@ -1715,6 +1748,10 @@ export type Config = {
1715
1748
  * Enable semantic codebase indexing and the semantic_search tool
1716
1749
  */
1717
1750
  semantic_indexing?: boolean;
1751
+ /**
1752
+ * Enable the VS Code Agent Manager orchestration tool
1753
+ */
1754
+ agent_manager_tool?: boolean;
1718
1755
  /**
1719
1756
  * Enable telemetry. Set to false to opt-out.
1720
1757
  */
@@ -1844,7 +1881,7 @@ export type Model = {
1844
1881
  };
1845
1882
  };
1846
1883
  recommendedIndex?: number;
1847
- prompt?: "codex" | "gemini" | "beast" | "anthropic" | "trinity" | "anthropic_without_todo" | "ling";
1884
+ prompt?: "codex" | "gemini" | "beast" | "anthropic" | "trinity" | "anthropic_without_todo" | "ling" | "gpt55";
1848
1885
  isFree?: boolean;
1849
1886
  ai_sdk_provider?: "alibaba" | "anthropic" | "openai" | "openai-compatible" | "openrouter";
1850
1887
  };
@@ -2070,7 +2107,7 @@ export type File = {
2070
2107
  removed: number;
2071
2108
  status: "added" | "deleted" | "modified";
2072
2109
  };
2073
- export type Event = EventProjectUpdated | EventServerInstanceDisposed | EventServerConnected | EventGlobalDisposed | EventGlobalConfigUpdated | EventFileEdited | EventFileWatcherUpdated | EventLspClientDiagnostics | EventLspUpdated | EventInstallationUpdated | EventInstallationUpdateAvailable | EventTuiPromptAppend | EventTuiCommandExecute | EventTuiToastShow | EventTuiSessionSelect | EventMcpToolsChanged | EventMcpBrowserOpenFailed | EventSessionNetworkAsked | EventSessionNetworkReplied | EventSessionNetworkRejected | EventSessionNetworkRestored | EventMessagePartDelta | EventPermissionAsked | EventPermissionReplied | EventSessionTurnOpen | EventSessionTurnClose | EventSessionDiff | EventSessionError | EventQuestionAsked | EventQuestionReplied | EventQuestionRejected | EventCommandExecuted | EventSuggestionShown | EventSuggestionAccepted | EventSuggestionDismissed | EventSessionStatus | EventSessionIdle | EventTodoUpdated | EventVcsBranchUpdated | EventSessionCompacted | EventKiloSessionsRemoteStatusChanged | EventWorktreeReady | EventWorktreeFailed | EventPtyCreated | EventPtyUpdated | EventPtyExited | EventPtyDeleted | EventWorkspaceReady | EventWorkspaceFailed | EventWorkspaceRestore | EventWorkspaceStatus | EventMessageUpdated | EventMessageRemoved | EventMessagePartUpdated | EventMessagePartRemoved | EventSessionCreated | EventSessionUpdated | EventSessionDeleted | EventIndexingStatus;
2110
+ export type Event = EventProjectUpdated | EventServerInstanceDisposed | EventServerConnected | EventGlobalDisposed | EventGlobalConfigUpdated | EventFileEdited | EventFileWatcherUpdated | EventLspClientDiagnostics | EventLspUpdated | EventInstallationUpdated | EventInstallationUpdateAvailable | EventTuiPromptAppend | EventTuiCommandExecute | EventTuiToastShow | EventTuiSessionSelect | EventMcpToolsChanged | EventMcpBrowserOpenFailed | EventSessionNetworkAsked | EventSessionNetworkReplied | EventSessionNetworkRejected | EventSessionNetworkRestored | EventMessagePartDelta | EventPermissionAsked | EventPermissionReplied | EventSessionTurnOpen | EventSessionTurnClose | EventSessionDiff | EventSessionError | EventQuestionAsked | EventQuestionReplied | EventQuestionRejected | EventCommandExecuted | EventSuggestionShown | EventSuggestionAccepted | EventSuggestionDismissed | EventSessionStatus | EventSessionIdle | EventTodoUpdated | EventVcsBranchUpdated | EventKilocodeAgentManagerStart | EventSessionCompacted | EventKiloSessionsRemoteStatusChanged | EventWorktreeReady | EventWorktreeFailed | EventPtyCreated | EventPtyUpdated | EventPtyExited | EventPtyDeleted | EventWorkspaceReady | EventWorkspaceFailed | EventWorkspaceRestore | EventWorkspaceStatus | EventMessageUpdated | EventMessageRemoved | EventMessagePartUpdated | EventMessagePartRemoved | EventSessionCreated | EventSessionUpdated | EventSessionDeleted | EventIndexingStatus;
2074
2111
  export type McpStatusConnected = {
2075
2112
  status: "connected";
2076
2113
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@kilocode/sdk",
4
- "version": "7.2.30",
4
+ "version": "7.2.33",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "scripts": {