Get Projects for Review
omnifocus_get_projects_for_reviewRetrieve projects that are overdue or due for review within a specified number of days. Filter by status and limit results.
Instructions
Get projects that need review based on their next review date.
Returns projects whose next review date is on or before today (or within specified days ahead).
Args:
daysAhead (number): Days to look ahead, 0-365 (default: 0 = overdue only)
status (string): Filter by status - 'all', 'active', 'done', 'dropped', 'onHold' (default: 'active')
limit (number): Maximum projects to return, 1-500 (default: 50)
Returns: Array of projects needing review sorted by next review date
Examples:
Overdue reviews: {}
Reviews due within 7 days: { daysAhead: 7 }
All active projects due for review: { status: "active", daysAhead: 30 }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum projects to return | |
| status | No | Filter by project status | active |
| daysAhead | No | Number of days ahead to look (0 = overdue reviews only) |