Skip to main content
POST
Fix Ci

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

task_id
string<uuid>
required
pr_id
string<uuid>
required

Response

Successful Response

Server-composed fix-CI prompt for the frontend to send as a system-event chat message via the existing useTaskStream.sendMessage flow. Returning the prompt (rather than streaming the message server-side) lets the chat UI render the optimistic chip, stream the assistant chunks live, and persist the exchange via the same code path as a hand-typed message — no separate "did the chat update?" plumbing for synthetic messages.

display is the short chip text the chat should SHOW (persisted as the message content via TaskMessageCreate.display_content); prompt is the full instruction only the agent receives. kind is always "system_event" — echoed so the frontend forwards it verbatim.

prompt
string
required
display
string
default:""
kind
string
default:system_event