{
  "schemaVersion": "1.0",
  "item": {
    "slug": "microsoft-todo",
    "name": "Microsoft To Do",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/underwear/microsoft-todo",
    "canonicalUrl": "https://clawhub.ai/underwear/microsoft-todo",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/microsoft-todo",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=microsoft-todo",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/setup.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/microsoft-todo"
    },
    "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-todo",
    "agentPageUrl": "https://openagent3.xyz/skills/microsoft-todo/agent",
    "manifestUrl": "https://openagent3.xyz/skills/microsoft-todo/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/microsoft-todo/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 CLI",
        "body": "Manage tasks in Microsoft To Do using the todo command."
      },
      {
        "title": "References",
        "body": "references/setup.md (Azure app registration + OAuth configuration)"
      },
      {
        "title": "Prerequisites",
        "body": "todo CLI installed (pip install microsoft-todo-cli)\nMicrosoft Azure app registered (see references/setup.md)\nCredentials configured at ~/.config/microsoft-todo-cli/keys.yml\nFirst run completes OAuth flow in browser"
      },
      {
        "title": "Tasks",
        "body": "# List tasks\ntodo tasks --json                        # Default list\ntodo tasks Work --json                   # Specific list\ntodo tasks --due-today --json            # Due today\ntodo tasks --overdue --json              # Past due\ntodo tasks --important --json            # High priority\ntodo tasks --completed --json            # Done tasks\ntodo tasks --all --json                  # Everything\n\n# Create task\ntodo new \"Task name\" --json              # Basic\ntodo new \"Task\" -l Work --json           # In specific list\ntodo new \"Task\" -d tomorrow --json       # With due date\ntodo new \"Task\" -r 2h --json             # With reminder\ntodo new \"Task\" -d mon -r 9am --json     # Due Monday, remind 9am\ntodo new \"Task\" -I --json                # Important\ntodo new \"Task\" -R daily --json          # Recurring daily\ntodo new \"Task\" -R weekly:mon,fri --json # Specific days\ntodo new \"Task\" -S \"Step 1\" -S \"Step 2\" --json  # With subtasks\ntodo new \"Task\" -N \"Note content\" --json      # With note\n\n# Update task\ntodo update \"Task\" --title \"New\" --json\ntodo update \"Task\" -d friday -I --json\n\n# Complete/Uncomplete\ntodo complete \"Task\" --json\ntodo complete 0 1 2 --json               # Batch by index\ntodo uncomplete \"Task\" --json\n\n# Delete\ntodo rm \"Task\" -y --json"
      },
      {
        "title": "Subtasks (Steps)",
        "body": "todo new-step \"Task\" \"Step text\" --json\ntodo list-steps \"Task\" --json\ntodo complete-step \"Task\" \"Step\" --json\ntodo uncomplete-step \"Task\" \"Step\" --json\ntodo rm-step \"Task\" 0 --json"
      },
      {
        "title": "Notes",
        "body": "todo note \"Task\" \"Note content\"\ntodo show-note \"Task\"\ntodo clear-note \"Task\""
      },
      {
        "title": "Lists",
        "body": "todo lists --json\ntodo new-list \"Project X\" --json\ntodo rename-list \"Old\" \"New\" --json\ntodo rm-list \"Project X\" -y --json"
      },
      {
        "title": "Task Identification",
        "body": "MethodStabilityUse Case--id \"AAMk...\"StableAutomation, scriptsIndex (0, 1)UnstableInteractive onlyName (\"Task\")UnstableUnique names only\n\nUse ID for multi-step operations:\n\nID=$(todo new \"Task\" -l Work --json | jq -r '.id')\ntodo complete --id \"$ID\" -l Work --json"
      },
      {
        "title": "Date & Time Formats",
        "body": "TypeExamplesRelative1h, 30m, 2d, 1h30mTime9:30, 9am, 17:00, 5:30pmDaystomorrow, monday, friDate2026-12-31, 31.12.2026Keywordsmorning (7:00), evening (18:00)"
      },
      {
        "title": "Recurrence Patterns",
        "body": "PatternDescriptiondailyEvery dayweeklyEvery weekmonthlyEvery monthyearlyEvery yearweekdaysMonday to Fridayweekly:mon,wed,friSpecific daysevery 2 daysCustom interval"
      },
      {
        "title": "Aliases",
        "body": "AliasCommandttasksnnewccompletedrmsnshow-notecnclear-note"
      },
      {
        "title": "Notes",
        "body": "Always use --json for all commands to get structured output\nAlways use -y with rm commands to skip confirmation\nUse --id with -l ListName for list context\nFirst run opens browser for OAuth authentication"
      }
    ],
    "body": "Microsoft To Do CLI\n\nManage tasks in Microsoft To Do using the todo command.\n\nReferences\nreferences/setup.md (Azure app registration + OAuth configuration)\nPrerequisites\ntodo CLI installed (pip install microsoft-todo-cli)\nMicrosoft Azure app registered (see references/setup.md)\nCredentials configured at ~/.config/microsoft-todo-cli/keys.yml\nFirst run completes OAuth flow in browser\nCommands\nTasks\n# List tasks\ntodo tasks --json                        # Default list\ntodo tasks Work --json                   # Specific list\ntodo tasks --due-today --json            # Due today\ntodo tasks --overdue --json              # Past due\ntodo tasks --important --json            # High priority\ntodo tasks --completed --json            # Done tasks\ntodo tasks --all --json                  # Everything\n\n# Create task\ntodo new \"Task name\" --json              # Basic\ntodo new \"Task\" -l Work --json           # In specific list\ntodo new \"Task\" -d tomorrow --json       # With due date\ntodo new \"Task\" -r 2h --json             # With reminder\ntodo new \"Task\" -d mon -r 9am --json     # Due Monday, remind 9am\ntodo new \"Task\" -I --json                # Important\ntodo new \"Task\" -R daily --json          # Recurring daily\ntodo new \"Task\" -R weekly:mon,fri --json # Specific days\ntodo new \"Task\" -S \"Step 1\" -S \"Step 2\" --json  # With subtasks\ntodo new \"Task\" -N \"Note content\" --json      # With note\n\n# Update task\ntodo update \"Task\" --title \"New\" --json\ntodo update \"Task\" -d friday -I --json\n\n# Complete/Uncomplete\ntodo complete \"Task\" --json\ntodo complete 0 1 2 --json               # Batch by index\ntodo uncomplete \"Task\" --json\n\n# Delete\ntodo rm \"Task\" -y --json\n\nSubtasks (Steps)\ntodo new-step \"Task\" \"Step text\" --json\ntodo list-steps \"Task\" --json\ntodo complete-step \"Task\" \"Step\" --json\ntodo uncomplete-step \"Task\" \"Step\" --json\ntodo rm-step \"Task\" 0 --json\n\nNotes\ntodo note \"Task\" \"Note content\"\ntodo show-note \"Task\"\ntodo clear-note \"Task\"\n\nLists\ntodo lists --json\ntodo new-list \"Project X\" --json\ntodo rename-list \"Old\" \"New\" --json\ntodo rm-list \"Project X\" -y --json\n\nTask Identification\nMethod\tStability\tUse Case\n--id \"AAMk...\"\tStable\tAutomation, scripts\nIndex (0, 1)\tUnstable\tInteractive only\nName (\"Task\")\tUnstable\tUnique names only\n\nUse ID for multi-step operations:\n\nID=$(todo new \"Task\" -l Work --json | jq -r '.id')\ntodo complete --id \"$ID\" -l Work --json\n\nDate & Time Formats\nType\tExamples\nRelative\t1h, 30m, 2d, 1h30m\nTime\t9:30, 9am, 17:00, 5:30pm\nDays\ttomorrow, monday, fri\nDate\t2026-12-31, 31.12.2026\nKeywords\tmorning (7:00), evening (18:00)\nRecurrence Patterns\nPattern\tDescription\ndaily\tEvery day\nweekly\tEvery week\nmonthly\tEvery month\nyearly\tEvery year\nweekdays\tMonday to Friday\nweekly:mon,wed,fri\tSpecific days\nevery 2 days\tCustom interval\nAliases\nAlias\tCommand\nt\ttasks\nn\tnew\nc\tcomplete\nd\trm\nsn\tshow-note\ncn\tclear-note\nNotes\nAlways use --json for all commands to get structured output\nAlways use -y with rm commands to skip confirmation\nUse --id with -l ListName for list context\nFirst run opens browser for OAuth authentication"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/underwear/microsoft-todo",
    "publisherUrl": "https://clawhub.ai/underwear/microsoft-todo",
    "owner": "underwear",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/microsoft-todo",
    "downloadUrl": "https://openagent3.xyz/downloads/microsoft-todo",
    "agentUrl": "https://openagent3.xyz/skills/microsoft-todo/agent",
    "manifestUrl": "https://openagent3.xyz/skills/microsoft-todo/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/microsoft-todo/agent.md"
  }
}