Install
openclaw skills install verkManage tasks, projects, and workflows in Verk — AI-powered task management. Create, update, assign, and track tasks. Add comments, change status, list automation flows.
openclaw skills install verkYou can manage tasks, projects, and automation flows in Verk using the verk-cli.mjs CLI tool.
node scripts/verk-cli.mjs tasks list [--status STATUS] [--priority PRIORITY] [--search QUERY]node scripts/verk-cli.mjs tasks get <taskId>node scripts/verk-cli.mjs tasks create --title "Title" [--description "Desc"] [--status STATUS] [--priority PRIORITY] [--assigned userId1,userId2]node scripts/verk-cli.mjs tasks update <taskId> [--title "New Title"] [--status STATUS] [--priority PRIORITY] [--assigned userId1,userId2]node scripts/verk-cli.mjs tasks delete <taskId>node scripts/verk-cli.mjs tasks comment <taskId> --text "Comment text"node scripts/verk-cli.mjs projects listnode scripts/verk-cli.mjs flows listBacklog, Todo, In-Progress, Review, DoneUrgent, High, Medium, Low, Nonetasks list. Add --status or --priority to filter, or --search to find specific tasks.tasks get <taskId>.tasks create with at least a --title.tasks update <taskId> with the fields to change.tasks update <taskId> --status Done.tasks update <taskId> --assigned userId.tasks delete <taskId>.tasks comment <taskId> --text "...".projects list.flows list.tasks get <taskId> — comments are included in the task response.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.
# 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"