🦀 ClawHub
Verk Task Management
by @abhibavishi
Manage tasks, projects, and workflows in Verk — AI-powered task management. Create, update, assign, and track tasks. Add comments, change status, list automa...
TERMINAL
clawhub install verk📖 About This Skill
name: verk description: "Manage tasks, projects, and workflows in Verk — AI-powered task management. Create, update, assign, and track tasks. Add comments, change status, list automation flows." metadata: openclaw: emoji: "⚡" requires: env: - VERK_API_KEY - VERK_ORG_ID bins: - node primaryEnv: VERK_API_KEY
Verk Task Management
You can manage tasks, projects, and automation flows in Verk using the verk-cli.mjs CLI tool.
Available Commands
Tasks
node scripts/verk-cli.mjs tasks list [--status STATUS] [--priority PRIORITY] [--search QUERY]node scripts/verk-cli.mjs tasks get 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 [--title "New Title"] [--status STATUS] [--priority PRIORITY] [--assigned userId1,userId2] node scripts/verk-cli.mjs tasks delete node scripts/verk-cli.mjs tasks comment --text "Comment text" Projects
node scripts/verk-cli.mjs projects listFlows (Automation Workflows)
node scripts/verk-cli.mjs flows listValid Values
Backlog, Todo, In-Progress, Review, DoneUrgent, High, Medium, Low, NoneWhen to Use Each Command
tasks list. Add --status or --priority to filter, or --search to find specific tasks.tasks get .tasks create with at least a --title.tasks update with the fields to change.tasks update --status Done .tasks update --assigned userId .tasks delete .tasks comment --text "..." .projects list.flows list.tasks get — 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 HighCreate a task and assign it
node scripts/verk-cli.mjs tasks create --title "Review Q2 roadmap" --priority High --status TodoMark a task as done
node scripts/verk-cli.mjs tasks update task-abc123 --status DoneAdd a comment
node scripts/verk-cli.mjs tasks comment task-abc123 --text "Completed the review, looks good"
💡 Examples
# List all high-priority tasks
node scripts/verk-cli.mjs tasks list --priority HighCreate a task and assign it
node scripts/verk-cli.mjs tasks create --title "Review Q2 roadmap" --priority High --status TodoMark a task as done
node scripts/verk-cli.mjs tasks update task-abc123 --status DoneAdd a comment
node scripts/verk-cli.mjs tasks comment task-abc123 --text "Completed the review, looks good"