@getforgeai/protocol 0.1.0-beta.2 → 0.1.0-beta.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.
@@ -3,7 +3,7 @@
3
3
  * Shared by the CLI (spawn profiles, config validation) and the Cloud
4
4
  * (device settings, Zod boundaries).
5
5
  */
6
- export declare const AGENT_TYPE: readonly ["CLAUDE_CODE", "CODEX", "OPENCODE"];
6
+ export declare const AGENT_TYPE: readonly ["CLAUDE_CODE", "CODEX", "OPENCODE", "KILO"];
7
7
  export type AgentType = (typeof AGENT_TYPE)[number];
8
8
  /** Human-readable labels for UI display. */
9
9
  export declare const AGENT_TYPE_LABELS: Record<AgentType, string>;
@@ -3,12 +3,13 @@
3
3
  * Shared by the CLI (spawn profiles, config validation) and the Cloud
4
4
  * (device settings, Zod boundaries).
5
5
  */
6
- export const AGENT_TYPE = ["CLAUDE_CODE", "CODEX", "OPENCODE"];
6
+ export const AGENT_TYPE = ["CLAUDE_CODE", "CODEX", "OPENCODE", "KILO"];
7
7
  /** Human-readable labels for UI display. */
8
8
  export const AGENT_TYPE_LABELS = {
9
9
  CLAUDE_CODE: "Claude Code",
10
10
  CODEX: "Codex",
11
11
  OPENCODE: "OpenCode",
12
+ KILO: "Kilo Code",
12
13
  };
13
14
  export const DEFAULT_AGENT_TYPE = "CLAUDE_CODE";
14
15
  /** Narrow an arbitrary string (config file, DB column) to a known AgentType. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getforgeai/protocol",
3
- "version": "0.1.0-beta.2",
3
+ "version": "0.1.0-beta.3",
4
4
  "description": "Shared types, constants, Socket.io event definitions and Zod schemas for the ForgeAI CLI/Cloud contract.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",