TopRank Skills

Home / Claw Skills / Search / verk
Official OpenClaw rules 36%

verk

Manage tasks, projects, and workflows in Verk — AI-powered task management. Create, update, assign, and track tasks. Add comments, change status, list automation flows.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 verk 技能。 若已安装,则直接安装 verk 技能。

Overview

Skill Key
abhibavishi/verk
Author
abhibavishi
Source Repo
openclaw/skills
Version
-
Source Path
skills/abhibavishi/verk
Latest Commit SHA
7bc233366cce4a4cbfb40abf9307da20c2b78bb4

Extracted Content

SKILL.md excerpt

# Verk Task Management

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

## Available Commands

### 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 comm...

README excerpt

# Verk Skill for OpenClaw

Manage your [Verk](https://verkapp.com) tasks, projects, and automation flows directly from OpenClaw via natural language.

## Setup

### 1. Get a Verk API Key

1. Log in to [Verk](https://verkapp.com)
2. Go to **Settings > API Keys**
3. Generate a new API key (format: `verk_sk_...`)
4. Copy your **Organization ID** from the URL or settings

### 2. Install the Skill

Copy this skill to your OpenClaw workspace:

```bash
cp -r . ~/.openclaw/workspace/skills/verk/
```

Or install from ClawHub:

```bash
clawhub install verk
```

### 3. Set Environment Variables

Add to your OpenClaw configuration or shell profile:

```bash
export VERK_API_KEY="verk_sk_your_key_here"
export VERK_ORG_ID="org-your-org-id"
```

## Usage

Chat with your OpenClaw agent using natural language:

- "List my Verk tasks"
- "Create a task called 'Review Q2 roadmap' with high priority"
- "Mark task-abc123 as done"
- "What are my urgent tasks?"
- "Add a comment to task-xyz: 'Looking good, approved'"
- "Show me all projects"
- "Trigger the daily-standup flow"

## Available Commands

| Command | Description |
|---------|-------------|
| `tasks list` | List tasks with optional filters |
| `tasks get <id>` | Get details for a specific task |
| `tasks create` | Create a new task |
| `tasks update <id>` | Update an existing task |
| `tasks delete <id>` | Delete a task |
| `tasks comment <id>` | Add a comment to a task |
| `tasks comments <id>` | List comments on a task |
| `projects list` | List all projects |
| `flows list` | List automation flows |
| `flows trigger <id>` | Trigger an automation flow |

## Requirements

- Node.js 18+ (for built-in `fetch`)
- Verk API key with appropriate permissions
- Verk Organization ID

## License

MIT

Related Claw Skills