{
  "schemaVersion": "1.0",
  "item": {
    "slug": "task-todo",
    "name": "Task ToDo",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/makkzone/task-todo",
    "canonicalUrl": "https://clawhub.ai/makkzone/task-todo",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/task-todo",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=task-todo",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "task_skill.py",
      "requirements.txt",
      "database.py",
      "README.md",
      "SKILL.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. 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",
      "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/task-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/task-todo",
    "agentPageUrl": "https://openagent3.xyz/skills/task-todo/agent",
    "manifestUrl": "https://openagent3.xyz/skills/task-todo/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/task-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. 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": "Overview",
        "body": "A task management agent skill that provides persistent task storage and management using SQLite database. This skill enables AI agents to create, read, update, delete, and query tasks with status tracking and priority management."
      },
      {
        "title": "Capabilities",
        "body": "Task Creation: Add new tasks with title, description, status, and priority\nTask Retrieval: Get single tasks or list all tasks\nTask Filtering: Filter tasks by status or priority\nTask Updates: Modify any task field (title, description, status, priority)\nTask Deletion: Remove tasks from the database\nPersistent Storage: All tasks stored in SQLite database with automatic timestamps"
      },
      {
        "title": "Command Line Interface",
        "body": "# Add task\npython task_skill.py add \"Task title\" \"Description\" --status pending --priority high\n\n# List all tasks\npython task_skill.py list\n\n# Filter by status\npython task_skill.py list --status in_progress\n\n# Filter by priority\npython task_skill.py list --priority urgent\n\n# Get task details\npython task_skill.py get 1\n\n# Update task\npython task_skill.py update 1 --status completed --priority low\n\n# Delete task\npython task_skill.py delete 1"
      },
      {
        "title": "Task Fields",
        "body": "FieldTypeDescriptionRequiredDefaultidINTEGERAuto-generated task IDAuto-titleTEXTTask titleYes-descriptionTEXTTask descriptionNo\"\"statusTEXTTask statusYes\"pending\"priorityTEXTTask priorityYes\"medium\"created_atTIMESTAMPCreation timestampAutoCurrent timeupdated_atTIMESTAMPLast update timestampAutoCurrent time"
      },
      {
        "title": "Status Values",
        "body": "pending - Task is pending and not started\nin_progress - Task is currently being worked on\ncompleted - Task is finished\nblocked - Task is blocked and cannot proceed"
      },
      {
        "title": "Priority Values",
        "body": "low - Low priority task\nmedium - Medium priority task (default)\nhigh - High priority task\nurgent - Urgent task requiring immediate attention"
      },
      {
        "title": "Response Format",
        "body": "All agent methods return a dictionary with a success field:"
      },
      {
        "title": "Successful Add",
        "body": "{\n    \"success\": True,\n    \"task_id\": 1,\n    \"message\": \"Task created with ID: 1\"\n}"
      },
      {
        "title": "Successful List",
        "body": "{\n    \"success\": True,\n    \"tasks\": [\n        {\n            \"id\": 1,\n            \"title\": \"Task title\",\n            \"description\": \"Task description\",\n            \"status\": \"pending\",\n            \"priority\": \"medium\",\n            \"created_at\": \"2026-02-11T10:30:00\",\n            \"updated_at\": \"2026-02-11T10:30:00\"\n        }\n    ],\n    \"count\": 1\n}"
      },
      {
        "title": "Successful Get",
        "body": "{\n    \"success\": True,\n    \"task\": {\n        \"id\": 1,\n        \"title\": \"Task title\",\n        \"description\": \"Task description\",\n        \"status\": \"pending\",\n        \"priority\": \"medium\",\n        \"created_at\": \"2026-02-11T10:30:00\",\n        \"updated_at\": \"2026-02-11T10:30:00\"\n    }\n}"
      },
      {
        "title": "Failed Operation",
        "body": "{\n    \"success\": False,\n    \"message\": \"Task 1 not found\"\n}"
      },
      {
        "title": "Database",
        "body": "Database File: tasks.db (created automatically in current directory)\nDatabase Type: SQLite3\nSchema Constraints: Status and priority values are validated at database level\nTimestamps: Automatically managed by the database"
      },
      {
        "title": "Dependencies",
        "body": "None - uses Python's built-in sqlite3 module."
      },
      {
        "title": "Use Cases",
        "body": "Task Tracking: Track personal or project tasks with status and priority\nTODO Management: Maintain a persistent TODO list\nWorkflow Automation: Integrate task management into automated workflows\nProject Management: Simple project task tracking\nAgent Memory: Provide AI agents with persistent task storage"
      },
      {
        "title": "Notes",
        "body": "The database connection is persistent across operations\nAlways call agent.close() when finished to properly close the database\nUse context manager pattern for automatic cleanup:\nwith TaskAgent() as agent:\n    agent.add_task(\"Task\", \"Description\")\n\n\nTask IDs are auto-incrementing integers starting from 1\nAll timestamps are in ISO 8601 format"
      }
    ],
    "body": "Task-Todo Agent Skill\nOverview\n\nA task management agent skill that provides persistent task storage and management using SQLite database. This skill enables AI agents to create, read, update, delete, and query tasks with status tracking and priority management.\n\nCapabilities\nTask Creation: Add new tasks with title, description, status, and priority\nTask Retrieval: Get single tasks or list all tasks\nTask Filtering: Filter tasks by status or priority\nTask Updates: Modify any task field (title, description, status, priority)\nTask Deletion: Remove tasks from the database\nPersistent Storage: All tasks stored in SQLite database with automatic timestamps\nUsage\nCommand Line Interface\n# Add task\npython task_skill.py add \"Task title\" \"Description\" --status pending --priority high\n\n# List all tasks\npython task_skill.py list\n\n# Filter by status\npython task_skill.py list --status in_progress\n\n# Filter by priority\npython task_skill.py list --priority urgent\n\n# Get task details\npython task_skill.py get 1\n\n# Update task\npython task_skill.py update 1 --status completed --priority low\n\n# Delete task\npython task_skill.py delete 1\n\nData Model\nTask Fields\nField\tType\tDescription\tRequired\tDefault\nid\tINTEGER\tAuto-generated task ID\tAuto\t-\ntitle\tTEXT\tTask title\tYes\t-\ndescription\tTEXT\tTask description\tNo\t\"\"\nstatus\tTEXT\tTask status\tYes\t\"pending\"\npriority\tTEXT\tTask priority\tYes\t\"medium\"\ncreated_at\tTIMESTAMP\tCreation timestamp\tAuto\tCurrent time\nupdated_at\tTIMESTAMP\tLast update timestamp\tAuto\tCurrent time\nStatus Values\npending - Task is pending and not started\nin_progress - Task is currently being worked on\ncompleted - Task is finished\nblocked - Task is blocked and cannot proceed\nPriority Values\nlow - Low priority task\nmedium - Medium priority task (default)\nhigh - High priority task\nurgent - Urgent task requiring immediate attention\nResponse Format\n\nAll agent methods return a dictionary with a success field:\n\nSuccessful Add\n{\n    \"success\": True,\n    \"task_id\": 1,\n    \"message\": \"Task created with ID: 1\"\n}\n\nSuccessful List\n{\n    \"success\": True,\n    \"tasks\": [\n        {\n            \"id\": 1,\n            \"title\": \"Task title\",\n            \"description\": \"Task description\",\n            \"status\": \"pending\",\n            \"priority\": \"medium\",\n            \"created_at\": \"2026-02-11T10:30:00\",\n            \"updated_at\": \"2026-02-11T10:30:00\"\n        }\n    ],\n    \"count\": 1\n}\n\nSuccessful Get\n{\n    \"success\": True,\n    \"task\": {\n        \"id\": 1,\n        \"title\": \"Task title\",\n        \"description\": \"Task description\",\n        \"status\": \"pending\",\n        \"priority\": \"medium\",\n        \"created_at\": \"2026-02-11T10:30:00\",\n        \"updated_at\": \"2026-02-11T10:30:00\"\n    }\n}\n\nFailed Operation\n{\n    \"success\": False,\n    \"message\": \"Task 1 not found\"\n}\n\nDatabase\nDatabase File: tasks.db (created automatically in current directory)\nDatabase Type: SQLite3\nSchema Constraints: Status and priority values are validated at database level\nTimestamps: Automatically managed by the database\nDependencies\n\nNone - uses Python's built-in sqlite3 module.\n\nUse Cases\nTask Tracking: Track personal or project tasks with status and priority\nTODO Management: Maintain a persistent TODO list\nWorkflow Automation: Integrate task management into automated workflows\nProject Management: Simple project task tracking\nAgent Memory: Provide AI agents with persistent task storage\nNotes\nThe database connection is persistent across operations\nAlways call agent.close() when finished to properly close the database\nUse context manager pattern for automatic cleanup:\nwith TaskAgent() as agent:\n    agent.add_task(\"Task\", \"Description\")\n\nTask IDs are auto-incrementing integers starting from 1\nAll timestamps are in ISO 8601 format"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/makkzone/task-todo",
    "publisherUrl": "https://clawhub.ai/makkzone/task-todo",
    "owner": "makkzone",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/task-todo",
    "downloadUrl": "https://openagent3.xyz/downloads/task-todo",
    "agentUrl": "https://openagent3.xyz/skills/task-todo/agent",
    "manifestUrl": "https://openagent3.xyz/skills/task-todo/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/task-todo/agent.md"
  }
}