baa-conductor

git clone 

baa-conductor / docs / baa-instruction-system-v5 / schemas
codex@macbookpro  ·  2026-03-27

baa-route-catalog.example.json

 1{
 2  "nodes": [
 3    {
 4      "node_id": "conductor",
 5      "kind": "orchestrator",
 6      "capabilities": [
 7        "exec",
 8        "files.read",
 9        "files.write",
10        "tasks.read",
11        "artifact.package",
12        "artifact.manifest",
13        "delivery.plan"
14      ]
15    },
16    {
17      "node_id": "firefox.bridge.local",
18      "kind": "browser_bridge",
19      "capabilities": [
20        "page.request",
21        "message.observe",
22        "artifact.upload",
23        "artifact.download",
24        "input.inject"
25      ]
26    },
27    {
28      "node_id": "chatgpt.agent.beta",
29      "kind": "browser_ai",
30      "capabilities": [
31        "chat.send",
32        "chat.read",
33        "image.generate",
34        "code.execute"
35      ]
36    },
37    {
38      "node_id": "gemini.agent.gamma",
39      "kind": "browser_ai",
40      "capabilities": [
41        "chat.send",
42        "chat.read",
43        "image.generate",
44        "video.generate"
45      ]
46    }
47  ],
48  "pools": {
49    "pool.image": [
50      "chatgpt.agent.beta",
51      "gemini.agent.gamma"
52    ],
53    "pool.exec": [
54      "conductor"
55    ],
56    "pool.review": [
57      "chatgpt.agent.beta"
58    ]
59  }
60}