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.
| Step 1: Install | Step 2: Pair Account | Step 3: Connect Google Tasks |
|---|---|---|
| :---: | :---: | :---: |
| !Install | !Pair | 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 |
┌─────────────────┐ ┌──────────────┐ ┌──────────────────┐
│ 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 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."
# 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"}'
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.
clawlink_begin_pairing if it is not configured yet.clawlink_list_integrations to verify the connection is active.clawlink_list_integrations
Response: Returns all connected integrations. Look for google-tasks in the list.
clawlink_list_tools --integration google-tasks
Response: Returns the live tool catalog for Google Tasks.
If Google Tasks tools are missing or the connection shows an error:
clawlink_list_integrations to verifyclawlink_list_tools --integration google-tasks| 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 |
| 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 |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
googletasks_complete_task | Mark a task as completed | Write |
googletasks_uncomplete_task | Mark a task as not completed | Write |
clawlink_call_tool --tool "googletasks_list_tasklists" \
--params '{}'
clawlink_call_tool --tool "googletasks_list_tasks" \
--params '{
"tasklist_id": "@default"
}'
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"
}'
clawlink_call_tool --tool "googletasks_complete_task" \
--params '{
"tasklist_id": "@default",
"task_id": "YOUR_TASK_ID"
}'
clawlink_call_tool --tool "googletasks_insert_tasklist" \
--params '{
"title": "Work Projects"
}'
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."
}'
clawlink_list_integrations to confirm Google Tasks is connected.clawlink_list_tools --integration google-tasks to see the live catalog.clawlink_search_tools with a short query and integration google-tasks.┌─────────────────────────────────────────────────────────────┐
│ 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 │
└─────────────────────────────────────────────────────────────┘
clawlink_describe_tool first.whenToUse, askBefore, safeDefaults, examples, and followups to shape the call.clawlink_preview_tool first.clawlink_call_tool. Pass confirmation only after the preview matches the user's intent.@default as the tasklist_id to refer to the user's default task list.parent field defines the hierarchy.clear_completed_tasks permanently removes all completed tasks from a task list.| 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. |
```bash
openclaw plugins list
```
/new as a standalone message to reload the catalog.```bash
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart
```
/new again and retry.google-tasks.clawlink_describe_tool to verify parameter names and types before calling.clawlink_preview_tool first.Powered by ClawLink — an integration hub for OpenClaw
共 2 个版本