Skip to main content
POST
/
agents
/
assists
/
improve-task
Improve Task
curl --request POST \
  --url https://api.example.com/agents/assists/improve-task \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>",
  "description": "<string>"
}
'
{
  "title": "<string>",
  "description": "<string>",
  "rationale": "<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 improve-task assist.

Attributes: title: Existing task title to refine. description: Existing task description, when available.

title
string
required
description
string | null

Response

Successful Response

Response body for the improve-task assist.

Attributes: title: Suggested replacement title. description: Suggested replacement description. rationale: Short explanation of the improvements applied.

title
string
required
description
string
required
rationale
string
required