list_agent_changesets

Lists an AI Agent’s change sets, or returns a single one with the full detail of what it changes.

This is the only way to see change sets — there is no change sets screen in the Ada dashboard.

Read-only. Use edit_agent_behavior to stage, promote, or revert changes.

Example prompts

  • “What behavior changes are staged right now?”
  • “Show me exactly what the pending returns-policy change will alter.”
  • “Which changes were promoted this week?”
  • “Is anything waiting on me to approve?”

Parameters

ParameterTypeDescription
changeset_idstringReturns a single change set with every edit it contains. Omit to list.
include_diffbooleanUsed with changeset_id. Attaches a before-and-after comparison for each edit. Defaults to false.
statusstringUsed when listing. Filters to one status.
limitintegerUsed when listing. Between 1 and 100, defaulting to 50.
cursorstringUsed when listing. Requests the next page of results.

Statuses

StatusMeaning
testingStaged and still editable. Can be tested, promoted, or discarded.
promotingPromotion is in progress.
promotedLive. Can be reverted.
revertedWas live, and has been reversed.

Reviewing a change before promoting

Request a single change set with include_diff to get a field-by-field before-and-after view of everything it stages. This is what an assistant uses to show what will change before asking for approval, and it is the fastest way to confirm a change set does what was intended.

Paging through results

A response that has more results available returns a cursor. Supply that cursor on the next call to continue from where the previous page ended.