Source Intelligence
Sweep 28 Aug 2026 ยท 00:00Z Build v2.1.250 478 read Stable v2.1.236 Latest v2.1.250 Next v2.1.250 Feeds RSS JSON llms.txt

DisclaimerUnofficial, and not affiliated with Anthropic. Nearly all of this is read straight out of what ships: npm bundles, captured prompts, published docs. Anthropic's own notes go in verbatim, marked as theirs. The rest is my reading, and every entry carries the strings behind it. If one looks wrong, vote it down and say why.

One change

multiagent-orchestration

managed-agents/multiagent-orchestration

first seen The page's own history The capture it came from

Nearest release: v2.1.238, published under an hour after this site recorded the change. Shown because the two are within 24 hours of each other. Nothing here says the release caused the edit.

managed-agents/multiagent-orchestration Changed · +66 / -50 lines

from line 63
   )
   ```
 
-  ```bash CLI
-  ant beta:agents create <<YAML
-  name: Engineering Lead
-  model: claude-opus-5
-  system: You coordinate engineering work. Delegate code review to the reviewer agent and test writing to the test agent.
-  tools:
-    - type: agent_toolset_20260401
-  multiagent:
-    type: coordinator
-    agents:
-      - type: agent
-        id: $REVIEWER_AGENT_ID
-      - type: agent
-        id: $TEST_WRITER_AGENT_ID
-  YAML
-  ```
+  <MultiFileExample language="cli" label="CLI">
+    ```bash CLI
+    ant beta:agents create < coordinator.agent.yaml
+    ```
 
+    <File filename="coordinator.agent.yaml">
+      ```yaml
+      name: Engineering Lead
+      model: claude-opus-5
+      system: You coordinate engineering work. Delegate code review to the reviewer agent and test writing to the test agent.
+      tools:
+        - type: agent_toolset_20260401
+      multiagent:
+        type: coordinator
+        agents:
+          - type: agent
+            id: $REVIEWER_AGENT_ID # replace before running command
+          - type: agent
+            id: $TEST_WRITER_AGENT_ID # replace before running command
+      ```
+    </File>
+  </MultiFileExample>
+
   ```python Python
   coordinator = client.beta.agents.create(
       name="Engineering Lead",
from line 426
   echo "$session_id"
   ```
 
-  ```bash CLI
-  research_agent_id=$(ant beta:agents create --transform id --raw-output <<YAML
-  name: researcher
-  model: claude-haiku-4-5
-  mcp_servers:
-    - type: url
-      name: github
-      url: https://api.githubcopilot.com/mcp/
-  tools:
-    - type: mcp_toolset
-      mcp_server_name: github
-  YAML
-  )
+  <MultiFileExample language="cli" label="CLI">
+    ```bash CLI
+    research_agent_id=$(ant beta:agents create --transform id --raw-output < researcher.agent.yaml)
+    ```
 
-  coordinator_id=$(ant beta:agents create --transform id --raw-output <<YAML
-  name: coordinator
-  model: claude-opus-5
-  tools:
-    - type: agent_toolset_20260401
-  multiagent:
-    type: coordinator
-    agents:
-      - type: agent
-        id: $research_agent_id
-  YAML
-  )
+    <File filename="researcher.agent.yaml">
+      ```yaml
+      name: researcher
+      model: claude-haiku-4-5
+      mcp_servers:
+        - type: url
+          name: github
+          url: https://api.githubcopilot.com/mcp/
+      tools:
+        - type: mcp_toolset
+          mcp_server_name: github
+      ```
+    </File>
 
-  session_id=$(ant beta:sessions create \
-    --agent "$coordinator_id" \
-    --environment-id "$environment_id" \
-    --vault-id "$vault_id" \
-    --transform id --raw-output)
-  echo "$session_id"
-  ```
+    <File filename="subagent-coordinator.agent.yaml">
+      ```yaml
+      name: coordinator
+      model: claude-opus-5
+      tools:
+        - type: agent_toolset_20260401
+      multiagent:
+        type: coordinator
+        agents:
+          - type: agent
+            id: $research_agent_id # replace before running command
+      ```
+    </File>
+
+    ```bash CLI
+    coordinator_id=$(ant beta:agents create --transform id --raw-output < subagent-coordinator.agent.yaml)
+
+    session_id=$(ant beta:sessions create \
+      --agent "$coordinator_id" \
+      --environment-id "$environment_id" \
+      --vault-id "$vault_id" \
+      --transform id --raw-output)
+    echo "$session_id"
+    ```
+  </MultiFileExample>
 
   ```python Python
   research_agent = client.beta.agents.create(