{
  "schemaVersion": "1.0",
  "item": {
    "slug": "tasktrove",
    "name": "Tasktrove",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/willwebberley/tasktrove",
    "canonicalUrl": "https://clawhub.ai/willwebberley/tasktrove",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/tasktrove",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=tasktrove",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/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. 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-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-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/tasktrove"
    },
    "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/tasktrove",
    "agentPageUrl": "https://openagent3.xyz/skills/tasktrove/agent",
    "manifestUrl": "https://openagent3.xyz/skills/tasktrove/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/tasktrove/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": "Tasktrove Todo Management",
        "body": "Manage tasks via a self-hosted Tasktrove instance. (GitHub)"
      },
      {
        "title": "Configuration",
        "body": "Set the following environment variable:\n\nexport TASKTROVE_HOST=\"http://your-server:3333\"\n\nOptionally, if your instance requires authentication:\n\nexport TASKTROVE_TOKEN=\"your-api-token\""
      },
      {
        "title": "Using the CLI script",
        "body": "# List today's tasks\npython3 scripts/tasks.py list --today\n\n# List overdue tasks\npython3 scripts/tasks.py list --overdue\n\n# List this week's tasks\npython3 scripts/tasks.py list --week\n\n# Add a task\npython3 scripts/tasks.py add \"Task title\" --due 2026-02-10 --priority 2\n\n# Complete a task (use ID prefix from list output)\npython3 scripts/tasks.py complete abc123\n\n# Search tasks\npython3 scripts/tasks.py search \"keyword\""
      },
      {
        "title": "Direct API calls",
        "body": "List Tasks\n\ncurl -s \"$TASKTROVE_HOST/api/v1/tasks\"\n\nCreate Task\n\n# Note: API requires all fields including id, completed, labels, etc.\ncurl -X POST \"$TASKTROVE_HOST/api/v1/tasks\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"id\": \"<uuid>\",\n    \"title\": \"Task title\",\n    \"priority\": 4,\n    \"dueDate\": \"2026-02-06\",\n    \"completed\": false,\n    \"labels\": [],\n    \"subtasks\": [],\n    \"comments\": [],\n    \"createdAt\": \"2026-02-06T12:00:00.000Z\",\n    \"recurringMode\": \"dueDate\"\n  }'\n\nComplete/Update Task\n\n# Note: PATCH goes to collection endpoint with ID in body (not /tasks/{id})\ncurl -X PATCH \"$TASKTROVE_HOST/api/v1/tasks\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"id\": \"<task-id>\", \"completed\": true}'\n\nDelete Task\n\ncurl -X DELETE \"$TASKTROVE_HOST/api/v1/tasks/<task-id>\""
      },
      {
        "title": "Task Schema",
        "body": "FieldTypeNotesidstringUUID (required on create)titlestringRequireddescriptionstringOptionalcompletedbooleanDefault falseprioritynumber1 (highest) to 4 (lowest)dueDatestringYYYY-MM-DD formatprojectIdstringUUID of projectlabelsstring[]Array of label UUIDssubtasksobject[]Nested subtasksrecurringstringRRULE format"
      },
      {
        "title": "Priority Levels",
        "body": "P1: Urgent/critical\nP2: High priority\nP3: Medium priority\nP4: Low priority (default)"
      },
      {
        "title": "Notes",
        "body": "The Tasktrove UI supports natural language input, but the API expects structured JSON\nPATCH operations use the collection endpoint with ID in the request body\nPOST requires all schema fields to be present"
      }
    ],
    "body": "Tasktrove Todo Management\n\nManage tasks via a self-hosted Tasktrove instance. (GitHub)\n\nConfiguration\n\nSet the following environment variable:\n\nexport TASKTROVE_HOST=\"http://your-server:3333\"\n\n\nOptionally, if your instance requires authentication:\n\nexport TASKTROVE_TOKEN=\"your-api-token\"\n\nQuick Reference\nUsing the CLI script\n# List today's tasks\npython3 scripts/tasks.py list --today\n\n# List overdue tasks\npython3 scripts/tasks.py list --overdue\n\n# List this week's tasks\npython3 scripts/tasks.py list --week\n\n# Add a task\npython3 scripts/tasks.py add \"Task title\" --due 2026-02-10 --priority 2\n\n# Complete a task (use ID prefix from list output)\npython3 scripts/tasks.py complete abc123\n\n# Search tasks\npython3 scripts/tasks.py search \"keyword\"\n\nDirect API calls\nList Tasks\ncurl -s \"$TASKTROVE_HOST/api/v1/tasks\"\n\nCreate Task\n# Note: API requires all fields including id, completed, labels, etc.\ncurl -X POST \"$TASKTROVE_HOST/api/v1/tasks\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"id\": \"<uuid>\",\n    \"title\": \"Task title\",\n    \"priority\": 4,\n    \"dueDate\": \"2026-02-06\",\n    \"completed\": false,\n    \"labels\": [],\n    \"subtasks\": [],\n    \"comments\": [],\n    \"createdAt\": \"2026-02-06T12:00:00.000Z\",\n    \"recurringMode\": \"dueDate\"\n  }'\n\nComplete/Update Task\n# Note: PATCH goes to collection endpoint with ID in body (not /tasks/{id})\ncurl -X PATCH \"$TASKTROVE_HOST/api/v1/tasks\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"id\": \"<task-id>\", \"completed\": true}'\n\nDelete Task\ncurl -X DELETE \"$TASKTROVE_HOST/api/v1/tasks/<task-id>\"\n\nTask Schema\nField\tType\tNotes\nid\tstring\tUUID (required on create)\ntitle\tstring\tRequired\ndescription\tstring\tOptional\ncompleted\tboolean\tDefault false\npriority\tnumber\t1 (highest) to 4 (lowest)\ndueDate\tstring\tYYYY-MM-DD format\nprojectId\tstring\tUUID of project\nlabels\tstring[]\tArray of label UUIDs\nsubtasks\tobject[]\tNested subtasks\nrecurring\tstring\tRRULE format\nPriority Levels\nP1: Urgent/critical\nP2: High priority\nP3: Medium priority\nP4: Low priority (default)\nNotes\nThe Tasktrove UI supports natural language input, but the API expects structured JSON\nPATCH operations use the collection endpoint with ID in the request body\nPOST requires all schema fields to be present"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/willwebberley/tasktrove",
    "publisherUrl": "https://clawhub.ai/willwebberley/tasktrove",
    "owner": "willwebberley",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/tasktrove",
    "downloadUrl": "https://openagent3.xyz/downloads/tasktrove",
    "agentUrl": "https://openagent3.xyz/skills/tasktrove/agent",
    "manifestUrl": "https://openagent3.xyz/skills/tasktrove/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/tasktrove/agent.md"
  }
}