curl --request POST \
--url https://api.example.com/runs/{id}/steer \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"guidance": "Use a sliding window algorithm instead of fixed window.",
"location": {
"file": "src/middleware/rate-limit.ts",
"line": 42
}
}
'{
"errors": [
{
"status": "404",
"title": "Not Found",
"detail": "Run not found."
}
]
}Sends inline guidance to a running agent, targeting a specific file and line. The guidance is delivered asynchronously.
curl --request POST \
--url https://api.example.com/runs/{id}/steer \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"guidance": "Use a sliding window algorithm instead of fixed window.",
"location": {
"file": "src/middleware/rate-limit.ts",
"line": 42
}
}
'{
"errors": [
{
"status": "404",
"title": "Not Found",
"detail": "Run not found."
}
]
}JWT bearer token issued by fabro-web. See the Authentication guide for details.
Unique run identifier (ULID).
Steering accepted for processing