Changelog #024
Hey everyone! Quiet week. Two things landed worth flagging.
We added deep research examples to the cookbook โ full agent workflows you can fork and run. And the Files API docs got a long-overdue scrub: a few of the example endpoints and SDK calls were just wrong.
โญ New
- Deep research with Claude Agent SDK subagents in the cookbook โ a lead orchestrator dispatches parallel researcher subagents, each driving its own Steel browser, and synthesizes findings into a cited Markdown report. Source on GitHub: TS ยท Python.
๐ง Improvements
- Hermesforge Screenshot API added to awesome-web-agents.
๐ Bug Fixes
- Files API docs corrections. Upload endpoints don't have a
/uploadsuffix โ it'sPOST /v1/sessions/{id}/filesandPOST /v1/files. Session archive isGET /v1/sessions/{id}/files.zip. List responses come back as{ data: [...] }. The SDK method isclient.sessions.files.downloadArchive(...), and global file uploads returnpath, notid. If the old examples sent you to a 404, sorry about that.