โ† All skills
Tencent SkillHub ยท Productivity

Test Integration

Manage ClickUp tasks by listing, creating, updating statuses, and retrieving details via ClickUp API using provided workspace and API token.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Manage ClickUp tasks by listing, creating, updating statuses, and retrieving details via ClickUp API using provided workspace and API token.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
package.json, skill.js, SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

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. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.2

Documentation

ClawHub primary doc Primary doc: SKILL.md 11 sections Open source page

Credentials

Note: Configure your credentials in TOOLS.md or set environment variables: CLICKUP_API_TOKEN - Your ClickUp API token CLICKUP_WORKSPACE_ID - Your ClickUp workspace ID

User Assignment Guide

When assigning tasks, use the correct email based on who should do the work: EmailWhoUse Whenyour-email@example.comHumanTasks for you to do manuallyai-assistant@example.comAI AssistantTasks for AI to executeBoth emailsBoth Human + AICollaborative tasks where AI does research/writing, human reviews/decides

Examples

AI-only task: "Research trend detection tools" โ†’ Assign to AI email Human-only task: "Record video for YouTube" โ†’ Assign to your email Collaborative: "Create content strategy" โ†’ Assign to both

List Tasks in a List

GET https://api.clickup.com/api/v2/list/{list_id}/task Authorization: {your_api_token}

Get All Tasks in Workspace

GET https://api.clickup.com/api/v2/team/{workspace_id}/task Authorization: {your_api_token}

Create Task

POST https://api.clickup.com/api/v2/list/{list_id}/task Authorization: {your_api_token} Content-Type: application/json { "name": "Task name", "description": "Task description", "status": "active" }

Update Task Status

PUT https://api.clickup.com/api/v2/task/{task_id} Authorization: {your_api_token} Content-Type: application/json { "status": "done" }

Get Task Details

GET https://api.clickup.com/api/v2/task/{task_id} Authorization: {your_api_token}

Headers for All Requests

Authorization: {your_api_token} Content-Type: application/json

Status Values

Common statuses: active, pending, review, completed, done

Error Handling

401: Check API token 404: Verify list_id or task_id exists 429: Rate limited - wait before retrying

Category context

Workflow acceleration for inboxes, docs, calendars, planning, and execution loops.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs1 Scripts1 Config
  • SKILL.md Primary doc
  • skill.js Scripts
  • package.json Config