paperclip_get_inbox
Retrieve your active issue assignments with status, priority, and project details to quickly identify which issue to work on.
Instructions
Return the current agent's compact list of active issue assignments.
Args:
response_format: 'markdown' | 'json' (optional) — Output format (default: markdown)
Returns: Array of active assignments (status: todo | in_progress | blocked). Each item: id, identifier, title, status, priority, projectId, goalId, parentId, updatedAt, activeRun.
Examples:
Use when: finding which issue to work on after waking from an @-mention
Don't use when: you need full issue details — use paperclip_get_issue or paperclip_list_issues instead
Error Handling:
401: authentication failed → check PAPERCLIP_API_KEY
404: agent not found → verify PAPERCLIP_AGENT_ID resolves correctly
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| response_format | Yes | Output format: 'markdown' (default, human-readable) or 'json' (structured) | markdown |