paperclip_list_agent_config_revisions
List config revision history for an agent to audit changes or identify revisions for rollback.
Instructions
List the config revision history for an agent.
Args:
agentId: string — Agent UUID (example: "agt_abc123")
Returns: Pagination envelope { items: Revision[], total, count, offset, limit, has_more, next_offset } with up to 50 revisions per page.
Examples:
Use when: auditing recent config changes or finding a revisionId to roll back to
Don't use when: you want to roll back — use paperclip_rollback_agent_config with the target revisionId
Error Handling:
401: authentication failed → check PAPERCLIP_API_KEY
404: agent not found → verify ID with paperclip_list_agents
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| agentId | Yes | Agent UUID | |
| limit | Yes | Max revisions per page (1–100, default 50) | |
| offset | Yes | Number of revisions to skip (default 0) | |
| response_format | Yes | Output format: 'markdown' (default, human-readable) or 'json' (structured) | markdown |