{
  "schemaVersion": "1.0",
  "item": {
    "slug": "verk",
    "name": "Verk Task Management",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/abhibavishi/verk",
    "canonicalUrl": "https://clawhub.ai/abhibavishi/verk",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/verk",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=verk",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "package.json",
      "scripts/verk-cli.mjs"
    ],
    "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-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/verk"
    },
    "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/verk",
    "agentPageUrl": "https://openagent3.xyz/skills/verk/agent",
    "manifestUrl": "https://openagent3.xyz/skills/verk/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/verk/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": "Verk Task Management",
        "body": "You can manage tasks, projects, and automation flows in Verk using the verk-cli.mjs CLI tool."
      },
      {
        "title": "Tasks",
        "body": "List tasks: node scripts/verk-cli.mjs tasks list [--status STATUS] [--priority PRIORITY] [--search QUERY]\nGet task: node scripts/verk-cli.mjs tasks get <taskId>\nCreate task: node scripts/verk-cli.mjs tasks create --title \"Title\" [--description \"Desc\"] [--status STATUS] [--priority PRIORITY] [--assigned userId1,userId2]\nUpdate task: node scripts/verk-cli.mjs tasks update <taskId> [--title \"New Title\"] [--status STATUS] [--priority PRIORITY] [--assigned userId1,userId2]\nDelete task: node scripts/verk-cli.mjs tasks delete <taskId>\nComment on task: node scripts/verk-cli.mjs tasks comment <taskId> --text \"Comment text\""
      },
      {
        "title": "Projects",
        "body": "List projects: node scripts/verk-cli.mjs projects list"
      },
      {
        "title": "Flows (Automation Workflows)",
        "body": "List flows: node scripts/verk-cli.mjs flows list"
      },
      {
        "title": "Valid Values",
        "body": "Status: Backlog, Todo, In-Progress, Review, Done\nPriority: Urgent, High, Medium, Low, None"
      },
      {
        "title": "When to Use Each Command",
        "body": "When asked to see what tasks exist, use tasks list. Add --status or --priority to filter, or --search to find specific tasks.\nWhen asked about a specific task, use tasks get <taskId>.\nWhen asked to create a task, use tasks create with at least a --title.\nWhen asked to update, change, or modify a task, use tasks update <taskId> with the fields to change.\nWhen asked to mark a task as done/complete, use tasks update <taskId> --status Done.\nWhen asked to assign a task, use tasks update <taskId> --assigned userId.\nWhen asked to delete or remove a task, use tasks delete <taskId>.\nWhen asked to comment on or add a note to a task, use tasks comment <taskId> --text \"...\".\nWhen asked about projects, use projects list.\nWhen asked about automation workflows, use flows list.\nTo see comments on a task, use tasks get <taskId> — comments are included in the task response."
      },
      {
        "title": "Output Format",
        "body": "All commands return JSON. Parse the output to extract relevant information for the user. When listing tasks, summarize key fields (title, status, priority, assignee) rather than dumping raw JSON."
      },
      {
        "title": "Examples",
        "body": "# List all high-priority tasks\nnode scripts/verk-cli.mjs tasks list --priority High\n\n# Create a task and assign it\nnode scripts/verk-cli.mjs tasks create --title \"Review Q2 roadmap\" --priority High --status Todo\n\n# Mark a task as done\nnode scripts/verk-cli.mjs tasks update task-abc123 --status Done\n\n# Add a comment\nnode scripts/verk-cli.mjs tasks comment task-abc123 --text \"Completed the review, looks good\""
      }
    ],
    "body": "Verk Task Management\n\nYou can manage tasks, projects, and automation flows in Verk using the verk-cli.mjs CLI tool.\n\nAvailable Commands\nTasks\nList tasks: node scripts/verk-cli.mjs tasks list [--status STATUS] [--priority PRIORITY] [--search QUERY]\nGet task: node scripts/verk-cli.mjs tasks get <taskId>\nCreate task: node scripts/verk-cli.mjs tasks create --title \"Title\" [--description \"Desc\"] [--status STATUS] [--priority PRIORITY] [--assigned userId1,userId2]\nUpdate task: node scripts/verk-cli.mjs tasks update <taskId> [--title \"New Title\"] [--status STATUS] [--priority PRIORITY] [--assigned userId1,userId2]\nDelete task: node scripts/verk-cli.mjs tasks delete <taskId>\nComment on task: node scripts/verk-cli.mjs tasks comment <taskId> --text \"Comment text\"\nProjects\nList projects: node scripts/verk-cli.mjs projects list\nFlows (Automation Workflows)\nList flows: node scripts/verk-cli.mjs flows list\nValid Values\nStatus: Backlog, Todo, In-Progress, Review, Done\nPriority: Urgent, High, Medium, Low, None\nWhen to Use Each Command\nWhen asked to see what tasks exist, use tasks list. Add --status or --priority to filter, or --search to find specific tasks.\nWhen asked about a specific task, use tasks get <taskId>.\nWhen asked to create a task, use tasks create with at least a --title.\nWhen asked to update, change, or modify a task, use tasks update <taskId> with the fields to change.\nWhen asked to mark a task as done/complete, use tasks update <taskId> --status Done.\nWhen asked to assign a task, use tasks update <taskId> --assigned userId.\nWhen asked to delete or remove a task, use tasks delete <taskId>.\nWhen asked to comment on or add a note to a task, use tasks comment <taskId> --text \"...\".\nWhen asked about projects, use projects list.\nWhen asked about automation workflows, use flows list.\nTo see comments on a task, use tasks get <taskId> — comments are included in the task response.\nOutput Format\n\nAll commands return JSON. Parse the output to extract relevant information for the user. When listing tasks, summarize key fields (title, status, priority, assignee) rather than dumping raw JSON.\n\nExamples\n# List all high-priority tasks\nnode scripts/verk-cli.mjs tasks list --priority High\n\n# Create a task and assign it\nnode scripts/verk-cli.mjs tasks create --title \"Review Q2 roadmap\" --priority High --status Todo\n\n# Mark a task as done\nnode scripts/verk-cli.mjs tasks update task-abc123 --status Done\n\n# Add a comment\nnode scripts/verk-cli.mjs tasks comment task-abc123 --text \"Completed the review, looks good\""
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/abhibavishi/verk",
    "publisherUrl": "https://clawhub.ai/abhibavishi/verk",
    "owner": "abhibavishi",
    "version": "1.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/verk",
    "downloadUrl": "https://openagent3.xyz/downloads/verk",
    "agentUrl": "https://openagent3.xyz/skills/verk/agent",
    "manifestUrl": "https://openagent3.xyz/skills/verk/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/verk/agent.md"
  }
}