@kilocode/plugin 7.4.19 → 7.4.21

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 (58) hide show
  1. package/dist/tui.d.ts +2 -0
  2. package/dist/v2/effect/agent.d.ts +12 -0
  3. package/dist/v2/effect/agent.js +1 -0
  4. package/dist/v2/effect/aisdk.d.ts +17 -0
  5. package/dist/v2/effect/aisdk.js +1 -0
  6. package/dist/v2/effect/catalog.d.ts +29 -0
  7. package/dist/v2/effect/catalog.js +1 -0
  8. package/dist/v2/effect/command.d.ts +11 -0
  9. package/dist/v2/effect/command.js +1 -0
  10. package/dist/v2/effect/context.d.ts +21 -0
  11. package/dist/v2/effect/context.js +1 -0
  12. package/dist/v2/effect/event.d.ts +8 -0
  13. package/dist/v2/effect/event.js +1 -0
  14. package/dist/v2/effect/filesystem.d.ts +23 -0
  15. package/dist/v2/effect/filesystem.js +1 -0
  16. package/dist/v2/effect/index.d.ts +3 -0
  17. package/dist/v2/effect/index.js +1 -0
  18. package/dist/v2/effect/integration.d.ts +46 -0
  19. package/dist/v2/effect/integration.js +1 -0
  20. package/dist/v2/effect/location.d.ts +6 -0
  21. package/dist/v2/effect/location.js +1 -0
  22. package/dist/v2/effect/npm.d.ts +7 -0
  23. package/dist/v2/effect/npm.js +1 -0
  24. package/dist/v2/effect/path.d.ts +8 -0
  25. package/dist/v2/effect/path.js +1 -0
  26. package/dist/v2/effect/plugin.d.ts +11 -0
  27. package/dist/v2/effect/plugin.js +3 -0
  28. package/dist/v2/effect/reference.d.ts +10 -0
  29. package/dist/v2/effect/reference.js +1 -0
  30. package/dist/v2/effect/registration.d.ts +10 -0
  31. package/dist/v2/effect/registration.js +1 -0
  32. package/dist/v2/effect/skill.d.ts +9 -0
  33. package/dist/v2/effect/skill.js +1 -0
  34. package/dist/v2/options.d.ts +1 -0
  35. package/dist/v2/options.js +1 -0
  36. package/dist/v2/promise/agent.d.ts +6 -0
  37. package/dist/v2/promise/agent.js +1 -0
  38. package/dist/v2/promise/aisdk.d.ts +17 -0
  39. package/dist/v2/promise/aisdk.js +1 -0
  40. package/dist/v2/promise/catalog.d.ts +6 -0
  41. package/dist/v2/promise/catalog.js +1 -0
  42. package/dist/v2/promise/command.d.ts +6 -0
  43. package/dist/v2/promise/command.js +1 -0
  44. package/dist/v2/promise/context.d.ts +21 -0
  45. package/dist/v2/promise/context.js +1 -0
  46. package/dist/v2/promise/index.d.ts +12 -0
  47. package/dist/v2/promise/index.js +1 -0
  48. package/dist/v2/promise/integration.d.ts +12 -0
  49. package/dist/v2/promise/integration.js +1 -0
  50. package/dist/v2/promise/plugin.d.ts +10 -0
  51. package/dist/v2/promise/plugin.js +3 -0
  52. package/dist/v2/promise/reference.d.ts +6 -0
  53. package/dist/v2/promise/reference.js +1 -0
  54. package/dist/v2/promise/registration.d.ts +9 -0
  55. package/dist/v2/promise/registration.js +1 -0
  56. package/dist/v2/promise/skill.d.ts +6 -0
  57. package/dist/v2/promise/skill.js +1 -0
  58. package/package.json +21 -4
