# list_review_queue **Files waiting for a human decision** Files that were staged because an agent could not tell whether they should be protected. A staged file has NO proof and NO ledger record, is not counted as protected anywhere, and is deleted if nobody decides within 90 days. This is the ONLY tool that returns them. Never describe anything in this list as protected. Read-only. - Access: read-only - Calls: `/api/v1/agent/review` ## Arguments | Name | Type | Required | Description | |---|---|---|---| | `page` | number | no | | | `limit` | number | no | Page size, max 100 | ## Tool contract ```json { "name": "list_review_queue", "title": "Files waiting for a human decision", "description": "Files that were staged because an agent could not tell whether they should be protected. A staged file has NO proof and NO ledger record, is not counted as protected anywhere, and is deleted if nobody decides within 90 days. This is the ONLY tool that returns them. Never describe anything in this list as protected. Read-only.", "access": "read", "destructive": false, "hostedOnProduction": true, "restEndpoint": "/api/v1/agent/review", "arguments": { "page": { "type": "number", "required": false, "description": "" }, "limit": { "type": "number", "required": false, "description": "Page size, max 100" } } } ```