{
  "schemaVersion": "1.0",
  "item": {
    "slug": "todoist-natural-language",
    "name": "Todoist Natural Language",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/hail2skins/todoist-natural-language",
    "canonicalUrl": "https://clawhub.ai/hail2skins/todoist-natural-language",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/todoist-natural-language",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=todoist-natural-language",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "skill.json",
      "SKILL.md",
      "scripts/todoist.py",
      "references/api.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. 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."
        },
        {
          "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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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/todoist-natural-language"
    },
    "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-natural-language",
    "agentPageUrl": "https://openagent3.xyz/skills/todoist-natural-language/agent",
    "manifestUrl": "https://openagent3.xyz/skills/todoist-natural-language/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/todoist-natural-language/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. 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."
      },
      {
        "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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Todoist Skill — Natural Language Task Management",
        "body": "Manage your Todoist tasks conversationally. No need to remember CLI syntax — just talk naturally about your tasks."
      },
      {
        "title": "Natural Language Examples",
        "body": "This skill understands conversational requests:\n\nList tasks:\n\n\"What tasks do I have today?\"\n\"Show me my Todoist list for this week\"\n\"What do I have overdue?\"\n\"Show priority 1 tasks\"\n\nAdd tasks:\n\n\"Add 'buy milk' to my todo list\"\n\"Create a task to call the dentist tomorrow\"\n\"I need to review the Q4 report by Friday\"\n\"Add 'weekly standup' due every Monday\"\n\nComplete tasks:\n\n\"Complete my task about the dentist\"\n\"Mark the milk task as done\"\n\"I finished the report\"\n\nManage projects:\n\n\"What projects do I have in Todoist?\"\n\"Show tasks from my Work project\""
      },
      {
        "title": "Prerequisites",
        "body": "TODOIST_API_KEY environment variable must be set with your Todoist API token\nGet your token at: https://todoist.com/app/settings/integrations/developer"
      },
      {
        "title": "Technical Usage",
        "body": "If you prefer CLI commands or need to script operations, use the Python script directly:\n\n# List today's tasks\npython3 todoist/scripts/todoist.py list --filter \"today\"\n\n# Add a task\npython3 todoist/scripts/todoist.py add \"Buy milk\" --due \"tomorrow\" --priority 2\n\n# Complete a task by ID\npython3 todoist/scripts/todoist.py complete \"TASK_ID\"\n\n# List all projects\npython3 todoist/scripts/todoist.py projects"
      },
      {
        "title": "Filter Syntax",
        "body": "When filtering tasks (via natural language or CLI):\n\ntoday — tasks due today\noverdue — overdue tasks\ntomorrow — tasks due tomorrow\np1, p2, p3, p4 — priority filters\n7 days — tasks due in next 7 days\n@label — tasks with specific label\n#project — tasks in project\nCombine with & (and) and | (or): today & p1"
      },
      {
        "title": "Priority Levels",
        "body": "1 — Urgent (red)\n2 — High (orange)\n3 — Medium (blue)\n4 — Low (white/gray, default)"
      },
      {
        "title": "Features",
        "body": "✅ Natural language task management\n✅ Timezone-aware \"today\" filtering\n✅ Smart filtering (excludes completed tasks)\n✅ Recurring task support\n✅ Full Todoist API v1 coverage"
      },
      {
        "title": "Response Format",
        "body": "The script outputs JSON for programmatic use. See references/api.md for full API documentation."
      },
      {
        "title": "Notes",
        "body": "The skill automatically filters out completed tasks\n\"Today\" uses your local timezone (set TZ environment variable if needed)\nNatural language dates (\"tomorrow\", \"next Friday\") use Todoist's built-in parsing"
      }
    ],
    "body": "Todoist Skill — Natural Language Task Management\n\nManage your Todoist tasks conversationally. No need to remember CLI syntax — just talk naturally about your tasks.\n\nNatural Language Examples\n\nThis skill understands conversational requests:\n\nList tasks:\n\n\"What tasks do I have today?\"\n\"Show me my Todoist list for this week\"\n\"What do I have overdue?\"\n\"Show priority 1 tasks\"\n\nAdd tasks:\n\n\"Add 'buy milk' to my todo list\"\n\"Create a task to call the dentist tomorrow\"\n\"I need to review the Q4 report by Friday\"\n\"Add 'weekly standup' due every Monday\"\n\nComplete tasks:\n\n\"Complete my task about the dentist\"\n\"Mark the milk task as done\"\n\"I finished the report\"\n\nManage projects:\n\n\"What projects do I have in Todoist?\"\n\"Show tasks from my Work project\"\nPrerequisites\nTODOIST_API_KEY environment variable must be set with your Todoist API token\nGet your token at: https://todoist.com/app/settings/integrations/developer\nTechnical Usage\n\nIf you prefer CLI commands or need to script operations, use the Python script directly:\n\n# List today's tasks\npython3 todoist/scripts/todoist.py list --filter \"today\"\n\n# Add a task\npython3 todoist/scripts/todoist.py add \"Buy milk\" --due \"tomorrow\" --priority 2\n\n# Complete a task by ID\npython3 todoist/scripts/todoist.py complete \"TASK_ID\"\n\n# List all projects\npython3 todoist/scripts/todoist.py projects\n\nFilter Syntax\n\nWhen filtering tasks (via natural language or CLI):\n\ntoday — tasks due today\noverdue — overdue tasks\ntomorrow — tasks due tomorrow\np1, p2, p3, p4 — priority filters\n7 days — tasks due in next 7 days\n@label — tasks with specific label\n#project — tasks in project\nCombine with & (and) and | (or): today & p1\nPriority Levels\n1 — Urgent (red)\n2 — High (orange)\n3 — Medium (blue)\n4 — Low (white/gray, default)\nFeatures\n✅ Natural language task management\n✅ Timezone-aware \"today\" filtering\n✅ Smart filtering (excludes completed tasks)\n✅ Recurring task support\n✅ Full Todoist API v1 coverage\nResponse Format\n\nThe script outputs JSON for programmatic use. See references/api.md for full API documentation.\n\nNotes\nThe skill automatically filters out completed tasks\n\"Today\" uses your local timezone (set TZ environment variable if needed)\nNatural language dates (\"tomorrow\", \"next Friday\") use Todoist's built-in parsing"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/hail2skins/todoist-natural-language",
    "publisherUrl": "https://clawhub.ai/hail2skins/todoist-natural-language",
    "owner": "hail2skins",
    "version": "1.0.8",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/todoist-natural-language",
    "downloadUrl": "https://openagent3.xyz/downloads/todoist-natural-language",
    "agentUrl": "https://openagent3.xyz/skills/todoist-natural-language/agent",
    "manifestUrl": "https://openagent3.xyz/skills/todoist-natural-language/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/todoist-natural-language/agent.md"
  }
}