Create, list, and complete Google Tasks via CLI. TRIGGERS: "google tasks", "create task", "task list", "complete task", "to-do", "task reminder"
Scanned 9/3/2026
Install to Claude Code
npx -y skills add Elnora-AI/elnora-google-workspace --skill gw-tasks --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Gw Tasks?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/elnora-ai-gw-tasks)More formats (shields.io, HTML) on the badges page.
---
name: gw-tasks
description: >
Create, list, and complete Google Tasks via CLI.
TRIGGERS: "google tasks", "create task", "task list", "complete task", "to-do", "task reminder"
---
# Tasks
## Invocation
```bash
CLI="python3 ${CLAUDE_PLUGIN_ROOT}/cli/gw.py"
```
## Commands
```bash
$CLI tasks create --title "Follow up" [--due "2026-03-05"] [--notes "..."]
$CLI tasks list --compact
$CLI tasks complete TASK_ID
```
## Response Shapes (validated)
`list`: `{"tasks":[{"id","title","due","notes","status"}],"count":0}`
`create`: `{"created":true,"id","title","due"}`
`complete`: `{"completed":true,"id"}`
## Examples
```bash
# Create task with due date
$CLI tasks create --title "Review Q2 projections" --due "2026-04-10" --notes "Check runway"
# List open tasks
$CLI tasks list --compact
# Complete a task
$CLI tasks complete "MDIxNTc2OTcw..."
```
## Notes
- `--due` format is `YYYY-MM-DD`.
- Default account is `main`. Task IDs are long base64 strings.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.