{
  "schemaVersion": "1.0",
  "item": {
    "slug": "microsoft-to-do",
    "name": "Microsoft To Do",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/byungkyu/microsoft-to-do",
    "canonicalUrl": "https://clawhub.ai/byungkyu/microsoft-to-do",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/microsoft-to-do",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=microsoft-to-do",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "LICENSE.txt"
    ],
    "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/microsoft-to-do"
    },
    "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/microsoft-to-do",
    "agentPageUrl": "https://openagent3.xyz/skills/microsoft-to-do/agent",
    "manifestUrl": "https://openagent3.xyz/skills/microsoft-to-do/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/microsoft-to-do/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": "Microsoft To Do",
        "body": "Access the Microsoft To Do API with managed OAuth authentication. Manage task lists, tasks, checklist items, and linked resources with full CRUD operations."
      },
      {
        "title": "Quick Start",
        "body": "# List all task lists\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/microsoft-to-do/v1.0/me/todo/lists')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Base URL",
        "body": "https://gateway.maton.ai/microsoft-to-do/{native-api-path}\n\nReplace {native-api-path} with the actual Microsoft Graph API endpoint path. The gateway proxies requests to graph.microsoft.com and automatically injects your OAuth token."
      },
      {
        "title": "Authentication",
        "body": "All requests require the Maton API key in the Authorization header:\n\nAuthorization: Bearer $MATON_API_KEY\n\nEnvironment Variable: Set your API key as MATON_API_KEY:\n\nexport MATON_API_KEY=\"YOUR_API_KEY\""
      },
      {
        "title": "Getting Your API Key",
        "body": "Sign in or create an account at maton.ai\nGo to maton.ai/settings\nCopy your API key"
      },
      {
        "title": "Connection Management",
        "body": "Manage your Microsoft To Do OAuth connections at https://ctrl.maton.ai."
      },
      {
        "title": "List Connections",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections?app=microsoft-to-do&status=ACTIVE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Create Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'app': 'microsoft-to-do'}).encode()\nreq = urllib.request.Request('https://ctrl.maton.ai/connections', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Get Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nResponse:\n\n{\n  \"connection\": {\n    \"connection_id\": \"21fd90f9-5935-43cd-b6c8-bde9d915ca80\",\n    \"status\": \"ACTIVE\",\n    \"creation_time\": \"2025-12-08T07:20:53.488460Z\",\n    \"last_updated_time\": \"2026-01-31T20:03:32.593153Z\",\n    \"url\": \"https://connect.maton.ai/?session_token=...\",\n    \"app\": \"microsoft-to-do\",\n    \"metadata\": {}\n  }\n}\n\nOpen the returned url in a browser to complete OAuth authorization."
      },
      {
        "title": "Delete Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}', method='DELETE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Specifying Connection",
        "body": "If you have multiple Microsoft To Do connections, specify which one to use with the Maton-Connection header:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/microsoft-to-do/v1.0/me/todo/lists')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Maton-Connection', '21fd90f9-5935-43cd-b6c8-bde9d915ca80')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nIf omitted, the gateway uses the default (oldest) active connection."
      },
      {
        "title": "Task List Operations",
        "body": "List Task Lists\n\nGET /microsoft-to-do/v1.0/me/todo/lists\n\nResponse:\n\n{\n  \"value\": [\n    {\n      \"id\": \"AAMkADIyAAAhrbPWAAA=\",\n      \"displayName\": \"Tasks\",\n      \"isOwner\": true,\n      \"isShared\": false,\n      \"wellknownListName\": \"defaultList\"\n    }\n  ]\n}\n\nGet Task List\n\nGET /microsoft-to-do/v1.0/me/todo/lists/{todoTaskListId}\n\nCreate Task List\n\nPOST /microsoft-to-do/v1.0/me/todo/lists\nContent-Type: application/json\n\n{\n  \"displayName\": \"Travel items\"\n}\n\nResponse (201 Created):\n\n{\n  \"id\": \"AAMkADIyAAAhrbPWAAA=\",\n  \"displayName\": \"Travel items\",\n  \"isOwner\": true,\n  \"isShared\": false,\n  \"wellknownListName\": \"none\"\n}\n\nUpdate Task List\n\nPATCH /microsoft-to-do/v1.0/me/todo/lists/{todoTaskListId}\nContent-Type: application/json\n\n{\n  \"displayName\": \"Vacation Plan\"\n}\n\nDelete Task List\n\nDELETE /microsoft-to-do/v1.0/me/todo/lists/{todoTaskListId}\n\nReturns 204 No Content on success."
      },
      {
        "title": "Task Operations",
        "body": "List Tasks\n\nGET /microsoft-to-do/v1.0/me/todo/lists/{todoTaskListId}/tasks\n\nResponse:\n\n{\n  \"value\": [\n    {\n      \"id\": \"AlMKXwbQAAAJws6wcAAAA=\",\n      \"title\": \"Buy groceries\",\n      \"status\": \"notStarted\",\n      \"importance\": \"normal\",\n      \"isReminderOn\": false,\n      \"createdDateTime\": \"2024-01-15T10:00:00Z\",\n      \"lastModifiedDateTime\": \"2024-01-15T10:00:00Z\",\n      \"body\": {\n        \"content\": \"\",\n        \"contentType\": \"text\"\n      },\n      \"categories\": []\n    }\n  ]\n}\n\nGet Task\n\nGET /microsoft-to-do/v1.0/me/todo/lists/{todoTaskListId}/tasks/{taskId}\n\nCreate Task\n\nPOST /microsoft-to-do/v1.0/me/todo/lists/{todoTaskListId}/tasks\nContent-Type: application/json\n\n{\n  \"title\": \"A new task\",\n  \"importance\": \"high\",\n  \"status\": \"notStarted\",\n  \"categories\": [\"Important\"],\n  \"dueDateTime\": {\n    \"dateTime\": \"2024-12-31T17:00:00\",\n    \"timeZone\": \"Eastern Standard Time\"\n  },\n  \"startDateTime\": {\n    \"dateTime\": \"2024-12-01T08:00:00\",\n    \"timeZone\": \"Eastern Standard Time\"\n  },\n  \"isReminderOn\": true,\n  \"reminderDateTime\": {\n    \"dateTime\": \"2024-12-01T09:00:00\",\n    \"timeZone\": \"Eastern Standard Time\"\n  },\n  \"body\": {\n    \"content\": \"Task details here\",\n    \"contentType\": \"text\"\n  }\n}\n\nTask Fields:\n\nFieldTypeDescriptiontitleStringBrief description of the taskbodyitemBodyTask body with content and contentType (text/html)importanceStringlow, normal, or highstatusStringnotStarted, inProgress, completed, waitingOnOthers, deferredcategoriesString[]Associated category namesdueDateTimedateTimeTimeZoneDue date and timestartDateTimedateTimeTimeZoneStart date and timecompletedDateTimedateTimeTimeZoneCompletion date and timereminderDateTimedateTimeTimeZoneReminder date and timeisReminderOnBooleanWhether reminder is enabledrecurrencepatternedRecurrenceRecurrence pattern\n\nUpdate Task\n\nPATCH /microsoft-to-do/v1.0/me/todo/lists/{todoTaskListId}/tasks/{taskId}\nContent-Type: application/json\n\n{\n  \"status\": \"completed\",\n  \"completedDateTime\": {\n    \"dateTime\": \"2024-01-20T15:00:00\",\n    \"timeZone\": \"UTC\"\n  }\n}\n\nDelete Task\n\nDELETE /microsoft-to-do/v1.0/me/todo/lists/{todoTaskListId}/tasks/{taskId}\n\nReturns 204 No Content on success."
      },
      {
        "title": "Checklist Item Operations",
        "body": "Checklist items are subtasks within a task.\n\nList Checklist Items\n\nGET /microsoft-to-do/v1.0/me/todo/lists/{todoTaskListId}/tasks/{taskId}/checklistItems\n\nResponse:\n\n{\n  \"value\": [\n    {\n      \"id\": \"51d8a471-2e9d-4f53-9937-c33a8742d28f\",\n      \"displayName\": \"Create draft\",\n      \"createdDateTime\": \"2024-01-17T05:22:14Z\",\n      \"isChecked\": false\n    }\n  ]\n}\n\nCreate Checklist Item\n\nPOST /microsoft-to-do/v1.0/me/todo/lists/{todoTaskListId}/tasks/{taskId}/checklistItems\nContent-Type: application/json\n\n{\n  \"displayName\": \"Final sign-off from the team\"\n}\n\nUpdate Checklist Item\n\nPATCH /microsoft-to-do/v1.0/me/todo/lists/{todoTaskListId}/tasks/{taskId}/checklistItems/{checklistItemId}\nContent-Type: application/json\n\n{\n  \"isChecked\": true\n}\n\nDelete Checklist Item\n\nDELETE /microsoft-to-do/v1.0/me/todo/lists/{todoTaskListId}/tasks/{taskId}/checklistItems/{checklistItemId}\n\nReturns 204 No Content on success."
      },
      {
        "title": "Linked Resource Operations",
        "body": "Linked resources connect tasks to external items (e.g., emails, files).\n\nList Linked Resources\n\nGET /microsoft-to-do/v1.0/me/todo/lists/{todoTaskListId}/tasks/{taskId}/linkedResources\n\nResponse:\n\n{\n  \"value\": [\n    {\n      \"id\": \"f9cddce2-dce2-f9cd-e2dc-cdf9e2dccdf9\",\n      \"webUrl\": \"https://example.com/item\",\n      \"applicationName\": \"MyApp\",\n      \"displayName\": \"Related Document\",\n      \"externalId\": \"external-123\"\n    }\n  ]\n}\n\nCreate Linked Resource\n\nPOST /microsoft-to-do/v1.0/me/todo/lists/{todoTaskListId}/tasks/{taskId}/linkedResources\nContent-Type: application/json\n\n{\n  \"webUrl\": \"https://example.com/item\",\n  \"applicationName\": \"MyApp\",\n  \"displayName\": \"Related Document\",\n  \"externalId\": \"external-123\"\n}\n\nDelete Linked Resource\n\nDELETE /microsoft-to-do/v1.0/me/todo/lists/{todoTaskListId}/tasks/{taskId}/linkedResources/{linkedResourceId}\n\nReturns 204 No Content on success."
      },
      {
        "title": "Pagination",
        "body": "Microsoft Graph uses OData pagination. Use $top to limit results and $skip for offset:\n\nGET /microsoft-to-do/v1.0/me/todo/lists/{todoTaskListId}/tasks?$top=10&$skip=0\n\nResponse includes @odata.nextLink when more results exist:\n\n{\n  \"value\": [...],\n  \"@odata.nextLink\": \"https://graph.microsoft.com/v1.0/me/todo/lists/{id}/tasks?$skip=10\"\n}"
      },
      {
        "title": "JavaScript",
        "body": "const response = await fetch(\n  'https://gateway.maton.ai/microsoft-to-do/v1.0/me/todo/lists',\n  {\n    headers: {\n      'Authorization': `Bearer ${process.env.MATON_API_KEY}`\n    }\n  }\n);\nconst data = await response.json();"
      },
      {
        "title": "Python",
        "body": "import os\nimport requests\n\nresponse = requests.get(\n    'https://gateway.maton.ai/microsoft-to-do/v1.0/me/todo/lists',\n    headers={'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}'}\n)\ndata = response.json()"
      },
      {
        "title": "Notes",
        "body": "Task list IDs and task IDs are opaque strings (e.g., AAMkADIyAAAhrbPWAAA=)\nTimestamps use ISO 8601 format in UTC by default\nThe dateTimeTimeZone type requires both dateTime and timeZone fields\nwellknownListName can be defaultList, flaggedEmails, or none\nTask status values: notStarted, inProgress, completed, waitingOnOthers, deferred\nTask importance values: low, normal, high\nSupports OData query parameters: $select, $filter, $orderby, $top, $skip\nIMPORTANT: When using curl commands, use curl -g when URLs contain brackets to disable glob parsing\nIMPORTANT: When piping curl output to jq or other commands, environment variables like $MATON_API_KEY may not expand correctly in some shell environments"
      },
      {
        "title": "Error Handling",
        "body": "StatusMeaning400Missing Microsoft To Do connection or invalid request401Invalid or missing Maton API key404Resource not found429Rate limited4xx/5xxPassthrough error from Microsoft Graph API"
      },
      {
        "title": "Troubleshooting: API Key Issues",
        "body": "Check that the MATON_API_KEY environment variable is set:\n\necho $MATON_API_KEY\n\nVerify the API key is valid by listing connections:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Troubleshooting: Invalid App Name",
        "body": "Ensure your URL path starts with microsoft-to-do. For example:\n\nCorrect: https://gateway.maton.ai/microsoft-to-do/v1.0/me/todo/lists\nIncorrect: https://gateway.maton.ai/v1.0/me/todo/lists"
      },
      {
        "title": "Resources",
        "body": "Microsoft To Do API Overview\ntodoTaskList Resource\ntodoTask Resource\nchecklistItem Resource\nlinkedResource Resource\nMaton Community\nMaton Support"
      }
    ],
    "body": "Microsoft To Do\n\nAccess the Microsoft To Do API with managed OAuth authentication. Manage task lists, tasks, checklist items, and linked resources with full CRUD operations.\n\nQuick Start\n# List all task lists\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/microsoft-to-do/v1.0/me/todo/lists')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nBase URL\nhttps://gateway.maton.ai/microsoft-to-do/{native-api-path}\n\n\nReplace {native-api-path} with the actual Microsoft Graph API endpoint path. The gateway proxies requests to graph.microsoft.com and automatically injects your OAuth token.\n\nAuthentication\n\nAll requests require the Maton API key in the Authorization header:\n\nAuthorization: Bearer $MATON_API_KEY\n\n\nEnvironment Variable: Set your API key as MATON_API_KEY:\n\nexport MATON_API_KEY=\"YOUR_API_KEY\"\n\nGetting Your API Key\nSign in or create an account at maton.ai\nGo to maton.ai/settings\nCopy your API key\nConnection Management\n\nManage your Microsoft To Do OAuth connections at https://ctrl.maton.ai.\n\nList Connections\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections?app=microsoft-to-do&status=ACTIVE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nCreate Connection\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'app': 'microsoft-to-do'}).encode()\nreq = urllib.request.Request('https://ctrl.maton.ai/connections', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nGet Connection\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nResponse:\n\n{\n  \"connection\": {\n    \"connection_id\": \"21fd90f9-5935-43cd-b6c8-bde9d915ca80\",\n    \"status\": \"ACTIVE\",\n    \"creation_time\": \"2025-12-08T07:20:53.488460Z\",\n    \"last_updated_time\": \"2026-01-31T20:03:32.593153Z\",\n    \"url\": \"https://connect.maton.ai/?session_token=...\",\n    \"app\": \"microsoft-to-do\",\n    \"metadata\": {}\n  }\n}\n\n\nOpen the returned url in a browser to complete OAuth authorization.\n\nDelete Connection\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}', method='DELETE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nSpecifying Connection\n\nIf you have multiple Microsoft To Do connections, specify which one to use with the Maton-Connection header:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/microsoft-to-do/v1.0/me/todo/lists')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Maton-Connection', '21fd90f9-5935-43cd-b6c8-bde9d915ca80')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nIf omitted, the gateway uses the default (oldest) active connection.\n\nAPI Reference\nTask List Operations\nList Task Lists\nGET /microsoft-to-do/v1.0/me/todo/lists\n\n\nResponse:\n\n{\n  \"value\": [\n    {\n      \"id\": \"AAMkADIyAAAhrbPWAAA=\",\n      \"displayName\": \"Tasks\",\n      \"isOwner\": true,\n      \"isShared\": false,\n      \"wellknownListName\": \"defaultList\"\n    }\n  ]\n}\n\nGet Task List\nGET /microsoft-to-do/v1.0/me/todo/lists/{todoTaskListId}\n\nCreate Task List\nPOST /microsoft-to-do/v1.0/me/todo/lists\nContent-Type: application/json\n\n{\n  \"displayName\": \"Travel items\"\n}\n\n\nResponse (201 Created):\n\n{\n  \"id\": \"AAMkADIyAAAhrbPWAAA=\",\n  \"displayName\": \"Travel items\",\n  \"isOwner\": true,\n  \"isShared\": false,\n  \"wellknownListName\": \"none\"\n}\n\nUpdate Task List\nPATCH /microsoft-to-do/v1.0/me/todo/lists/{todoTaskListId}\nContent-Type: application/json\n\n{\n  \"displayName\": \"Vacation Plan\"\n}\n\nDelete Task List\nDELETE /microsoft-to-do/v1.0/me/todo/lists/{todoTaskListId}\n\n\nReturns 204 No Content on success.\n\nTask Operations\nList Tasks\nGET /microsoft-to-do/v1.0/me/todo/lists/{todoTaskListId}/tasks\n\n\nResponse:\n\n{\n  \"value\": [\n    {\n      \"id\": \"AlMKXwbQAAAJws6wcAAAA=\",\n      \"title\": \"Buy groceries\",\n      \"status\": \"notStarted\",\n      \"importance\": \"normal\",\n      \"isReminderOn\": false,\n      \"createdDateTime\": \"2024-01-15T10:00:00Z\",\n      \"lastModifiedDateTime\": \"2024-01-15T10:00:00Z\",\n      \"body\": {\n        \"content\": \"\",\n        \"contentType\": \"text\"\n      },\n      \"categories\": []\n    }\n  ]\n}\n\nGet Task\nGET /microsoft-to-do/v1.0/me/todo/lists/{todoTaskListId}/tasks/{taskId}\n\nCreate Task\nPOST /microsoft-to-do/v1.0/me/todo/lists/{todoTaskListId}/tasks\nContent-Type: application/json\n\n{\n  \"title\": \"A new task\",\n  \"importance\": \"high\",\n  \"status\": \"notStarted\",\n  \"categories\": [\"Important\"],\n  \"dueDateTime\": {\n    \"dateTime\": \"2024-12-31T17:00:00\",\n    \"timeZone\": \"Eastern Standard Time\"\n  },\n  \"startDateTime\": {\n    \"dateTime\": \"2024-12-01T08:00:00\",\n    \"timeZone\": \"Eastern Standard Time\"\n  },\n  \"isReminderOn\": true,\n  \"reminderDateTime\": {\n    \"dateTime\": \"2024-12-01T09:00:00\",\n    \"timeZone\": \"Eastern Standard Time\"\n  },\n  \"body\": {\n    \"content\": \"Task details here\",\n    \"contentType\": \"text\"\n  }\n}\n\n\nTask Fields:\n\nField\tType\tDescription\ntitle\tString\tBrief description of the task\nbody\titemBody\tTask body with content and contentType (text/html)\nimportance\tString\tlow, normal, or high\nstatus\tString\tnotStarted, inProgress, completed, waitingOnOthers, deferred\ncategories\tString[]\tAssociated category names\ndueDateTime\tdateTimeTimeZone\tDue date and time\nstartDateTime\tdateTimeTimeZone\tStart date and time\ncompletedDateTime\tdateTimeTimeZone\tCompletion date and time\nreminderDateTime\tdateTimeTimeZone\tReminder date and time\nisReminderOn\tBoolean\tWhether reminder is enabled\nrecurrence\tpatternedRecurrence\tRecurrence pattern\nUpdate Task\nPATCH /microsoft-to-do/v1.0/me/todo/lists/{todoTaskListId}/tasks/{taskId}\nContent-Type: application/json\n\n{\n  \"status\": \"completed\",\n  \"completedDateTime\": {\n    \"dateTime\": \"2024-01-20T15:00:00\",\n    \"timeZone\": \"UTC\"\n  }\n}\n\nDelete Task\nDELETE /microsoft-to-do/v1.0/me/todo/lists/{todoTaskListId}/tasks/{taskId}\n\n\nReturns 204 No Content on success.\n\nChecklist Item Operations\n\nChecklist items are subtasks within a task.\n\nList Checklist Items\nGET /microsoft-to-do/v1.0/me/todo/lists/{todoTaskListId}/tasks/{taskId}/checklistItems\n\n\nResponse:\n\n{\n  \"value\": [\n    {\n      \"id\": \"51d8a471-2e9d-4f53-9937-c33a8742d28f\",\n      \"displayName\": \"Create draft\",\n      \"createdDateTime\": \"2024-01-17T05:22:14Z\",\n      \"isChecked\": false\n    }\n  ]\n}\n\nCreate Checklist Item\nPOST /microsoft-to-do/v1.0/me/todo/lists/{todoTaskListId}/tasks/{taskId}/checklistItems\nContent-Type: application/json\n\n{\n  \"displayName\": \"Final sign-off from the team\"\n}\n\nUpdate Checklist Item\nPATCH /microsoft-to-do/v1.0/me/todo/lists/{todoTaskListId}/tasks/{taskId}/checklistItems/{checklistItemId}\nContent-Type: application/json\n\n{\n  \"isChecked\": true\n}\n\nDelete Checklist Item\nDELETE /microsoft-to-do/v1.0/me/todo/lists/{todoTaskListId}/tasks/{taskId}/checklistItems/{checklistItemId}\n\n\nReturns 204 No Content on success.\n\nLinked Resource Operations\n\nLinked resources connect tasks to external items (e.g., emails, files).\n\nList Linked Resources\nGET /microsoft-to-do/v1.0/me/todo/lists/{todoTaskListId}/tasks/{taskId}/linkedResources\n\n\nResponse:\n\n{\n  \"value\": [\n    {\n      \"id\": \"f9cddce2-dce2-f9cd-e2dc-cdf9e2dccdf9\",\n      \"webUrl\": \"https://example.com/item\",\n      \"applicationName\": \"MyApp\",\n      \"displayName\": \"Related Document\",\n      \"externalId\": \"external-123\"\n    }\n  ]\n}\n\nCreate Linked Resource\nPOST /microsoft-to-do/v1.0/me/todo/lists/{todoTaskListId}/tasks/{taskId}/linkedResources\nContent-Type: application/json\n\n{\n  \"webUrl\": \"https://example.com/item\",\n  \"applicationName\": \"MyApp\",\n  \"displayName\": \"Related Document\",\n  \"externalId\": \"external-123\"\n}\n\nDelete Linked Resource\nDELETE /microsoft-to-do/v1.0/me/todo/lists/{todoTaskListId}/tasks/{taskId}/linkedResources/{linkedResourceId}\n\n\nReturns 204 No Content on success.\n\nPagination\n\nMicrosoft Graph uses OData pagination. Use $top to limit results and $skip for offset:\n\nGET /microsoft-to-do/v1.0/me/todo/lists/{todoTaskListId}/tasks?$top=10&$skip=0\n\n\nResponse includes @odata.nextLink when more results exist:\n\n{\n  \"value\": [...],\n  \"@odata.nextLink\": \"https://graph.microsoft.com/v1.0/me/todo/lists/{id}/tasks?$skip=10\"\n}\n\nCode Examples\nJavaScript\nconst response = await fetch(\n  'https://gateway.maton.ai/microsoft-to-do/v1.0/me/todo/lists',\n  {\n    headers: {\n      'Authorization': `Bearer ${process.env.MATON_API_KEY}`\n    }\n  }\n);\nconst data = await response.json();\n\nPython\nimport os\nimport requests\n\nresponse = requests.get(\n    'https://gateway.maton.ai/microsoft-to-do/v1.0/me/todo/lists',\n    headers={'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}'}\n)\ndata = response.json()\n\nNotes\nTask list IDs and task IDs are opaque strings (e.g., AAMkADIyAAAhrbPWAAA=)\nTimestamps use ISO 8601 format in UTC by default\nThe dateTimeTimeZone type requires both dateTime and timeZone fields\nwellknownListName can be defaultList, flaggedEmails, or none\nTask status values: notStarted, inProgress, completed, waitingOnOthers, deferred\nTask importance values: low, normal, high\nSupports OData query parameters: $select, $filter, $orderby, $top, $skip\nIMPORTANT: When using curl commands, use curl -g when URLs contain brackets to disable glob parsing\nIMPORTANT: When piping curl output to jq or other commands, environment variables like $MATON_API_KEY may not expand correctly in some shell environments\nError Handling\nStatus\tMeaning\n400\tMissing Microsoft To Do connection or invalid request\n401\tInvalid or missing Maton API key\n404\tResource not found\n429\tRate limited\n4xx/5xx\tPassthrough error from Microsoft Graph API\nTroubleshooting: API Key Issues\nCheck that the MATON_API_KEY environment variable is set:\necho $MATON_API_KEY\n\nVerify the API key is valid by listing connections:\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nTroubleshooting: Invalid App Name\nEnsure your URL path starts with microsoft-to-do. For example:\nCorrect: https://gateway.maton.ai/microsoft-to-do/v1.0/me/todo/lists\nIncorrect: https://gateway.maton.ai/v1.0/me/todo/lists\nResources\nMicrosoft To Do API Overview\ntodoTaskList Resource\ntodoTask Resource\nchecklistItem Resource\nlinkedResource Resource\nMaton Community\nMaton Support"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/byungkyu/microsoft-to-do",
    "publisherUrl": "https://clawhub.ai/byungkyu/microsoft-to-do",
    "owner": "byungkyu",
    "version": "1.0.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/microsoft-to-do",
    "downloadUrl": "https://openagent3.xyz/downloads/microsoft-to-do",
    "agentUrl": "https://openagent3.xyz/skills/microsoft-to-do/agent",
    "manifestUrl": "https://openagent3.xyz/skills/microsoft-to-do/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/microsoft-to-do/agent.md"
  }
}