Google Tasks API integration with managed OAuth. Manage task lists and tasks with full CRUD operations. Use this skill when users want to read, create, update, or delete tasks and task lists in Google Tasks. For other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway).
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install google-tasks-api或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install google-tasks-api⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/google-tasks-api/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: google-tasks description: | Google Tasks API integration with managed OAuth. Manage task lists and tasks with full CRUD operations. Use this skill when users want to read, create, update, or delete tasks and task lists in Google Tasks. For other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway). compatibility: Requires network access and valid Maton API key metadata: author: maton version: "1.0" clawdbot: emoji: 🧠 requires: env: - MATON_API_KEY ---
Access the Google Tasks API with managed OAuth authentication. Manage task lists and tasks with full CRUD operations.
# List all task lists
python <<'EOF'
import urllib.request, os, json
req = urllib.request.Request('https://gateway.maton.ai/google-tasks/tasks/v1/users/@me/lists')
req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')
print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))
EOF
https://gateway.maton.ai/google-tasks/{native-api-path}
Replace {native-api-path} with the actual Google Tasks API endpoint path. The gateway proxies requests to tasks.googleapis.com and automatically injects your OAuth token.
All requests require the Maton API key in the Authorization header:
Authorization: Bearer $MATON_API_KEY
Environment Variable: Set your API key as MATON_API_KEY:
export MATON_API_KEY="YOUR_API_KEY"
Manage your Google Tasks OAuth connections at https://ctrl.maton.ai.
python <<'EOF'
import urllib.request, os, json
req = urllib.request.Request('https://ctrl.maton.ai/connections?app=google-tasks&status=ACTIVE')
req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')
print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))
EOF
python <<'EOF'
import urllib.request, os, json
data = json.dumps({'app': 'google-tasks'}).encode()
req = urllib.request.Request('https://ctrl.maton.ai/connections', data=data, method='POST')
req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')
req.add_header('Content-Type', 'application/json')
print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))
EOF
python <<'EOF'
import urllib.request, os, json
req = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}')
req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')
print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))
EOF
Response:
{
"connection": {
"connection_id": "0e13cacd-cec8-4b6b-9368-c62cc9b06dd9",
"status": "ACTIVE",
"creation_time": "2026-02-07T02:35:51.002199Z",
"last_updated_time": "2026-02-07T05:32:30.369186Z",
"url": "https://connect.maton.ai/?session_token=...",
"app": "google-tasks",
"metadata": {}
}
}
Open the returned url in a browser to complete OAuth authorization.
python <<'EOF'
import urllib.request, os, json
req = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}', method='DELETE')
req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')
print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))
EOF
If you have multiple Google Tasks connections, specify which one to use with the Maton-Connection header:
python <<'EOF'
import urllib.request, os, json
req = urllib.request.Request('https://gateway.maton.ai/google-tasks/tasks/v1/users/@me/lists')
req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')
req.add_header('Maton-Connection', '0e13cacd-cec8-4b6b-9368-c62cc9b06dd9')
print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))
EOF
If omitted, the gateway uses the default (oldest) active connection.
GET /google-tasks/tasks/v1/users/@me/lists
Query Parameters:
maxResults - Maximum number of task lists to return (default: 20, max: 100)pageToken - Token for paginationResponse:
{
"kind": "tasks#taskLists",
"etag": "\"OW7pv01-vgQ\"",
"items": [
{
"kind": "tasks#taskList",
"id": "MDEzMTQ2ODk4NDc2ODkyOTIyMTE6MDow",
"etag": "\"Yz7ljQZ5Xuw\"",
"title": "My Tasks",
"updated": "2023-09-18T06:12:59.468Z",
"selfLink": "https://www.googleapis.com/tasks/v1/users/@me/lists/MDEzMTQ2ODk4NDc2ODkyOTIyMTE6MDow"
}
]
}
GET /google-tasks/tasks/v1/users/@me/lists/{tasklistId}
POST /google-tasks/tasks/v1/users/@me/lists
Content-Type: application/json
{
"title": "New Task List"
}
Response:
{
"kind": "tasks#taskList",
"id": "OFYyU09veWMyWl84SjNQXw",
"etag": "\"XTqLSxP4QZQ\"",
"title": "New Task List",
"updated": "2026-02-07T05:45:22.685Z",
"selfLink": "https://www.googleapis.com/tasks/v1/users/@me/lists/OFYyU09veWMyWl84SjNQXw"
}
PATCH /google-tasks/tasks/v1/users/@me/lists/{tasklistId}
Content-Type: application/json
{
"title": "Updated Title"
}
PUT /google-tasks/tasks/v1/users/@me/lists/{tasklistId}
Content-Type: application/json
{
"title": "Replaced Title"
}
DELETE /google-tasks/tasks/v1/users/@me/lists/{tasklistId}
GET /google-tasks/tasks/v1/lists/{tasklistId}/tasks
Query Parameters:
maxResults - Maximum number of tasks to return (default: 20, max: 100)pageToken - Token for paginationshowCompleted - Include completed tasks (default: true)showDeleted - Include deleted tasks (default: false)showHidden - Include hidden tasks (default: false)dueMin - Lower bound for due date (RFC 3339 timestamp)dueMax - Upper bound for due date (RFC 3339 timestamp)completedMin - Lower bound for completion date (RFC 3339 timestamp)completedMax - Upper bound for completion date (RFC 3339 timestamp)updatedMin - Lower bound for last update time (RFC 3339 timestamp)Response:
{
"kind": "tasks#tasks",
"etag": "\"Jhh35adkRkU\"",
"nextPageToken": "CgwI27nR6AUQsKHh7QIa...",
"items": [
{
"kind": "tasks#task",
"id": "blJQR1hfaXhSU0tMY3gwdg",
"etag": "\"Uqc8Y3T9VOA\"",
"title": "Example Task",
"updated": "2020-11-09T21:17:08.911Z",
"selfLink": "https://www.googleapis.com/tasks/v1/lists/.../tasks/blJQR1hfaXhSU0tMY3gwdg",
"position": "00000000000000000000",
"status": "needsAction",
"due": "2020-12-08T00:00:00.000Z",
"notes": "Task notes here",
"links": [],
"webViewLink": "https://tasks.google.com/task/nRPGX_ixRSKLcx0v?sa=6"
}
]
}
GET /google-tasks/tasks/v1/lists/{tasklistId}/tasks/{taskId}
POST /google-tasks/tasks/v1/lists/{tasklistId}/tasks
Content-Type: application/json
{
"title": "New Task",
"notes": "Task description",
"due": "2026-03-01T00:00:00.000Z"
}
Query Parameters (optional):
parent - Parent task ID (for subtasks)previous - Previous sibling task ID (for positioning)...
安装 Google Tasks 后,可以对 AI 说这些话来触发它
Help me get started with Google Tasks
Explains what Google Tasks does, walks through the setup, and runs a quick demo based on your current project
Use Google Tasks to google Tasks API integration with managed OAuth
Invokes Google Tasks with the right parameters and returns the result directly in the conversation
What can I do with Google Tasks in my product manager workflow?
Lists the top use cases for Google Tasks, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/google-tasks-api/ 目录(个人级,所有项目可用),或 .claude/skills/google-tasks-api/(项目级)。重启 AI 客户端后,用 /google-tasks-api 主动调用,或让 AI 根据上下文自动发现并使用。
Google Tasks 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Google Tasks 可免费安装使用。请查阅仓库了解许可证信息。
Google Tasks API integration with managed OAuth. Manage task lists and tasks with full CRUD operations. Use this skill when users want to read, create, update, or delete tasks and task lists in Google Tasks. For other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway).
Google Tasks 属于「Product Manager」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my product manager tasks using Google Tasks
Identifies repetitive steps in your workflow and sets up Google Tasks to handle them automatically