Documentation Index
Fetch the complete documentation index at: https://docs.selftune.dev/llms.txt
Use this file to discover all available pages before exploring further.
Overview
The Proposals API lets you list, retrieve, and apply improvement proposals generated by cloud improve runs. Proposals represent suggested changes to a skill’s content, backed by eval evidence. All endpoints require a Bearer token in theAuthorization header.
List proposals
Get proposal detail
Apply a proposal
pending or approved proposal to a target stage. Currently the only supported target is draft.
Request body:
| Field | Type | Description |
|---|---|---|
candidate_id | string | ID of the cloud candidate to apply. Found in the proposal’s cloud_candidate_id field. |
target | string | Apply destination. Must be "draft". |
| Code | Meaning |
|---|---|
200 | Proposal applied successfully |
400 | Invalid request body or unsupported target |
404 | Proposal not found |
409 | Proposal already applied or rejected |
401 | Missing or invalid token |
Applying a proposal writes the change to draft only. Proposals with
applied or rejected status cannot be re-applied.