Claim feedback item
loopback_claim_feedbackAtomically claim a feedback item so only your agent works on it. Sets status to in_progress and optionally force-takes over an existing claim.
Instructions
Atomically claim a feedback item for an agent before working on it. Prevents two agents from fixing the same thing.
Args: id, agent (your name, e.g. 'claude-code', 'codex', 'gemini'), force (default false).
On success the item's assignee_agent is set and status moves to 'in_progress' (from open/triaged). If another agent already holds the claim, this fails with a message naming the holder — pass force=true only if you intend to take over.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Feedback id, e.g. 'fb_mabc12_3f9a1c' | |
| agent | Yes | Name of the claiming agent, e.g. 'claude-code', 'codex', 'gemini' | |
| force | No | Take over even if another agent already claimed the item |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Feedback id, e.g. 'fb_mabc12_3f9a1c' | |
| url | No | ||
| body | Yes | ||
| type | Yes | ||
| extra | Yes | Free-form captured context. Read `extra.failed_responses` for failing requests with up to 2KB of response body, and `extra.context` for LLM/automation run metadata (run_id, model, trace_url). | |
| links | Yes | Repo/branch/commit/PR of the fix | |
| route | No | ||
| title | Yes | ||
| source | Yes | ||
| status | Yes | ||
| console | Yes | Console lines captured at report time | |
| network | Yes | Network calls captured at report time | |
| project | Yes | ||
| comments | No | Full audit trail | |
| reporter | Yes | ||
| severity | Yes | ||
| created_at | Yes | ||
| replay_url | No | ||
| resolution | No | ||
| updated_at | Yes | ||
| attachments | No | Files attached to this item. `intent` decides what you do with each: 'reference' is context for the fix and never ships; 'asset' is a deliverable — copy it from `path` to `target_path` in the repo, commit it, and record that with loopback_link_change. Read files from `path` directly rather than fetching `url`. | |
| repro_steps | Yes | ||
| dom_selector | No | ||
| assignee_agent | No | Agent currently holding the claim | |
| screenshot_path | No |