List Applications Pending Review
k4g_list_pending_reviewGet applications with pending review or flagged for discussion, filterable by reviewer or unassigned only.
Instructions
List applications that still need a decision: review_status is 'pending_review' or 'flagged_for_discussion'.
This is the tool to answer "what's stuck in the queue" - it does not include applications already marked 'reviewed'.
Args:
assigned_reviewer (string, optional): filter to one reviewer's queue
unassigned_only (boolean, optional): show only applications nobody owns yet (default false)
Returns JSON with: { count, applications: [ ...summaries, sorted oldest submitted_date first ] }
Examples:
"What's still in David's queue?" -> assigned_reviewer="David"
"What hasn't been picked up by anyone yet?" -> unassigned_only=true
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| unassigned_only | No | If true, only return applications with no reviewer assigned yet. | |
| assigned_reviewer | No | Only show applications assigned to this reviewer. Omit to include all reviewers, including unassigned. |