# Send Google Tasks to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "google-tasks",
    "name": "Google Tasks",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/addozhang/google-tasks",
    "canonicalUrl": "https://clawhub.ai/addozhang/google-tasks",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/google-tasks",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=google-tasks",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "CLAWHUB_CHECKLIST.md",
      "README.md",
      "SKILL.md",
      "google-tasks-config.sh",
      "package.json",
      "references/setup.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "google-tasks",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T23:06:23.496Z",
      "expiresAt": "2026-05-10T23:06:23.496Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=google-tasks",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=google-tasks",
        "contentDisposition": "attachment; filename=\"google-tasks-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "google-tasks"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/google-tasks"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/google-tasks",
    "downloadUrl": "https://openagent3.xyz/downloads/google-tasks",
    "agentUrl": "https://openagent3.xyz/skills/google-tasks/agent",
    "manifestUrl": "https://openagent3.xyz/skills/google-tasks/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/google-tasks/agent.md"
  }
}
```
## Documentation

### 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.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: addozhang
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-03T23:06:23.496Z
- Expires at: 2026-05-10T23:06:23.496Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/google-tasks)
- [Send to Agent page](https://openagent3.xyz/skills/google-tasks/agent)
- [JSON manifest](https://openagent3.xyz/skills/google-tasks/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/google-tasks/agent.md)
- [Download page](https://openagent3.xyz/downloads/google-tasks)