agentio-gtasks
Use when interacting with Google Tasks via the agentio CLI.
What this skill does
# Gtasks via agentio
Auto-generated from `agentio skill gtasks`. Do not edit by hand.
## agentio gtasks lists list
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
```
## agentio gtasks lists create
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"
```
## agentio gtasks lists delete
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
```
## agentio gtasks list
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
```
## agentio gtasks get
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
```
## agentio gtasks add
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
```
## agentio gtasks update
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 completed
```
Examples:
# 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
```
## agentio gtasks done
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
```
## agentio gtasks undo
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
```
## agentio gtasks delete
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
```
## agentio gtasks clear
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'.
```
## agentio gtasks move
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.
```
Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.