ワンクリックで
agentio-gtasks
Use when interacting with Google Tasks via the agentio CLI.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use when interacting with Google Tasks via the agentio CLI.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Use when interacting with Google Chat via the agentio CLI - send messages, list spaces, read history.
Use to manage the agentio daemon (runs the scheduler for .run.md prompts).
Use when interacting with Google Docs via the agentio CLI - list, read, create.
Use when interacting with Google Drive via the agentio CLI - list, search, download, upload, folder navigation.
Use when interacting with Gmail via the agentio CLI - list, read, search, send, draft, reply, archive, mark, attachments, export.
Use when interacting with mcp via the agentio CLI.
| name | agentio-gtasks |
| description | Use when interacting with Google Tasks via the agentio CLI. |
Auto-generated from agentio skill gtasks. Do not edit by hand.
List all task lists
Options:
--profile <name>: Profile name (optional if only one profile exists)--limit <n>: Max results (default: 100)Examples:
# show all your task lists with IDs
agentio gtasks lists list
# cap at a smaller number
agentio gtasks lists list --limit 10
Create a new task list
Options:
--profile <name>: Profile name (optional if only one profile exists)Examples:
# create a new top-level task list
agentio gtasks lists create "Groceries"
# title with spaces (quote it)
agentio gtasks lists create "Q4 Roadmap"
Delete a task list
Options:
--profile <name>: Profile name (optional if only one profile exists)Examples:
# delete a list (irreversible — deletes all its tasks)
agentio gtasks lists delete MTIzNDU2Nzg5MA
List tasks in a task list
Options:
--profile <name>: Profile name (optional if only one profile exists)--limit <n>: Max results (default: 20)--show-completed: Include completed tasks (default: true)--no-show-completed: Exclude completed tasks--show-hidden: Include hidden tasks--due-min <datetime>: Filter: due date minimum (RFC3339)--due-max <datetime>: Filter: due date maximum (RFC3339)Examples:
# tasks in a list (default: includes completed)
agentio gtasks list MTIzNDU2Nzg5MA
# only outstanding work
agentio gtasks list MTIzNDU2Nzg5MA --no-show-completed
# tasks due this week
agentio gtasks list MTIzNDU2Nzg5MA \
--due-min 2024-04-15T00:00:00Z --due-max 2024-04-22T00:00:00Z
# include hidden (cleared completed) tasks too
agentio gtasks list MTIzNDU2Nzg5MA --show-hidden
Get a specific task
Options:
--profile <name>: Profile name (optional if only one profile exists)Examples:
# full task details (notes, due, status, parent)
agentio gtasks get MTIzNDU2Nzg5MA NjU0MzIxMA
Add a new task
Options:
--profile <name>: Profile name (optional if only one profile exists)--title <title>: Task title--notes <text>: Task notes/description (or pipe via stdin)--due <date>: Due date (RFC3339 or YYYY-MM-DD)--parent <task-id>: Parent task ID (create as subtask)--previous <task-id>: Previous sibling task ID (controls ordering)Examples:
# simple task
agentio gtasks add MTIzNDU2Nzg5MA --title "Buy milk"
# task with notes (piped from stdin) and a due date
echo "2 cartons, organic" | agentio gtasks add MTIzNDU2Nzg5MA --title "Buy milk" --due 2024-04-20
# subtask of an existing task
agentio gtasks add MTIzNDU2Nzg5MA --title "Section 1" --parent NjU0MzIxMA
# control ordering: place new task right after another
agentio gtasks add MTIzNDU2Nzg5MA --title "Step 2" --previous NjU0MzIxMA
Update an existing task
Options:
--profile <name>: Profile name (optional if only one profile exists)--title <title>: New title--notes <text>: New notes (or pipe via stdin)--due <date>: New due date (RFC3339 or YYYY-MM-DD, empty to clear)--status <status>: New status: needsAction or completedExamples:
# rename a task
agentio gtasks update MTIzNDU2Nzg5MA NjU0MzIxMA --title "Buy oat milk"
# change due date
agentio gtasks update MTIzNDU2Nzg5MA NjU0MzIxMA --due 2024-04-22
# replace notes from stdin
cat new-notes.txt | agentio gtasks update MTIzNDU2Nzg5MA NjU0MzIxMA
# mark complete via status
agentio gtasks update MTIzNDU2Nzg5MA NjU0MzIxMA --status completed
Mark a task as completed
Options:
--profile <name>: Profile name (optional if only one profile exists)Examples:
# mark a task complete
agentio gtasks done MTIzNDU2Nzg5MA NjU0MzIxMA
Mark a task as needs action (not completed)
Options:
--profile <name>: Profile name (optional if only one profile exists)Examples:
# revert a task back to needs-action
agentio gtasks undo MTIzNDU2Nzg5MA NjU0MzIxMA
Delete a task
Options:
--profile <name>: Profile name (optional if only one profile exists)Examples:
# remove a task entirely (irreversible)
agentio gtasks delete MTIzNDU2Nzg5MA NjU0MzIxMA
Clear all completed tasks from a task list
Options:
--profile <name>: Profile name (optional if only one profile exists)Examples:
# hide all completed tasks from the list
agentio gtasks clear MTIzNDU2Nzg5MA
Cleared tasks remain accessible via 'gtasks list --show-hidden'.
Move a task (change parent or position)
Options:
--profile <name>: Profile name (optional if only one profile exists)--parent <task-id>: New parent task ID (make subtask)--previous <task-id>: Previous sibling task ID (change position)Examples:
# nest a task under another (make it a subtask)
agentio gtasks move MTIzNDU2Nzg5MA NjU0MzIxMA --parent ABCD1234EFGH
# reorder: place after a specific sibling
agentio gtasks move MTIzNDU2Nzg5MA NjU0MzIxMA --previous ABCD1234EFGH
# promote subtask + reorder in one call
agentio gtasks move MTIzNDU2Nzg5MA NjU0MzIxMA --parent NEWP4R3NTID --previous ABCD1234EFGH
At least one of --parent or --previous is required.