Sweep 22 Sep 2026 · 17:19Z Build v2.1.280 501 read Stable v2.1.267 Latest v2.1.280 Next v2.1.280 Feeds RSS JSON llms.txt Unofficial
One change · api

migration changed

managed-agents/migration

Nearest release: v2.1.267, 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.

Recorded here
Lines+3added
Lines−1removed
From line 907 where the diff opens
First seen 14 Aug 2026 this site's first read of the page
Recorded edits10to this page, all time

The whole hunk

from line 907, old and new numbered
/
lines
from line 907
907907 {
908908 if (streamEvent.Value is BetaManagedAgentsAgentMessageEvent message)
909909 {
910 Console.WriteLine(string.Concat(message.Content.Select(block => block.Text)));
910 var text = string.Concat(message.Content.Select(block =>
911 block.Value is BetaManagedAgentsTextBlock textBlock ? textBlock.Text : ""));
912 Console.WriteLine(text);
911913 }
912914 else if (streamEvent.Value is BetaManagedAgentsAgentCustomToolUseEvent toolUse)
913915 {