Skip to main content
POST
/
agents
/
assists
/
review-summary
Review Summary
curl --request POST \
  --url https://api.example.com/agents/assists/review-summary \
  --header 'Content-Type: application/json' \
  --data '
{
  "task_id": "<string>"
}
'
{
  "summary": "<string>",
  "review_checklist": [
    "<string>"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.pragmatiks.io/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json

Request body for the review-summary assist.

The server pulls the task's graph diff, affected resources, and risk signals — callers only supply the task identifier.

Attributes: task_id: Task to review.

task_id
string
required

Response

Successful Response

Response body for the review-summary assist.

Attributes: summary: Plain-language summary of the proposed changes. risk_level: Overall risk classification. review_checklist: Concrete checks a reviewer should perform before approving the change.

summary
string
required
risk_level
enum<string>
required
Available options:
low,
medium,
high
review_checklist
string[]
required