Cloud Agents API doesn't provide summary

Where does the bug appear (feature/product)?

Background Agent (GitHub, Slack, Web, Linear)

Describe the Bug

Since the computer use update, API requests and webhook requests don’t contain a summary field. The docs are telling me there should be summary field

When receiving a webhook from a completed agent I get the following keys:
“payloadKeys”: [ “event”, “timestamp”, “id”, “status”, “source”, “target”, “name”, “createdAt” ].

When I curl the v0/agents/{id} endpoint with an agent I ran, its also missing a summary field:
{
“id”:,
“status”:,
“source”:{
“repository”:,
“ref”:,
“prUrl”:},
“target”:{
“branchName”:,
“url”:,
“prUrl”:,
“autoBranch”:,
“autoCreatePr”:,
“openAsCursorGithubApp”:,
“skipReviewerRequest”:},
“name”:,
“createdAt”:,
“linesAdded”:,
“filesChanged”:
}

Steps to Reproduce

Send a request to the v0/agents/{id} endpoint with a valid id

Expected Behavior

Its not returning the summary field in reponses

Operating System

Windows 10/11

Version Information

Cloud agent, N/A

For AI issues: which model did you use?

Codex-5.3, Composer 1.5

For AI issues: add Request ID with privacy disabled

bc-bd5ce6bc-d0b0-4022-8a8d-68d80a87cefd

Does this stop you from using Cursor

No - Cursor works, but with this issue

Hey, thanks for the report. The docs do say that summary should be included both in the agent status responses and in the list response, so this looks like a regression, most likely after the computer-use feature update you mentioned.

I’ve passed this on to the team.

For now, you can try using the /v0/agents/{id}/conversation endpoint as a workaround to fetch the agent output and generate the summary from that. It’s not ideal, but it might unblock you.

Let me know if anything else comes up.