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 · claude-code

Track todos changed

agent-sdk/todo-tracking

Nearest release: v2.1.251, published 7 hours before 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+2added
Lines−2removed
From line 70 where the diff opens
First seen 14 Aug 2026 this site's first read of the page
Recorded edits7to this page, all time

The whole hunk

from line 70, old and new numbered
/
lines
from line 70
7070 
7171 try {
7272 for await (const message of query({
73 prompt: "Optimize my React app performance and track progress with todos",
73 prompt: "Create a static website with a home page, an about page, and a shared stylesheet, and track progress with todos",
7474 // Keeps the Task tools on models where Claude Code otherwise doesn't provide them.
7575 options: { maxTurns: 15, permissionMode: "acceptEdits", env: { ...process.env, CLAUDE_CODE_ENABLE_TODO_TOOLS: "1" } },
7676 })) {
from line 106
106106 async def main():
107107 try:
108108 async for message in query(
109 prompt="Optimize my React app performance and track progress with todos",
109 prompt="Create a static website with a home page, an about page, and a shared stylesheet, and track progress with todos",
110110 # Keeps the Task tools on models where Claude Code otherwise doesn't provide them.
111111 options=ClaudeAgentOptions(max_turns=15, permission_mode="acceptEdits", env={"CLAUDE_CODE_ENABLE_TODO_TOOLS": "1"}),
112112 ):