Test Integration

👤 savelieve 📦 v1.0.2 ⭐ 4.1 ⬇️ 2.4K 下載
🤖 AI-Agent 免費 🔑 需 API Key

📖 技能介紹


name: clickup displayName: ClickUp Integration description: Interact with ClickUp API for task management. Use for listing tasks, creating tasks, updating task status, and managing workspaces. Base URL: https://api.clickup.com/api/v2 version: 1.0.0 tags: - productivity - task-management - api


ClickUp Integration

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:

Email Who Use When
your-email@example.com Human Tasks for you to do manually
ai-assistant@example.com AI Assistant Tasks for AI to execute
Both emails Both Human + AI Collaborative 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

Common Actions

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

7w4.net收錄了海量優質技能外掛。

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

🤖 AI 評測

This ClickUp skill handles basic task operations well with good documentation and secure credential handling. The scope is limited to core tasks—it doesn't support folders, lists, comments, or time tracking. For simple task management it works adequately, but users needing advanced features will find it lacking.

📊 多維度評分

適應性3.9
規範性4.1
有效性4.3
可靠性4
可信度4.3

📁 包含檔案 (4 個)

📄 SKILL.md 2.2 KB
📄 _meta.json 131 B
📄 package.json 341 B
📄 skill.js 5.8 KB