โ† All skills
Tencent SkillHub ยท Developer Tools

Google Tasks

Fetch, display, create, and delete Google Tasks using the Google Tasks API. Use when the user asks to check, view, list, get, add, create, remove, or delete their Google Tasks, to-do lists, or task items. Handles OAuth authentication automatically using bash script with curl and jq.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Fetch, display, create, and delete Google Tasks using the Google Tasks API. Use when the user asks to check, view, list, get, add, create, remove, or delete their Google Tasks, to-do lists, or task items. Handles OAuth authentication automatically using bash script with curl and jq.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
CLAWHUB_CHECKLIST.md, README.md, SKILL.md, google-tasks-config.sh, package.json, references/setup.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 10 sections Open source page

Google Tasks Skill

Manage Google Tasks from all task lists using lightweight bash scripts.

View tasks

bash scripts/get_tasks.sh

Create a task

# Using default list (configured in google-tasks-config.sh) bash scripts/create_task.sh "Task title" ["due-date"] ["notes"] # Specifying list name bash scripts/create_task.sh "List Name" "Task title" ["due-date"] ["notes"] Examples: # Simple task (uses default list) bash scripts/create_task.sh "Buy groceries" # Task with due date (uses default list) bash scripts/create_task.sh "Finish report" "2026-02-10" # Task with specific list bash scripts/create_task.sh "Work" "Finish report" "2026-02-10" # Task with list, due date, and notes bash scripts/create_task.sh "Personal" "Call mom" "2026-02-05" "Ask about her health" Default list configuration: Edit google-tasks-config.sh to set your default list: DEFAULT_LIST="Private" # Change to your preferred default

Delete a task

bash scripts/delete_task.sh "List Name" <task-number-or-title> Examples: # Delete by task number (position in list) bash scripts/delete_task.sh "Work" 2 # Delete by task title bash scripts/delete_task.sh "Inbox" "Buy groceries"

Requirements

jq - JSON processor (usually pre-installed) curl - HTTP client (usually pre-installed) Valid token.json with OAuth access token Scopes required: https://www.googleapis.com/auth/tasks (read + write)

First-Time Setup

If token.json doesn't exist: User needs OAuth credentials (credentials.json) - See setup.md Run the Node.js authentication flow first to generate token.json Then the bash script can be used for all subsequent calls

Output Format

๐Ÿ“‹ Your Google Tasks: ๐Ÿ“Œ List Name โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ 1. โฌœ Task title (due: YYYY-MM-DD) Note: Task notes if present 2. โฌœ Another task ๐Ÿ“Œ Another List โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ (no tasks)

File Locations

token.json - Access/refresh tokens (workspace root) google-tasks-config.sh - Configuration file (default list setting) scripts/get_tasks.sh - Bash script to view tasks scripts/create_task.sh - Bash script to create tasks scripts/delete_task.sh - Bash script to delete tasks references/setup.md - Detailed setup guide

Implementation

The bash script uses: Google Tasks REST API directly curl for HTTP requests jq for JSON parsing Bearer token authentication from token.json No Python dependencies required.

Troubleshooting

Token expired: Error: Invalid credentials Delete token.json and re-authenticate. Missing jq: bash: jq: command not found Install jq: apt-get install jq or brew install jq For more details, see setup.md.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
4 Docs1 Scripts1 Config
  • SKILL.md Primary doc
  • CLAWHUB_CHECKLIST.md Docs
  • README.md Docs
  • references/setup.md Docs
  • google-tasks-config.sh Scripts
  • package.json Config