{
  "schemaVersion": "1.0",
  "item": {
    "slug": "todoist-v1",
    "name": "Todoist v1 API Reference",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/fluidiguana/todoist-v1",
    "canonicalUrl": "https://clawhub.ai/fluidiguana/todoist-v1",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/todoist-v1",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=todoist-v1",
    "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-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-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/todoist-v1"
    },
    "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/todoist-v1",
    "agentPageUrl": "https://openagent3.xyz/skills/todoist-v1/agent",
    "manifestUrl": "https://openagent3.xyz/skills/todoist-v1/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/todoist-v1/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": "Todoist",
        "body": "API v1 at https://api.todoist.com/api/v1/. Auth via Bearer token."
      },
      {
        "title": "Auth",
        "body": "Token stored in env var TODOIST_TOKEN. Set it in your shell or OpenClaw config:\n\nexport TODOIST_TOKEN=your-token-here\n\nGet your token from: https://app.todoist.com/app/settings/integrations/developer"
      },
      {
        "title": "List tasks",
        "body": "curl -s \"https://api.todoist.com/api/v1/tasks\" \\\n  -H \"Authorization: Bearer $TODOIST_TOKEN\" | python3 -m json.tool\n\nFilter by project:\n\ncurl -s \"https://api.todoist.com/api/v1/tasks?project_id=PROJECT_ID\" \\\n  -H \"Authorization: Bearer $TODOIST_TOKEN\""
      },
      {
        "title": "Get a single task",
        "body": "curl -s \"https://api.todoist.com/api/v1/tasks/TASK_ID\" \\\n  -H \"Authorization: Bearer $TODOIST_TOKEN\""
      },
      {
        "title": "Create a task",
        "body": "curl -s -X POST \"https://api.todoist.com/api/v1/tasks\" \\\n  -H \"Authorization: Bearer $TODOIST_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"content\": \"Task name\", \"project_id\": \"PROJECT_ID\", \"due_string\": \"tomorrow\", \"priority\": 1}'\n\nPriority: 1 (normal) to 4 (urgent). due_string supports natural language (\"tomorrow\", \"every monday\", \"Feb 20\")."
      },
      {
        "title": "Complete a task",
        "body": "curl -s -X POST \"https://api.todoist.com/api/v1/tasks/TASK_ID/close\" \\\n  -H \"Authorization: Bearer $TODOIST_TOKEN\""
      },
      {
        "title": "Update a task",
        "body": "curl -s -X POST \"https://api.todoist.com/api/v1/tasks/TASK_ID\" \\\n  -H \"Authorization: Bearer $TODOIST_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"content\": \"Updated name\", \"due_string\": \"next friday\"}'"
      },
      {
        "title": "Delete a task",
        "body": "curl -s -X DELETE \"https://api.todoist.com/api/v1/tasks/TASK_ID\" \\\n  -H \"Authorization: Bearer $TODOIST_TOKEN\""
      },
      {
        "title": "List projects",
        "body": "curl -s \"https://api.todoist.com/api/v1/projects\" \\\n  -H \"Authorization: Bearer $TODOIST_TOKEN\""
      },
      {
        "title": "Create a project",
        "body": "curl -s -X POST \"https://api.todoist.com/api/v1/projects\" \\\n  -H \"Authorization: Bearer $TODOIST_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\": \"Project Name\"}'"
      },
      {
        "title": "List sections",
        "body": "curl -s \"https://api.todoist.com/api/v1/sections?project_id=PROJECT_ID\" \\\n  -H \"Authorization: Bearer $TODOIST_TOKEN\""
      },
      {
        "title": "Create a section",
        "body": "curl -s -X POST \"https://api.todoist.com/api/v1/sections\" \\\n  -H \"Authorization: Bearer $TODOIST_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"project_id\": \"PROJECT_ID\", \"name\": \"Section Name\", \"order\": 0}'"
      },
      {
        "title": "Move task to section",
        "body": "curl -s -X POST \"https://api.todoist.com/api/v1/tasks/TASK_ID\" \\\n  -H \"Authorization: Bearer $TODOIST_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"section_id\": \"SECTION_ID\"}'"
      },
      {
        "title": "Notes",
        "body": "API v2 is deprecated (410 Gone). Use v1.\nToken is a personal API token, not OAuth.\nUse \"List projects\" and \"List sections\" to discover your project/section IDs.\nPrefer completing tasks over deleting them."
      }
    ],
    "body": "Todoist\n\nAPI v1 at https://api.todoist.com/api/v1/. Auth via Bearer token.\n\nAuth\n\nToken stored in env var TODOIST_TOKEN. Set it in your shell or OpenClaw config:\n\nexport TODOIST_TOKEN=your-token-here\n\n\nGet your token from: https://app.todoist.com/app/settings/integrations/developer\n\nCommon Operations\nList tasks\ncurl -s \"https://api.todoist.com/api/v1/tasks\" \\\n  -H \"Authorization: Bearer $TODOIST_TOKEN\" | python3 -m json.tool\n\n\nFilter by project:\n\ncurl -s \"https://api.todoist.com/api/v1/tasks?project_id=PROJECT_ID\" \\\n  -H \"Authorization: Bearer $TODOIST_TOKEN\"\n\nGet a single task\ncurl -s \"https://api.todoist.com/api/v1/tasks/TASK_ID\" \\\n  -H \"Authorization: Bearer $TODOIST_TOKEN\"\n\nCreate a task\ncurl -s -X POST \"https://api.todoist.com/api/v1/tasks\" \\\n  -H \"Authorization: Bearer $TODOIST_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"content\": \"Task name\", \"project_id\": \"PROJECT_ID\", \"due_string\": \"tomorrow\", \"priority\": 1}'\n\n\nPriority: 1 (normal) to 4 (urgent). due_string supports natural language (\"tomorrow\", \"every monday\", \"Feb 20\").\n\nComplete a task\ncurl -s -X POST \"https://api.todoist.com/api/v1/tasks/TASK_ID/close\" \\\n  -H \"Authorization: Bearer $TODOIST_TOKEN\"\n\nUpdate a task\ncurl -s -X POST \"https://api.todoist.com/api/v1/tasks/TASK_ID\" \\\n  -H \"Authorization: Bearer $TODOIST_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"content\": \"Updated name\", \"due_string\": \"next friday\"}'\n\nDelete a task\ncurl -s -X DELETE \"https://api.todoist.com/api/v1/tasks/TASK_ID\" \\\n  -H \"Authorization: Bearer $TODOIST_TOKEN\"\n\nList projects\ncurl -s \"https://api.todoist.com/api/v1/projects\" \\\n  -H \"Authorization: Bearer $TODOIST_TOKEN\"\n\nCreate a project\ncurl -s -X POST \"https://api.todoist.com/api/v1/projects\" \\\n  -H \"Authorization: Bearer $TODOIST_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\": \"Project Name\"}'\n\nList sections\ncurl -s \"https://api.todoist.com/api/v1/sections?project_id=PROJECT_ID\" \\\n  -H \"Authorization: Bearer $TODOIST_TOKEN\"\n\nCreate a section\ncurl -s -X POST \"https://api.todoist.com/api/v1/sections\" \\\n  -H \"Authorization: Bearer $TODOIST_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"project_id\": \"PROJECT_ID\", \"name\": \"Section Name\", \"order\": 0}'\n\nMove task to section\ncurl -s -X POST \"https://api.todoist.com/api/v1/tasks/TASK_ID\" \\\n  -H \"Authorization: Bearer $TODOIST_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"section_id\": \"SECTION_ID\"}'\n\nNotes\nAPI v2 is deprecated (410 Gone). Use v1.\nToken is a personal API token, not OAuth.\nUse \"List projects\" and \"List sections\" to discover your project/section IDs.\nPrefer completing tasks over deleting them."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/fluidiguana/todoist-v1",
    "publisherUrl": "https://clawhub.ai/fluidiguana/todoist-v1",
    "owner": "fluidiguana",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/todoist-v1",
    "downloadUrl": "https://openagent3.xyz/downloads/todoist-v1",
    "agentUrl": "https://openagent3.xyz/skills/todoist-v1/agent",
    "manifestUrl": "https://openagent3.xyz/skills/todoist-v1/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/todoist-v1/agent.md"
  }
}