List feedback
loopback_list_feedbackList feedback items filtered by project, status, type, severity, source, or assignee. Prioritizes most severe issues first with pagination, enabling agents to work the queue and fix bugs.
Instructions
List feedback items, filtered and paginated. This is the entry point for "work the queue".
Args (all optional): project, status (open|triaged|in_progress|fixed|verified|wontfix), type (ui|backend|usage|ux), severity (p0-p3), source, assignee_agent, limit (default 20), offset (default 0), response_format (markdown|json).
Returns items ordered most-severe first, then newest. Pagination metadata: total, count, offset, has_more, next_offset.
Typical agent flow: loopback_list_feedback(project='X', status='open') → loopback_claim_feedback → fix → loopback_link_change → loopback_update_status(status='fixed').
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| type | No | Filter by feedback type | |
| limit | No | Maximum results to return | |
| route | No | Filter by app route where observed, e.g. '/checkout' | |
| offset | No | Number of results to skip (pagination) | |
| source | No | Filter by source | |
| status | No | Filter by status | |
| project | No | Filter by project slug; omit for all projects | |
| severity | No | Filter by severity | |
| assignee_agent | No | Filter by claiming agent, e.g. 'claude-code' | |
| response_format | No | 'markdown' for human-readable, 'json' for machine-readable | markdown |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| count | Yes | Items in this response | |
| items | Yes | ||
| total | Yes | Total matching the filters | |
| offset | Yes | ||
| has_more | Yes | ||
| next_offset | No | Pass as offset for the next page |