# Send Task Sync 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": "task-sync",
    "name": "Task Sync",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/JP1222/task-sync",
    "canonicalUrl": "https://clawhub.ai/JP1222/task-sync",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/task-sync",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=task-sync",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "e2e_test.py",
      "scripts/setup_google_tasks.py",
      "scripts/setup_ticktick.py",
      "sync.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "task-sync",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T10:07:25.780Z",
      "expiresAt": "2026-05-08T10:07:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=task-sync",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=task-sync",
        "contentDisposition": "attachment; filename=\"task-sync-2.0.3.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "task-sync"
      },
      "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/task-sync"
    },
    "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/task-sync",
    "downloadUrl": "https://openagent3.xyz/downloads/task-sync",
    "agentUrl": "https://openagent3.xyz/skills/task-sync/agent",
    "manifestUrl": "https://openagent3.xyz/skills/task-sync/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/task-sync/agent.md"
  }
}
```
## Documentation

### Task Sync

Operate and troubleshoot bidirectional task sync between TickTick and Google Tasks.

### Run

python {baseDir}/sync.py

### Setup Checklist

Python 3.10+ with: google-auth google-auth-oauthlib google-api-python-client requests
Enable Google Tasks API and run:
python {baseDir}/scripts/setup_google_tasks.py


Create TickTick developer app and run:
python {baseDir}/scripts/setup_ticktick.py


Configure {baseDir}/config.json token and data paths.

### Expected Behavior

Sync Google Task Lists <-> TickTick Projects by same name.
Sync task title, completion status, and notes/content bidirectionally.
Map TickTick priority to Google title prefix: [★] high, [!] medium.
Export TickTick smart lists (Today, Next 7 Days, All) to Google Tasks one-way.

### Due-Date Rule (Calendar Duplicates)

Keep due dates only in the "All" smart list.
For other synced lists, forward date to TickTick then clear Google due date.
Treat this as the source-of-truth rule when debugging duplicate Calendar items.

### Automation

# Cron: every 10 minutes
*/10 * * * * /path/to/python {baseDir}/sync.py >> /path/to/sync.log 2>&1

Use OpenClaw cron if available.

### Troubleshooting Workflow

Re-run both OAuth setup scripts if auth errors appear.
Verify config.json paths point to existing token files.
Run python {baseDir}/sync.py and inspect sync_log.json and sync_db.json.
Check API wrappers:

{baseDir}/utils/google_api.py
{baseDir}/utils/ticktick_api.py
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: JP1222
- Version: 2.0.3
## 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-01T10:07:25.780Z
- Expires at: 2026-05-08T10:07:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/task-sync)
- [Send to Agent page](https://openagent3.xyz/skills/task-sync/agent)
- [JSON manifest](https://openagent3.xyz/skills/task-sync/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/task-sync/agent.md)
- [Download page](https://openagent3.xyz/downloads/task-sync)