{
  "schemaVersion": "1.0",
  "item": {
    "slug": "todo-boss",
    "name": "Todo Boss",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/ukraecho/todo-boss",
    "canonicalUrl": "https://clawhub.ai/ukraecho/todo-boss",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/todo-boss",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=todo-boss",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "add_task.sh"
    ],
    "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/todo-boss"
    },
    "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/todo-boss",
    "agentPageUrl": "https://openagent3.xyz/skills/todo-boss/agent",
    "manifestUrl": "https://openagent3.xyz/skills/todo-boss/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/todo-boss/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": "Purpose",
        "body": "Task capture + delegation tracking + daily remaining-work report for Telegram.\nNO web browsing, NO web search, NO external lookups."
      },
      {
        "title": "Data store",
        "body": "Append-only log: ~/.openclaw/workspace/data/todo/tasks.jsonl\nDerived state cache (optional): ~/.openclaw/workspace/data/todo/state.json"
      },
      {
        "title": "Commands (Telegram)",
        "body": "/todo <text> : create a task draft from free text\n/todo_done <id> : mark done\n/todo_list : list open tasks (grouped by owner, then due date)\n/todo_delegated : list tasks I assigned to others that are still open (include history)\n/todo_report : daily report (same as list, but concise)"
      },
      {
        "title": "Extraction rules (very important)",
        "body": "When user sends /todo <text>:\n\nExtract: title, owner, due_date (YYYY-MM-DD or natural language), priority (optional), notes.\nIf owner OR due_date is missing/ambiguous:\n\nAsk a follow-up question in Telegram.\nStore as status=\"draft\" with missing_fields=[...].\nDo NOT finalize as \"open\" until both are confirmed.\n\n\nIf owner/due_date are present:\n\nCreate status=\"open\"\n\n\nAlways echo back a confirmation summary: id, title, owner, due_date, status."
      },
      {
        "title": "Default assumptions",
        "body": "If owner missing: ask \"누가 담당할까요? (본인/팀원 이름)\"\nIf due_date missing: ask \"납기는 언제로 할까요?\"\nTimezone: Asia/Seoul."
      },
      {
        "title": "History",
        "body": "Any update must append an event to tasks.jsonl:\n\ncreated / finalized / updated / done / reopened\nInclude: timestamp, actor(user), previous values, new values."
      },
      {
        "title": "Hard constraints",
        "body": "Never call web tools.\nNever require API keys.\nKeep replies short and action-oriented."
      },
      {
        "title": "Execution",
        "body": "When receiving /todo:\n\nCall: ~/.openclaw/workspace/skills/todo-boss/add_task.sh \"<full user text after /todo>\"\nReply to user with the script output."
      },
      {
        "title": "Follow-up policy (strict)",
        "body": "Only ask these two questions if missing:\n\n\"담당자(owner)는 누구로 할까요?\"\n\"납기(due)는 언제로 할까요?\"\n\nDo NOT ask about content details, background, meeting context, or email structure.\nThis skill is a task tracker, not a planning assistant.\n\nIf the user asks for planning or drafting, answer briefly but still capture the task by asking owner/due if missing."
      }
    ],
    "body": "todo-boss\nPurpose\n\nTask capture + delegation tracking + daily remaining-work report for Telegram. NO web browsing, NO web search, NO external lookups.\n\nData store\n\nAppend-only log: ~/.openclaw/workspace/data/todo/tasks.jsonl Derived state cache (optional): ~/.openclaw/workspace/data/todo/state.json\n\nCommands (Telegram)\n/todo <text> : create a task draft from free text\n/todo_done <id> : mark done\n/todo_list : list open tasks (grouped by owner, then due date)\n/todo_delegated : list tasks I assigned to others that are still open (include history)\n/todo_report : daily report (same as list, but concise)\nExtraction rules (very important)\n\nWhen user sends /todo <text>:\n\nExtract: title, owner, due_date (YYYY-MM-DD or natural language), priority (optional), notes.\nIf owner OR due_date is missing/ambiguous:\nAsk a follow-up question in Telegram.\nStore as status=\"draft\" with missing_fields=[...].\nDo NOT finalize as \"open\" until both are confirmed.\nIf owner/due_date are present:\nCreate status=\"open\"\nAlways echo back a confirmation summary: id, title, owner, due_date, status.\nDefault assumptions\nIf owner missing: ask \"누가 담당할까요? (본인/팀원 이름)\"\nIf due_date missing: ask \"납기는 언제로 할까요?\"\nTimezone: Asia/Seoul.\nHistory\n\nAny update must append an event to tasks.jsonl:\n\ncreated / finalized / updated / done / reopened Include: timestamp, actor(user), previous values, new values.\nHard constraints\nNever call web tools.\nNever require API keys.\nKeep replies short and action-oriented.\nExecution\n\nWhen receiving /todo:\n\nCall: ~/.openclaw/workspace/skills/todo-boss/add_task.sh \"<full user text after /todo>\"\nReply to user with the script output.\nFollow-up policy (strict)\n\nOnly ask these two questions if missing:\n\n\"담당자(owner)는 누구로 할까요?\"\n\"납기(due)는 언제로 할까요?\"\n\nDo NOT ask about content details, background, meeting context, or email structure. This skill is a task tracker, not a planning assistant.\n\nIf the user asks for planning or drafting, answer briefly but still capture the task by asking owner/due if missing."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ukraecho/todo-boss",
    "publisherUrl": "https://clawhub.ai/ukraecho/todo-boss",
    "owner": "ukraecho",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/todo-boss",
    "downloadUrl": "https://openagent3.xyz/downloads/todo-boss",
    "agentUrl": "https://openagent3.xyz/skills/todo-boss/agent",
    "manifestUrl": "https://openagent3.xyz/skills/todo-boss/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/todo-boss/agent.md"
  }
}