package/dist/tui.d.ts CHANGED
@@ -287,6 +287,7 @@ export type TuiKV = {
287
287
  export type TuiState = {
288
288
  readonly ready: boolean;
289
289
  readonly config: SdkConfig;
290
+ readonly globalConfig: SdkConfig;
290
291
  readonly provider: ReadonlyArray<Provider>;
291
292
  readonly path: {
292
293
  state: string;
@@ -296,6 +297,7 @@ export type TuiState = {
296
297
  };
297
298
  readonly vcs: {
298
299
  branch?: string;
300
+ default_branch?: string;
299
301
  } | undefined;
300
302
  session: {
301
303
  count: () => number;
@@ -0,0 +1,12 @@
1
+ import type { AgentV2Info } from "@kilocode/sdk/v2/types";
2
+ import type { Hooks } from "./registration.js";
3
+ export interface AgentDraft {
4
+ list(): readonly AgentV2Info[];
5
+ get(id: string): AgentV2Info | undefined;
6
+ default(id: string | undefined): void;
7
+ update(id: string, update: (agent: AgentV2Info) => void): void;
8
+ remove(id: string): void;
9
+ }
10
+ export type AgentHooks = Hooks<{
11
+ transform: AgentDraft;
12
+ }>;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,17 @@
1
+ import type { LanguageModelV3 } from "@ai-sdk/provider";
2
+ import type { ModelV2Info } from "@kilocode/sdk/v2/types";
3
+ import type { Hooks } from "./registration.js";
4
+ export type AISDKHooks = Hooks<{
5
+ sdk: {
6
+ readonly model: ModelV2Info;
7
+ readonly package: string;
8
+ readonly options: Record<string, any>;
9
+ sdk?: any;
10
+ };
11
+ language: {
12
+ readonly model: ModelV2Info;
13
+ readonly sdk: any;
14
+ readonly options: Record<string, any>;
15
+ language?: LanguageModelV3;
16
+ };
17
+ }>;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,29 @@
1
+ import type { ModelV2Info, ProviderV2Info } from "@kilocode/sdk/v2/types";
2
+ import type { Hooks } from "./registration.js";
3
+ export interface CatalogProviderRecord {
4
+ readonly provider: ProviderV2Info;
5
+ readonly models: ReadonlyMap<string, ModelV2Info>;
6
+ }
7
+ export interface CatalogDraft {
8
+ readonly provider: {
9
+ list(): readonly CatalogProviderRecord[];
10
+ get(providerID: string): CatalogProviderRecord | undefined;
11
+ update(providerID: string, update: (provider: ProviderV2Info) => void): void;
12
+ remove(providerID: string): void;
13
+ };
14
+ readonly model: {
15
+ get(providerID: string, modelID: string): ModelV2Info | undefined;
16
+ update(providerID: string, modelID: string, update: (model: ModelV2Info) => void): void;
17
+ remove(providerID: string, modelID: string): void;
18
+ readonly default: {
19
+ get(): {
20
+ providerID: string;
21
+ modelID: string;
22
+ } | undefined;
23
+ set(providerID: string, modelID: string): void;
24
+ };
25
+ };
26
+ }
27
+ export type CatalogHooks = Hooks<{
28
+ transform: CatalogDraft;
29
+ }>;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,11 @@
1
+ import type { CommandV2Info } from "@kilocode/sdk/v2/types";
2
+ import type { Hooks } from "./registration.js";
3
+ export interface CommandDraft {
4
+ list(): readonly CommandV2Info[];
5
+ get(name: string): CommandV2Info | undefined;
6
+ update(name: string, update: (command: CommandV2Info) => void): void;
7
+ remove(name: string): void;
8
+ }
9
+ export type CommandHooks = Hooks<{
10
+ transform: CommandDraft;
11
+ }>;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,21 @@
1
+ import type { PluginOptions } from "../options.js";
2
+ import type { AgentHooks } from "./agent.js";
3
+ import type { AISDKHooks } from "./aisdk.js";
4
+ import type { CatalogHooks } from "./catalog.js";
5
+ import type { CommandHooks } from "./command.js";
6
+ import type { IntegrationHooks } from "./integration.js";
7
+ import type { PluginDomain } from "./plugin.js";
8
+ import type { ReferenceHooks } from "./reference.js";
9
+ import type { SkillHooks } from "./skill.js";
10
+ import type { Reload } from "./registration.js";
11
+ export interface PluginContext {
12
+ readonly options: PluginOptions;
13
+ readonly agent: AgentHooks & Reload;
14
+ readonly aisdk: AISDKHooks;
15
+ readonly catalog: CatalogHooks & Reload;
16
+ readonly command: CommandHooks & Reload;
17
+ readonly integration: IntegrationHooks & Reload;
18
+ readonly plugin: PluginDomain;
19
+ readonly reference: ReferenceHooks & Reload;
20
+ readonly skill: SkillHooks & Reload;
21
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,8 @@
1
+ import type { Event as SDKEvent } from "@kilocode/sdk/v2/types";
2
+ import type { Stream } from "effect";
3
+ export type EventMap = {
4
+ [Item in SDKEvent as Item["type"]]: Item;
5
+ };
6
+ export interface Event {
7
+ subscribe<Type extends keyof EventMap>(type: Type): Stream.Stream<EventMap[Type]>;
8
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,23 @@
1
+ import type { FileSystemEntry } from "@kilocode/sdk/v2/types";
2
+ import type { Effect } from "effect";
3
+ export interface FileSystem {
4
+ read(input: {
5
+ readonly path: string;
6
+ }): Effect.Effect<{
7
+ readonly content: Uint8Array;
8
+ readonly mime: string;
9
+ }>;
10
+ list(input?: {
11
+ readonly path?: string;
12
+ }): Effect.Effect<FileSystemEntry[]>;
13
+ find(input: {
14
+ readonly query: string;
15
+ readonly type?: "file" | "directory";
16
+ readonly limit?: number;
17
+ }): Effect.Effect<FileSystemEntry[]>;
18
+ glob(input: {
19
+ readonly pattern: string;
20
+ readonly path?: string;
21
+ readonly limit?: number;
22
+ }): Effect.Effect<readonly FileSystemEntry[]>;
23
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,3 @@
1
+ export type { PluginContext } from "./context.js";
2
+ export { define } from "./plugin.js";
3
+ export type { Plugin } from "./plugin.js";
@@ -0,0 +1 @@
1
+ export { define } from "./plugin.js";
@@ -0,0 +1,46 @@
1
+ import type { ConnectionInfo, CredentialOAuth, CredentialValue, IntegrationEnvMethod, IntegrationInputs, IntegrationKeyMethod, IntegrationMethod, IntegrationOAuthMethod, IntegrationRef } from "@kilocode/sdk/v2/types";
2
+ import type { Effect, Scope } from "effect";
3
+ import type { Hooks } from "./registration.js";
4
+ export type IntegrationOAuthAuthorization = {
5
+ readonly url: string;
6
+ readonly instructions: string;
7
+ } & ({
8
+ readonly mode: "auto";
9
+ readonly callback: Effect.Effect<CredentialOAuth, unknown>;
10
+ } | {
11
+ readonly mode: "code";
12
+ readonly callback: (code: string) => Effect.Effect<CredentialOAuth, unknown>;
13
+ });
14
+ export type IntegrationOAuthMethodRegistration = {
15
+ readonly integrationID: string;
16
+ readonly method: IntegrationOAuthMethod;
17
+ readonly authorize: (inputs: IntegrationInputs) => Effect.Effect<IntegrationOAuthAuthorization, unknown, Scope.Scope>;
18
+ readonly refresh?: (credential: CredentialOAuth) => Effect.Effect<CredentialOAuth, unknown>;
19
+ readonly label?: (credential: CredentialOAuth) => string | undefined;
20
+ };
21
+ export type IntegrationMethodRegistration = IntegrationOAuthMethodRegistration | {
22
+ readonly integrationID: string;
23
+ readonly method: IntegrationKeyMethod;
24
+ } | {
25
+ readonly integrationID: string;
26
+ readonly method: IntegrationEnvMethod;
27
+ };
28
+ export interface IntegrationDraft {
29
+ list(): readonly IntegrationRef[];
30
+ get(id: string): IntegrationRef | undefined;
31
+ update(id: string, update: (integration: IntegrationRef) => void): void;
32
+ remove(id: string): void;
33
+ readonly method: {
34
+ list(integrationID: string): readonly IntegrationMethod[];
35
+ update(input: IntegrationMethodRegistration): void;
36
+ remove(integrationID: string, method: IntegrationMethod): void;
37
+ };
38
+ }
39
+ export interface IntegrationHooks extends Hooks<{
40
+ transform: IntegrationDraft;
41
+ }> {
42
+ readonly connection: {
43
+ readonly active: (integrationID: string) => Effect.Effect<ConnectionInfo | undefined>;
44
+ readonly resolve: (connection: ConnectionInfo) => Effect.Effect<CredentialValue | undefined, unknown>;
45
+ };
46
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,6 @@
1
+ export interface Location {
2
+ readonly directory: string;
3
+ readonly project: {
4
+ readonly directory: string;
5
+ };
6
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,7 @@
1
+ import type { Effect } from "effect";
2
+ export interface Npm {
3
+ add(pkg: string): Effect.Effect<{
4
+ readonly directory: string;
5
+ readonly entrypoint?: string;
6
+ }, unknown>;
7
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,8 @@
1
+ export interface Path {
2
+ readonly home: string;
3
+ readonly data: string;
4
+ readonly cache: string;
5
+ readonly config: string;
6
+ readonly state: string;
7
+ readonly temp: string;
8
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,11 @@
1
+ import type { Effect, Scope } from "effect";
2
+ import type { PluginContext } from "./context.js";
3
+ export interface Plugin<R = Scope.Scope> {
4
+ readonly id: string;
5
+ readonly effect: (context: PluginContext) => Effect.Effect<void, never, R>;
6
+ }
7
+ export declare function define<R = Scope.Scope>(plugin: Plugin<R>): Plugin<R>;
8
+ export interface PluginDomain {
9
+ readonly add: (plugin: Plugin) => Effect.Effect<void>;
10
+ readonly remove: (id: string) => Effect.Effect<void>;
11
+ }
@@ -0,0 +1,3 @@
1
+ export function define(plugin) {
2
+ return plugin;
3
+ }
@@ -0,0 +1,10 @@
1
+ import type { ReferenceGitSource, ReferenceLocalSource } from "@kilocode/sdk/v2/types";
2
+ import type { Hooks } from "./registration.js";
3
+ export interface ReferenceDraft {
4
+ add(name: string, source: ReferenceLocalSource | ReferenceGitSource): void;
5
+ remove(name: string): void;
6
+ list(): readonly (readonly [string, ReferenceLocalSource | ReferenceGitSource])[];
7
+ }
8
+ export type ReferenceHooks = Hooks<{
9
+ transform: ReferenceDraft;
10
+ }>;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,10 @@
1
+ import type { Effect, Scope } from "effect";
2
+ export interface Registration {
3
+ readonly dispose: Effect.Effect<void>;
4
+ }
5
+ export interface Reload {
6
+ readonly reload: () => Effect.Effect<void>;
7
+ }
8
+ export type Hooks<Spec> = {
9
+ readonly [Name in keyof Spec]: (callback: (input: Spec[Name]) => Effect.Effect<void> | void) => Effect.Effect<Registration, never, Scope.Scope>;
10
+ };
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,9 @@
1
+ import type { SkillV2Source } from "@kilocode/sdk/v2/types";
2
+ import type { Hooks } from "./registration.js";
3
+ export interface SkillDraft {
4
+ source(source: SkillV2Source): void;
5
+ list(): readonly SkillV2Source[];
6
+ }
7
+ export type SkillHooks = Hooks<{
8
+ transform: SkillDraft;
9
+ }>;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export type PluginOptions = Readonly<Record<string, any>>;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,6 @@
1
+ import type { AgentDraft } from "../effect/agent.js";
2
+ import type { Hooks } from "./registration.js";
3
+ export type { AgentDraft };
4
+ export type AgentHooks = Hooks<{
5
+ transform: AgentDraft;
6
+ }>;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,17 @@
1
+ import type { LanguageModelV3 } from "@ai-sdk/provider";
2
+ import type { ModelV2Info } from "@kilocode/sdk/v2/types";
3
+ import type { Hooks } from "./registration.js";
4
+ export type AISDKHooks = Hooks<{
5
+ sdk: {
6
+ readonly model: ModelV2Info;
7
+ readonly package: string;
8
+ readonly options: Record<string, any>;
9
+ sdk?: any;
10
+ };
11
+ language: {
12
+ readonly model: ModelV2Info;
13
+ readonly sdk: any;
14
+ readonly options: Record<string, any>;
15
+ language?: LanguageModelV3;
16
+ };
17
+ }>;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,6 @@
1
+ import type { CatalogDraft, CatalogProviderRecord } from "../effect/catalog.js";
2
+ import type { Hooks } from "./registration.js";
3
+ export type { CatalogDraft, CatalogProviderRecord };
4
+ export type CatalogHooks = Hooks<{
5
+ transform: CatalogDraft;
6
+ }>;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,6 @@
1
+ import type { CommandDraft } from "../effect/command.js";
2
+ import type { Hooks } from "./registration.js";
3
+ export type { CommandDraft };
4
+ export type CommandHooks = Hooks<{
5
+ transform: CommandDraft;
6
+ }>;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,21 @@
1
+ import type { PluginOptions } from "../options.js";
2
+ import type { AgentHooks } from "./agent.js";
3
+ import type { AISDKHooks } from "./aisdk.js";
4
+ import type { CatalogHooks } from "./catalog.js";
5
+ import type { CommandHooks } from "./command.js";
6
+ import type { IntegrationHooks } from "./integration.js";
7
+ import type { PluginDomain } from "./plugin.js";
8
+ import type { ReferenceHooks } from "./reference.js";
9
+ import type { SkillHooks } from "./skill.js";
10
+ import type { Reload } from "./registration.js";
11
+ export interface PluginContext {
12
+ readonly options: PluginOptions;
13
+ readonly agent: AgentHooks & Reload;
14
+ readonly aisdk: AISDKHooks;
15
+ readonly catalog: CatalogHooks & Reload;
16
+ readonly command: CommandHooks & Reload;
17
+ readonly integration: IntegrationHooks & Reload;
18
+ readonly plugin: PluginDomain;
19
+ readonly reference: ReferenceHooks & Reload;
20
+ readonly skill: SkillHooks & Reload;
21
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,12 @@
1
+ export type { PluginContext } from "./context.js";
2
+ export type { PluginOptions } from "../options.js";
3
+ export { define } from "./plugin.js";
4
+ export type { Plugin, PluginDomain } from "./plugin.js";
5
+ export type { Registration, Reload } from "./registration.js";
6
+ export type { AgentDraft, AgentHooks } from "./agent.js";
7
+ export type { AISDKHooks } from "./aisdk.js";
8
+ export type { CatalogDraft, CatalogHooks, CatalogProviderRecord } from "./catalog.js";
9
+ export type { CommandDraft, CommandHooks } from "./command.js";
10
+ export type { IntegrationDraft, IntegrationHooks, IntegrationMethodRegistration } from "./integration.js";
11
+ export type { ReferenceDraft, ReferenceHooks } from "./reference.js";
12
+ export type { SkillDraft, SkillHooks } from "./skill.js";
@@ -0,0 +1 @@
1
+ export { define } from "./plugin.js";
@@ -0,0 +1,12 @@
1
+ import type { IntegrationDraft, IntegrationMethodRegistration } from "../effect/integration.js";
2
+ import type { CredentialValue } from "@kilocode/sdk/v2/types";
3
+ import type { Hooks } from "./registration.js";
4
+ export type { IntegrationDraft, IntegrationMethodRegistration };
5
+ export interface IntegrationHooks extends Hooks<{
6
+ transform: IntegrationDraft;
7
+ }> {
8
+ readonly connection: {
9
+ readonly active: (integrationID: string) => Promise<import("@kilocode/sdk/v2/types").ConnectionInfo | undefined>;
10
+ readonly resolve: (connection: import("@kilocode/sdk/v2/types").ConnectionInfo) => Promise<CredentialValue | undefined>;
11
+ };
12
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,10 @@
1
+ import type { PluginContext } from "./context.js";
2
+ export interface Plugin {
3
+ readonly id: string;
4
+ readonly setup: (context: PluginContext) => Promise<void> | void;
5
+ }
6
+ export declare function define(plugin: Plugin): Plugin;
7
+ export interface PluginDomain {
8
+ readonly add: (plugin: Plugin) => Promise<void>;
9
+ readonly remove: (id: string) => Promise<void>;
10
+ }
@@ -0,0 +1,3 @@
1
+ export function define(plugin) {
2
+ return plugin;
3
+ }
@@ -0,0 +1,6 @@
1
+ import type { ReferenceDraft } from "../effect/reference.js";
2
+ import type { Hooks } from "./registration.js";
3
+ export type { ReferenceDraft };
4
+ export type ReferenceHooks = Hooks<{
5
+ transform: ReferenceDraft;
6
+ }>;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,9 @@
1
+ export interface Registration {
2
+ readonly dispose: () => Promise<void>;
3
+ }
4
+ export interface Reload {
5
+ readonly reload: () => Promise<void>;
6
+ }
7
+ export type Hooks<Spec> = {
8
+ readonly [Name in keyof Spec]: (callback: (input: Spec[Name]) => Promise<void> | void) => Promise<Registration>;
9
+ };
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,6 @@
1
+ import type { SkillDraft } from "../effect/skill.js";
2
+ import type { Hooks } from "./registration.js";
3
+ export type { SkillDraft };
4
+ export type SkillHooks = Hooks<{
5
+ transform: SkillDraft;
6
+ }>;
@@ -0,0 +1 @@
1
+ export {};
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@kilocode/plugin",
4
- "version": "7.4.19",
4
+ "version": "7.4.21",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "scripts": {
@@ -20,15 +20,32 @@
20
20
  "./tui": {
21
21
  "import": "./dist/tui.js",
22
22
  "types": "./dist/tui.d.ts"
23
+ },
24
+ "./v2/effect": {
25
+ "import": "./dist/v2/effect/index.js",
26
+ "types": "./dist/v2/effect/index.d.ts"
27
+ },
28
+ "./v2/effect/integration": {
29
+ "import": "./dist/v2/effect/integration.js",
30
+ "types": "./dist/v2/effect/integration.d.ts"
31
+ },
32
+ "./v2/effect/plugin": {
33
+ "import": "./dist/v2/effect/plugin.js",
34
+ "types": "./dist/v2/effect/plugin.d.ts"
35
+ },
36
+ "./v2/promise": {
37
+ "import": "./dist/v2/promise/index.js",
38
+ "types": "./dist/v2/promise/index.d.ts"
23
39
  }
24
40
  },
25
41
  "files": [
26
42
  "dist"
27
43
  ],
28
44
  "dependencies": {
29
- "@kilocode/sdk": "7.4.19",
30
- "effect": "4.0.0-beta.74",
31
- "zod": "4.1.8"
45
+ "@kilocode/sdk": "7.4.21",
46
+ "effect": "4.0.0-beta.83",
47
+ "zod": "4.1.8",
48
+ "@ai-sdk/provider": "3.0.8"
32
49
  },
33
50
  "peerDependencies": {
34
51
  "@opentui/core": ">=0.3.4",