Google Tasks
Access Google Tasks via the Tasks API with managed OAuth authentication. Manage task lists, tasks, due dates, notes, and completion state.
This skill uses ClawLink for hosted connection flows and credentials so you do not need to configure Google Tasks API access yourself.
Setup in 3 Steps
| Step 1: Install | Step 2: Pair Account | Step 3: Connect Google Tasks |
|:---:|:---:|:---:|
|
|
| App-specific connection GIF coming soon |
| Run the install command in OpenClaw | Sign in and approve the device | Open the dashboard and connect Google Tasks |
How It Works
┌─────────────────┐ ┌──────────────┐ ┌──────────────────┐
│ OpenClaw │────▶│ ClawLink │────▶│ Google Tasks │
│ (User Chat) │ │ (OAuth) │ │ (Tasks API) │
└─────────────────┘ └──────────────┘ └──────────────────┘
│ │ │
│ 1. Install Plugin │ │
│ 2. Pair Device │ │
│ 3. Connect Tasks │ │
│ │ 4. Secure Token │
│ │ 5. Proxy Requests │
│ │ │
▼ ▼ ▼
┌──────────┐ ┌──────────┐ ┌──────────┐
│ SKILL │ │ Dashboard│ │ Google │
│ File │ │ Auth │ │ Tasks │
└──────────┘ └──────────┘ └──────────┘
Install
Install the verified ClawLink plugin from ClawHub. After the user confirms, complete the full setup so ClawLink tools are visible in the next OpenClaw chat.
openclaw plugins install clawhub:clawlink-plugin
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart
Then tell the user: "OpenClaw has been restarted. Send /new as a standalone message to start a fresh chat, then ask for Google Tasks again."
Quick Start
# List task lists
clawlink_call_tool --tool "googletasks_list_tasklists" --params '{}'
# List tasks in a task list
clawlink_call_tool --tool "googletasks_list_tasks" --params '{"tasklist_id": "@default"}'
# Get a task
clawlink_call_tool --tool "googletasks_get_task" --params '{"tasklist_id": "@default", "task_id": "YOUR_TASK_ID"}'
Authentication
All Google Tasks tool calls are authenticated automatically by ClawLink using the user's connected Google account.
No API key is required in chat. ClawLink stores the OAuth token securely and injects it into every Google Tasks API request on the user's behalf.
Getting Connected
- Install the ClawLink plugin (see Install above).
- Pair the plugin with
clawlink_begin_pairingif it is not configured yet. - Open https://claw-link.dev/dashboard?add=google-tasks and connect Google Tasks.
- Call
clawlink_list_integrationsto verify the connection is active.
Connection Management
List Connections
clawlink_list_integrations
Response: Returns all connected integrations. Look for google-tasks in the list.
Verify Connection
clawlink_list_tools --integration google-tasks
Response: Returns the live tool catalog for Google Tasks.
Reconnect
If Google Tasks tools are missing or the connection shows an error:
- Direct the user to https://claw-link.dev/dashboard?add=google-tasks
- After they confirm, call
clawlink_list_integrationsto verify - Then call
clawlink_list_tools --integration google-tasks
Security & Permissions
- Access is scoped to task lists and tasks within the connected Google account.
- All write operations require explicit user confirmation. Before executing any create, update, or delete call, confirm the target resource and intended effect with the user.
- Destructive actions (delete task, clear completed tasks) are marked as high-impact and must be confirmed.
Tool Reference
Task List Management
| Tool | Description | Mode |
|------|-------------|------|
| googletasks_list_tasklists | List all task lists for the authenticated user | Read |
| googletasks_get_tasklist | Get a specific task list by ID | Read |
| googletasks_insert_tasklist | Create a new task list | Write |
| googletasks_update_tasklist | Update a task list's title | Write |
| googletasks_delete_tasklist | Delete a task list and all its tasks | Write |
| googletasks_clear_completed_tasks | Clear all completed tasks from a task list | Write |
Task Operations
| Tool | Description | Mode |
|------|-------------|------|
| googletasks_list_tasks | List all tasks in a task list | Read |
| googletasks_get_task | Get a specific task by ID | Read |
| googletasks_insert_task | Create a new task in a task list | Write |
| googletasks_update_task | Update a task's title, notes, due date, or status | Write |
| googletasks_delete_task | Delete a task | Write |
| googletasks_move_task | Move a task within a task list (change position or list) | Write |
| googletasks_patch_task | Patch a task's individual fields | Write |
Completion Operations
| Tool | Description | Mode |
|------|-------------|------|
| googletasks_complete_task | Mark a task as completed | Write |
| googletasks_uncomplete_task | Mark a task as not completed | Write |
Code Examples
List all task lists
clawlink_call_tool --tool "googletasks_list_tasklists" \
--params '{}'
List tasks in the default task list
clawlink_call_tool --tool "googletasks_list_tasks" \
--params '{
"tasklist_id": "@default"
}'
Create a new task
clawlink_call_tool --tool "googletasks_insert_task" \
--params '{
"tasklist_id": "@default",
"title": "Review quarterly report",
"notes": "Check all numbers before submitting",
"due": "2024-03-15T17:00:00Z"
}'
Mark a task as completed
clawlink_call_tool --tool "googletasks_complete_task" \
--params '{
"tasklist_id": "@default",
"task_id": "YOUR_TASK_ID"
}'
Create a new task list
clawlink_call_tool --tool "googletasks_insert_tasklist" \
--params '{
"title": "Work Projects"
}'
Update a task
clawlink_call_tool --tool "googletasks_update_task" \
--params '{
"tasklist_id": "@default",
"task_id": "YOUR_TASK_ID",
"title": "Updated task title",
"notes": "Added more notes here."
}'
Discovery Workflow
- Call
clawlink_list_integrationsto confirm Google Tasks is connected. - Call
clawlink_list_tools --integration google-tasksto see the live catalog. - Treat the returned list as the source of truth. Do not guess or assume what tools exist.
- If the user describes a capability but the exact tool is unclear, call
clawlink_search_toolswith a short query and integrationgoogle-tasks. - If no Google Tasks tools appear, direct the user to https://claw-link.dev/dashboard?add=google-tasks.
Execution Workflow
┌─────────────────────────────────────────────────────────────┐
│ READ OPERATIONS (Safe) │
│ list → get → call │
│ │
│ Example: List task lists → List tasks → Show results │
└─────────────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ WRITE OPERATIONS (Require Confirmation) │
│ describe → preview → confirm → call │
│ │
│ Example: Describe tool → Preview → User approves │
│ → Execute update │
└─────────────────────────────────────────────────────────────┘
- For unfamiliar tools, ambiguous requests, or any write action, call
clawlink_describe_toolfirst. - Use the returned guidance, schema,
whenToUse,askBefore,safeDefaults,examples, andfollowupsto shape the call. - Prefer read, list, and get operations before writes.
- For writes or anything marked as requiring confirmation, call
clawlink_preview_toolfirst. - Execute with
clawlink_call_tool. Pass confirmation only after the preview matches the user's intent. - If the tool call fails, report the real error. Do not invent results or restate the failure as a missing capability unless the live catalog supports that conclusion.
Notes
- Use
@defaultas the tasklist_id to refer to the user's default task list. - Task IDs are stable within a task list but not across lists.
- Tasks can have subtasks (nested tasks) — the
parentfield defines the hierarchy. - Completed tasks are moved to the "completed" section and hidden by default.
- Due dates use RFC 3339 timestamp format.
clear_completed_taskspermanently removes all completed tasks from a task list.
Error Handling
| Status / Error | Meaning |
|----------------|---------|
| Tool not found | The tool name does not exist in the current catalog. Verify with clawlink_list_tools --integration google-tasks. |
| Missing connection | Google Tasks is not connected. Direct the user to https://claw-link.dev/dashboard?add=google-tasks. |
| RESOURCE_NOT_FOUND | Task or task list does not exist. Check the ID. |
| INVALID_ARGUMENT | Invalid parameter or missing required field. Review the tool schema with clawlink_describe_tool. |
| Write rejected | User did not confirm a write action. Always confirm before executing writes. |
Troubleshooting: Tools Not Visible
- Check that the ClawLink plugin is installed:
openclaw plugins list - If the plugin is installed but tools are missing, tell the user to send
/newas a standalone message to reload the catalog. - If a fresh chat does not help, run:
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json openclaw gateway restart - After restart, tell the user to send
/newagain and retry.
Troubleshooting: Invalid Tool Call
- Ensure the integration slug is exactly
google-tasks. - Use
clawlink_describe_toolto verify parameter names and types before calling. - For write operations, always call
clawlink_preview_toolfirst.
Resources
- Google Tasks API Overview
- Tasklists Reference
- Tasks Reference
- ClawLink: https://claw-link.dev/?utm_source=clawhub&utm_medium=referral&utm_content=google-tasks-tasks
- ClawLink Docs: https://docs.claw-link.dev/openclaw
- ClawLink Verification: https://claw-link.dev/verify
Powered by ClawLink — an integration hub for OpenClaw

微信扫一扫