bridge-agent 0.13.8 → 0.13.10
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/bridge-mcp.cjs +3 -2
- package/dist/index.js +66 -65
- package/package.json +1 -1
package/dist/bridge-mcp.cjs
CHANGED
|
@@ -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", "gemini", "ollama", "aider"]).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", "gemini", "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
|
},
|
|
@@ -22639,6 +22639,7 @@ var ALL_AGENT_KEYS = [
|
|
|
22639
22639
|
"aider",
|
|
22640
22640
|
"forge",
|
|
22641
22641
|
"opencode",
|
|
22642
|
+
"copilot",
|
|
22642
22643
|
"sim_ios"
|
|
22643
22644
|
];
|
|
22644
22645
|
var AGENT_ROLES = [
|
|
@@ -22764,7 +22765,7 @@ function registerOrchestrationTools(server, ctx) {
|
|
|
22764
22765
|
"bridge_spawn_worker",
|
|
22765
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.',
|
|
22766
22767
|
{
|
|
22767
|
-
agentKey: external_exports.string().describe("Agent type: claude, codex, sh, qwen, gemini, ollama, aider"),
|
|
22768
|
+
agentKey: external_exports.string().describe("Agent type: claude, codex, sh, qwen, gemini, ollama, aider, copilot"),
|
|
22768
22769
|
daemonId: external_exports.string().optional().describe("Target machine ID. Omit to use the workspace default machine."),
|
|
22769
22770
|
role: external_exports.enum(USER_ASSIGNABLE_ROLES).optional().describe(`Panel role: ${USER_ASSIGNABLE_ROLES.join(", ")}`),
|
|
22770
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.')
|