recipe-review-overdue-tasks

Lists Google Tasks past their due date using the gws CLI.

Updated Nov 9, 2023
One-click install
npx skills add https://github.com/oresttokovenko/dot-files --skill recipe-review-overdue-tasks-oresttokovenko
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: recipe-review-overdue-tasks
Source: https://github.com/oresttokovenko/dot-files/tree/main/chezmoi/dot_agents/skills/recipe-review-overdue-tasks
Command: npx skills add https://github.com/oresttokovenko/dot-files --skill recipe-review-overdue-tasks-oresttokovenko

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Overdue tasks in Google Tasks are easy to lose track of when they are spread across multiple task lists. This recipe walks through listing task lists and their incomplete tasks so you can identify items that are past due and need attention. ## Core Features & Use Cases - Task List Discovery: Enumerates all Google Tasks task lists via gws tasks tasklists list in table format. - Incomplete Task Retrieval: Pulls open tasks for a given task list using the Google Tasks API with showCompleted set to false. - Use Case: At the start of your week, run this recipe to surface every overdue item across your Google Tasks lists and decide which ones to reschedule or prioritize. ## Quick Start Ask the assistant to review my overdue Google Tasks and list which items are past due.

Frequently Asked Questions about recipe-review-overdue-tasks

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I find overdue tasks in Google Tasks?

List your task lists with `gws tasks tasklists list`, then list incomplete tasks per list with `gws tasks tasks list` using `showCompleted: false`. Compare each task's due date against today to identify overdue items.

How to list incomplete Google Tasks from the command line?

Use the gws CLI: run `gws tasks tasks list --params '{"tasklist": "TASKLIST_ID", "showCompleted": false}' --format table`. This returns only open tasks for the specified task list in a readable table.

What do I need installed to review Google Tasks with gws?

You need the gws CLI binary available on your system and the gws-tasks skill loaded, since this recipe depends on it to execute Google Tasks API calls.

Does this recipe modify or complete my Google Tasks?

No. The recipe only reads data: it lists task lists and incomplete tasks for review. It does not update, complete, or delete any tasks.

Why are completed tasks showing up in my task list output?

Completed tasks appear when `showCompleted` is not set to false in the request parameters. Pass `--params '{"tasklist": "TASKLIST_ID", "showCompleted": false}'` to filter them out.