# Send Verk Task Management to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/verk",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=verk",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "package.json",
      "scripts/verk-cli.mjs"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "verk",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T17:26:59.832Z",
      "expiresAt": "2026-05-08T17:26:59.832Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=verk",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=verk",
        "contentDisposition": "attachment; filename=\"verk-1.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "verk"
      },
      "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/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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Verk Task Management

You can manage tasks, projects, and automation flows in Verk using the verk-cli.mjs CLI tool.

### Tasks

List tasks: node scripts/verk-cli.mjs tasks list [--status STATUS] [--priority PRIORITY] [--search QUERY]
Get task: node scripts/verk-cli.mjs tasks get <taskId>
Create task: node scripts/verk-cli.mjs tasks create --title "Title" [--description "Desc"] [--status STATUS] [--priority PRIORITY] [--assigned userId1,userId2]
Update task: node scripts/verk-cli.mjs tasks update <taskId> [--title "New Title"] [--status STATUS] [--priority PRIORITY] [--assigned userId1,userId2]
Delete task: node scripts/verk-cli.mjs tasks delete <taskId>
Comment on task: node scripts/verk-cli.mjs tasks comment <taskId> --text "Comment text"

### Projects

List projects: node scripts/verk-cli.mjs projects list

### Flows (Automation Workflows)

List flows: node scripts/verk-cli.mjs flows list

### Valid Values

Status: Backlog, Todo, In-Progress, Review, Done
Priority: Urgent, High, Medium, Low, None

### When to Use Each Command

When asked to see what tasks exist, use tasks list. Add --status or --priority to filter, or --search to find specific tasks.
When asked about a specific task, use tasks get <taskId>.
When asked to create a task, use tasks create with at least a --title.
When asked to update, change, or modify a task, use tasks update <taskId> with the fields to change.
When asked to mark a task as done/complete, use tasks update <taskId> --status Done.
When asked to assign a task, use tasks update <taskId> --assigned userId.
When asked to delete or remove a task, use tasks delete <taskId>.
When asked to comment on or add a note to a task, use tasks comment <taskId> --text "...".
When asked about projects, use projects list.
When asked about automation workflows, use flows list.
To see comments on a task, use tasks get <taskId> — comments are included in the task response.

### Output Format

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.

### Examples

# List all high-priority tasks
node scripts/verk-cli.mjs tasks list --priority High

# Create a task and assign it
node scripts/verk-cli.mjs tasks create --title "Review Q2 roadmap" --priority High --status Todo

# Mark a task as done
node scripts/verk-cli.mjs tasks update task-abc123 --status Done

# Add a comment
node scripts/verk-cli.mjs tasks comment task-abc123 --text "Completed the review, looks good"
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: abhibavishi
- Version: 1.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-01T17:26:59.832Z
- Expires at: 2026-05-08T17:26:59.832Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/verk)
- [Send to Agent page](https://openagent3.xyz/skills/verk/agent)
- [JSON manifest](https://openagent3.xyz/skills/verk/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/verk/agent.md)
- [Download page](https://openagent3.xyz/downloads/verk)