bridge-agent 0.13.10 → 0.13.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.
package/README.md CHANGED
@@ -113,7 +113,7 @@ a daemon-spawned panel.
113
113
  | Qwen CLI | `qwen` | MCP + session support |
114
114
  | Kimi Code | `kimi` | MCP + session support |
115
115
  | Codex CLI | `codex` | MCP enabled |
116
- | Gemini | `gemini` | CLI only |
116
+ | Antigravity | `agy` | MCP enabled |
117
117
  | Ollama | `ollama` | CLI only |
118
118
  | Aider | `aider` | MCP enabled |
119
119
  | Shell | `sh` | Always available |
@@ -22580,7 +22580,7 @@ function registerTodoTools(server, ctx) {
22580
22580
  "Add a new todo to this Bridge project. The todo will appear in the Todos tab immediately. Use dependsOn to chain todos so a task only starts after its dependencies complete. Use todoType to classify the task (planning/implementation/review/infra) \u2014 review todos are automatically routed to reviewer-role panels.",
22581
22581
  {
22582
22582
  title: external_exports.string().min(1).describe("Short title for the todo item"),
22583
- estimatedAgent: external_exports.enum(["claude", "sh", "codex", "qwen", "kimi", "gemini", "ollama", "aider", "forge", "opencode", "copilot"]).optional().describe("Agent key expected to run this todo \u2014 omit to auto-derive from todoType"),
22583
+ estimatedAgent: external_exports.enum(["claude", "sh", "codex", "qwen", "kimi", "agy", "ollama", "aider", "forge", "opencode", "copilot"]).optional().describe("Agent key expected to run this todo \u2014 omit to auto-derive from todoType"),
22584
22584
  dependsOn: external_exports.array(external_exports.string()).optional().describe("List of todo IDs that must complete before this todo starts"),
22585
22585
  todoType: external_exports.enum(["planning", "implementation", "review", "infra"]).optional().describe("Task type \u2014 review todos are routed to reviewer-role panels automatically")
22586
22586
  },
@@ -22634,7 +22634,7 @@ var ALL_AGENT_KEYS = [
22634
22634
  "codex",
22635
22635
  "qwen",
22636
22636
  "kimi",
22637
- "gemini",
22637
+ "agy",
22638
22638
  "ollama",
22639
22639
  "aider",
22640
22640
  "forge",
@@ -22765,7 +22765,7 @@ function registerOrchestrationTools(server, ctx) {
22765
22765
  "bridge_spawn_worker",
22766
22766
  'Spawn a new worker agent on the connected machine. Returns { agentId }. Use bridge_assign_task after spawning to give the worker a task. For dev servers (npm run dev, flutter run, etc.) set role="runner" \u2014 the agent appears in the debug dock, not the agent grid. Shell runner panels are idempotent on cmd: if a runner with the same cmd already exists, its agentId is returned.',
22767
22767
  {
22768
- agentKey: external_exports.string().describe("Agent type: claude, codex, sh, qwen, gemini, ollama, aider, copilot"),
22768
+ agentKey: external_exports.string().describe("Agent type: claude, codex, sh, qwen, agy, ollama, aider, copilot"),
22769
22769
  daemonId: external_exports.string().optional().describe("Target machine ID. Omit to use the workspace default machine."),
22770
22770
  role: external_exports.enum(USER_ASSIGNABLE_ROLES).optional().describe(`Panel role: ${USER_ASSIGNABLE_ROLES.join(", ")}`),
22771
22771
  cmd: external_exports.string().max(512).optional().describe('Command to run after spawn (sh panels only, e.g. "npm run dev"). Sets role to runner automatically.')