{
  "schemaVersion": "1.0",
  "item": {
    "slug": "ticktick-tasks",
    "name": "TickTick Tasks",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/kaiofreitas/ticktick-tasks",
    "canonicalUrl": "https://clawhub.ai/kaiofreitas/ticktick-tasks",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/ticktick-tasks",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ticktick-tasks",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "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. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/ticktick-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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/ticktick-tasks",
    "agentPageUrl": "https://openagent3.xyz/skills/ticktick-tasks/agent",
    "manifestUrl": "https://openagent3.xyz/skills/ticktick-tasks/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/ticktick-tasks/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "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. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "TickTick Integration",
        "body": "Manage tasks via TickTick's Open API."
      },
      {
        "title": "Setup",
        "body": "First time only:\n\nGo to https://developer.ticktick.com and create an app\nAdd redirect URI: http://127.0.0.1:8765/callback\nRun setup:\n\nticktick-setup <client_id> <client_secret>\n\nOpen the auth URL in browser, authorize, paste the callback URL"
      },
      {
        "title": "Usage",
        "body": "# List projects\nticktick projects\n\n# List all tasks\nticktick tasks\n\n# List tasks from specific project\nticktick tasks <project_id>\n\n# Add task (inbox)\nticktick add \"Buy milk\"\n\n# Add task to project with due date\nticktick add \"Buy milk\" --project <id> --due 2026-01-30\n\n# Complete task\nticktick complete <project_id> <task_id>\n\n# Delete task\nticktick delete <project_id> <task_id>"
      },
      {
        "title": "API Reference",
        "body": "Base URL: https://api.ticktick.com/open/v1\n\nEndpointMethodDescription/projectGETList all projects/project/{id}/dataGETGet project with tasks/taskPOSTCreate task/task/{id}POSTUpdate task/project/{pid}/task/{tid}/completePOSTComplete task/task/{pid}/{tid}DELETEDelete task"
      },
      {
        "title": "Task Object",
        "body": "{\n  \"title\": \"Task title\",\n  \"content\": \"Description\", \n  \"projectId\": \"project-id\",\n  \"dueDate\": \"2026-01-25T12:00:00+0000\",\n  \"priority\": 0,\n  \"tags\": [\"tag1\"]\n}\n\nPriority: 0=none, 1=low, 3=medium, 5=high"
      }
    ],
    "body": "TickTick Integration\n\nManage tasks via TickTick's Open API.\n\nSetup\n\nFirst time only:\n\nGo to https://developer.ticktick.com and create an app\nAdd redirect URI: http://127.0.0.1:8765/callback\nRun setup:\nticktick-setup <client_id> <client_secret>\n\nOpen the auth URL in browser, authorize, paste the callback URL\nUsage\n# List projects\nticktick projects\n\n# List all tasks\nticktick tasks\n\n# List tasks from specific project\nticktick tasks <project_id>\n\n# Add task (inbox)\nticktick add \"Buy milk\"\n\n# Add task to project with due date\nticktick add \"Buy milk\" --project <id> --due 2026-01-30\n\n# Complete task\nticktick complete <project_id> <task_id>\n\n# Delete task\nticktick delete <project_id> <task_id>\n\nAPI Reference\n\nBase URL: https://api.ticktick.com/open/v1\n\nEndpoint\tMethod\tDescription\n/project\tGET\tList all projects\n/project/{id}/data\tGET\tGet project with tasks\n/task\tPOST\tCreate task\n/task/{id}\tPOST\tUpdate task\n/project/{pid}/task/{tid}/complete\tPOST\tComplete task\n/task/{pid}/{tid}\tDELETE\tDelete task\nTask Object\n{\n  \"title\": \"Task title\",\n  \"content\": \"Description\", \n  \"projectId\": \"project-id\",\n  \"dueDate\": \"2026-01-25T12:00:00+0000\",\n  \"priority\": 0,\n  \"tags\": [\"tag1\"]\n}\n\n\nPriority: 0=none, 1=low, 3=medium, 5=high"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/kaiofreitas/ticktick-tasks",
    "publisherUrl": "https://clawhub.ai/kaiofreitas/ticktick-tasks",
    "owner": "kaiofreitas",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/ticktick-tasks",
    "downloadUrl": "https://openagent3.xyz/downloads/ticktick-tasks",
    "agentUrl": "https://openagent3.xyz/skills/ticktick-tasks/agent",
    "manifestUrl": "https://openagent3.xyz/skills/ticktick-tasks/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/ticktick-tasks/agent.md"
  }
}