{
  "schemaVersion": "1.0",
  "item": {
    "slug": "task-tracker",
    "name": "Task Tracker",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/kesslerio/task-tracker",
    "canonicalUrl": "https://clawhub.ai/kesslerio/task-tracker",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/task-tracker",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=task-tracker",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "TELEGRAM.md",
      "assets/templates/TASKS.md",
      "references/task-format.md",
      "scripts/extract_tasks.py"
    ],
    "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",
      "slug": "task-tracker",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T11:27:45.124Z",
      "expiresAt": "2026-05-08T11:27:45.124Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=task-tracker",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=task-tracker",
        "contentDisposition": "attachment; filename=\"task-tracker-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "task-tracker"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/task-tracker"
    },
    "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/task-tracker",
    "agentPageUrl": "https://openagent3.xyz/skills/task-tracker/agent",
    "manifestUrl": "https://openagent3.xyz/skills/task-tracker/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/task-tracker/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": "Task Tracker",
        "body": "A personal task management skill for daily standups and weekly reviews. Tracks work tasks, surfaces priorities, and manages blockers."
      },
      {
        "title": "What This Skill Does",
        "body": "Lists tasks - Shows what's on your plate, filtered by priority, status, or deadline\nDaily standup - Shows today's #1 priority, blockers, and what was completed\nWeekly review - Summarizes last week, archives done items, plans this week\nAdd tasks - Create new tasks with priority and due date\nComplete tasks - Mark tasks as done\nExtract from notes - Pull action items from meeting notes"
      },
      {
        "title": "File Structure",
        "body": "~/clawd/memory/work/\n├── TASKS.md              # Active tasks (source of truth)\n├── ARCHIVE-2026-Q1.md    # Completed tasks by quarter\n└── WORKFLOW.md           # Workflow documentation\n\nTASKS.md format:\n\n# Work Tasks\n\n## 🔴 High Priority (This Week)\n- [ ] **Set up Apollo.io** — Access for Lilla\n  - Due: ASAP\n  - Blocks: Lilla (podcast outreach)\n\n## 🟡 Medium Priority (This Week)\n- [ ] **Review newsletter concept** — Figma design\n  - Due: Before Feb 1\n\n## ✅ Done\n- [x] **Set up team calendar** — Shared Google Calendar"
      },
      {
        "title": "View Your Tasks",
        "body": "python3 ~/clawd/skills/task-tracker/scripts/tasks.py list"
      },
      {
        "title": "Daily Standup",
        "body": "python3 ~/clawd/skills/task-tracker/scripts/standup.py"
      },
      {
        "title": "Weekly Review",
        "body": "python3 ~/clawd/skills/task-tracker/scripts/weekly_review.py"
      },
      {
        "title": "List Tasks",
        "body": "# All tasks\ntasks.py list\n\n# Only high priority\ntasks.py list --priority high\n\n# Only blocked\ntasks.py list --status blocked\n\n# Due today or this week\ntasks.py list --due today\ntasks.py list --due this-week"
      },
      {
        "title": "Add Task",
        "body": "# Simple\ntasks.py add \"Draft project proposal\"\n\n# With details\ntasks.py add \"Draft project proposal\" \\\n  --priority high \\\n  --due \"Before Mar 15\" \\\n  --blocks \"Sarah (client review)\""
      },
      {
        "title": "Complete Task",
        "body": "tasks.py done \"proposal\"  # Fuzzy match - finds \"Draft project proposal\""
      },
      {
        "title": "Show Blockers",
        "body": "tasks.py blockers              # All blocking tasks\ntasks.py blockers --person sarah  # Only blocking Sarah"
      },
      {
        "title": "Extract from Meeting Notes",
        "body": "extract_tasks.py --from-text \"Meeting: discuss Q1 planning, Sarah to own budget review\"\n# Outputs: tasks.py add \"Discuss Q1 planning\" --priority medium\n#          tasks.py add \"Sarah to own budget review\" --owner sarah"
      },
      {
        "title": "Priority Levels",
        "body": "IconMeaningWhen to Use🔴 HighCritical, blocking, deadline-drivenRevenue impact, blocking others🟡 MediumImportant but not urgentReviews, feedback, planning🟢 LowMonitoring, delegatedWaiting on others, backlog"
      },
      {
        "title": "Status Workflow",
        "body": "Todo → In Progress → Done\n      ↳ Blocked (waiting on external)\n      ↳ Waiting (delegated, monitoring)"
      },
      {
        "title": "Automation (Cron)",
        "body": "JobWhenWhatDaily StandupWeekdays 8:30 AMPosts to Telegram Journaling groupWeekly ReviewMondays 9:00 AMPosts summary, archives done items"
      },
      {
        "title": "Natural Language Triggers",
        "body": "You SaySkill Does\"daily standup\"Runs standup.py, posts to Journaling\"weekly review\"Runs weekly_review.py, posts summary\"what's on my plate?\"Lists all tasks\"what's blocking Lilla?\"Shows tasks blocking Lilla\"mark IMCAS done\"Completes matching task\"what's due this week?\"Lists tasks due this week\"add task: X\"Adds task X to TASKS.md\"extract tasks from: [notes]\"Parses notes, outputs add commands"
      },
      {
        "title": "Examples",
        "body": "Morning check-in:\n\n$ python3 scripts/standup.py\n\n📋 Daily Standup — Tuesday, January 21\n\n🎯 #1 Priority: Complete project proposal draft\n   ↳ Blocking: Sarah (client review)\n\n⏰ Due Today:\n  • Complete project proposal draft\n  • Schedule team sync\n\n🔴 High Priority:\n  • Review Q1 budget (due: Before Mar 15)\n  • Draft blog post (due: ASAP)\n\n✅ Recently Completed:\n  • Set up shared calendar\n  • Update team documentation\n\nAdding a task:\n\n$ python3 scripts/tasks.py add \"Draft blog post\" --priority high --due ASAP\n\n✅ Added task: Draft blog post\n\nExtracting from meeting notes:\n\n$ python3 scripts/extract_tasks.py --from-text \"Meeting: Sarah needs budget review, create project timeline\"\n\n# Extracted 2 task(s) from meeting notes\n# Run these commands to add them:\n\ntasks.py add \"Budget review for Sarah\" --priority high\ntasks.py add \"Create project timeline\" --priority medium"
      },
      {
        "title": "Integration Points",
        "body": "Telegram Journaling group: Standup/review summaries posted automatically\nObsidian: Daily standups logged to 01-Daily/YYYY-MM-DD.md\nMEMORY.md: Patterns and recurring blockers promoted during weekly reviews\nCron: Automated standups and reviews"
      },
      {
        "title": "Troubleshooting",
        "body": "\"Tasks file not found\"\n\n# Create from template\npython3 scripts/init.py\n\nTasks not showing up\n\nCheck TASKS.md exists at ~/clawd/memory/work/TASKS.md\nVerify task format (checkboxes - [ ], headers ## 🔴)\nRun tasks.py list to debug\n\nDate parsing issues\n\nDue dates support: ASAP, YYYY-MM-DD, Before Mar 15, Before product launch\ncheck_due_date() handles common formats"
      },
      {
        "title": "Files",
        "body": "FilePurposescripts/tasks.pyMain CLI - list, add, done, blockers, archivescripts/standup.pyDaily standup generatorscripts/weekly_review.pyWeekly review generatorscripts/extract_tasks.pyExtract tasks from meeting notesscripts/utils.pyShared utilities (DRY)scripts/init.pyInitialize new TASKS.md from templatereferences/task-format.mdTask format specificationassets/templates/TASKS.mdTemplate for new task files"
      }
    ],
    "body": "<div align=\"center\">\n\nPersonal task management with daily standups and weekly reviews\n\nHomepage • Trigger Patterns • Commands\n\n</div>\nTask Tracker\n\nA personal task management skill for daily standups and weekly reviews. Tracks work tasks, surfaces priorities, and manages blockers.\n\nWhat This Skill Does\nLists tasks - Shows what's on your plate, filtered by priority, status, or deadline\nDaily standup - Shows today's #1 priority, blockers, and what was completed\nWeekly review - Summarizes last week, archives done items, plans this week\nAdd tasks - Create new tasks with priority and due date\nComplete tasks - Mark tasks as done\nExtract from notes - Pull action items from meeting notes\nFile Structure\n~/clawd/memory/work/\n├── TASKS.md              # Active tasks (source of truth)\n├── ARCHIVE-2026-Q1.md    # Completed tasks by quarter\n└── WORKFLOW.md           # Workflow documentation\n\n\nTASKS.md format:\n\n# Work Tasks\n\n## 🔴 High Priority (This Week)\n- [ ] **Set up Apollo.io** — Access for Lilla\n  - Due: ASAP\n  - Blocks: Lilla (podcast outreach)\n\n## 🟡 Medium Priority (This Week)\n- [ ] **Review newsletter concept** — Figma design\n  - Due: Before Feb 1\n\n## ✅ Done\n- [x] **Set up team calendar** — Shared Google Calendar\n\nQuick Start\nView Your Tasks\npython3 ~/clawd/skills/task-tracker/scripts/tasks.py list\n\nDaily Standup\npython3 ~/clawd/skills/task-tracker/scripts/standup.py\n\nWeekly Review\npython3 ~/clawd/skills/task-tracker/scripts/weekly_review.py\n\nCommands Reference\nList Tasks\n# All tasks\ntasks.py list\n\n# Only high priority\ntasks.py list --priority high\n\n# Only blocked\ntasks.py list --status blocked\n\n# Due today or this week\ntasks.py list --due today\ntasks.py list --due this-week\n\nAdd Task\n# Simple\ntasks.py add \"Draft project proposal\"\n\n# With details\ntasks.py add \"Draft project proposal\" \\\n  --priority high \\\n  --due \"Before Mar 15\" \\\n  --blocks \"Sarah (client review)\"\n\nComplete Task\ntasks.py done \"proposal\"  # Fuzzy match - finds \"Draft project proposal\"\n\nShow Blockers\ntasks.py blockers              # All blocking tasks\ntasks.py blockers --person sarah  # Only blocking Sarah\n\nExtract from Meeting Notes\nextract_tasks.py --from-text \"Meeting: discuss Q1 planning, Sarah to own budget review\"\n# Outputs: tasks.py add \"Discuss Q1 planning\" --priority medium\n#          tasks.py add \"Sarah to own budget review\" --owner sarah\n\nPriority Levels\nIcon\tMeaning\tWhen to Use\n🔴 High\tCritical, blocking, deadline-driven\tRevenue impact, blocking others\n🟡 Medium\tImportant but not urgent\tReviews, feedback, planning\n🟢 Low\tMonitoring, delegated\tWaiting on others, backlog\nStatus Workflow\nTodo → In Progress → Done\n      ↳ Blocked (waiting on external)\n      ↳ Waiting (delegated, monitoring)\n\nAutomation (Cron)\nJob\tWhen\tWhat\nDaily Standup\tWeekdays 8:30 AM\tPosts to Telegram Journaling group\nWeekly Review\tMondays 9:00 AM\tPosts summary, archives done items\nNatural Language Triggers\nYou Say\tSkill Does\n\"daily standup\"\tRuns standup.py, posts to Journaling\n\"weekly review\"\tRuns weekly_review.py, posts summary\n\"what's on my plate?\"\tLists all tasks\n\"what's blocking Lilla?\"\tShows tasks blocking Lilla\n\"mark IMCAS done\"\tCompletes matching task\n\"what's due this week?\"\tLists tasks due this week\n\"add task: X\"\tAdds task X to TASKS.md\n\"extract tasks from: [notes]\"\tParses notes, outputs add commands\nExamples\n\nMorning check-in:\n\n$ python3 scripts/standup.py\n\n📋 Daily Standup — Tuesday, January 21\n\n🎯 #1 Priority: Complete project proposal draft\n   ↳ Blocking: Sarah (client review)\n\n⏰ Due Today:\n  • Complete project proposal draft\n  • Schedule team sync\n\n🔴 High Priority:\n  • Review Q1 budget (due: Before Mar 15)\n  • Draft blog post (due: ASAP)\n\n✅ Recently Completed:\n  • Set up shared calendar\n  • Update team documentation\n\n\nAdding a task:\n\n$ python3 scripts/tasks.py add \"Draft blog post\" --priority high --due ASAP\n\n✅ Added task: Draft blog post\n\n\nExtracting from meeting notes:\n\n$ python3 scripts/extract_tasks.py --from-text \"Meeting: Sarah needs budget review, create project timeline\"\n\n# Extracted 2 task(s) from meeting notes\n# Run these commands to add them:\n\ntasks.py add \"Budget review for Sarah\" --priority high\ntasks.py add \"Create project timeline\" --priority medium\n\nIntegration Points\nTelegram Journaling group: Standup/review summaries posted automatically\nObsidian: Daily standups logged to 01-Daily/YYYY-MM-DD.md\nMEMORY.md: Patterns and recurring blockers promoted during weekly reviews\nCron: Automated standups and reviews\nTroubleshooting\n\n\"Tasks file not found\"\n\n# Create from template\npython3 scripts/init.py\n\n\nTasks not showing up\n\nCheck TASKS.md exists at ~/clawd/memory/work/TASKS.md\nVerify task format (checkboxes - [ ], headers ## 🔴)\nRun tasks.py list to debug\n\nDate parsing issues\n\nDue dates support: ASAP, YYYY-MM-DD, Before Mar 15, Before product launch\ncheck_due_date() handles common formats\nFiles\nFile\tPurpose\nscripts/tasks.py\tMain CLI - list, add, done, blockers, archive\nscripts/standup.py\tDaily standup generator\nscripts/weekly_review.py\tWeekly review generator\nscripts/extract_tasks.py\tExtract tasks from meeting notes\nscripts/utils.py\tShared utilities (DRY)\nscripts/init.py\tInitialize new TASKS.md from template\nreferences/task-format.md\tTask format specification\nassets/templates/TASKS.md\tTemplate for new task files"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/kesslerio/task-tracker",
    "publisherUrl": "https://clawhub.ai/kesslerio/task-tracker",
    "owner": "kesslerio",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/task-tracker",
    "downloadUrl": "https://openagent3.xyz/downloads/task-tracker",
    "agentUrl": "https://openagent3.xyz/skills/task-tracker/agent",
    "manifestUrl": "https://openagent3.xyz/skills/task-tracker/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/task-tracker/agent.md"
  }
}