返回顶部
p

personal-task-tracking

Query and manage ClickUp via REST API and the local `scripts/query.sh` helper. Use when listing open or completed tasks, counting due work, looking up spaces or lists, checking assignee workload, fetching task details, creating tasks, or closing tasks in ClickUp.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.1
安全检测
已通过
111
下载量
0
收藏
概述
安装方式
版本历史

personal-task-tracking

# ClickUp Skill Interact with ClickUp's REST API for task management, reporting, and workflow automation. ## Configuration Before using this skill, ensure the following are configured: - **API Token:** `CLICKUP_API_KEY` - **Team/Workspace ID:** `CLICKUP_TEAM_ID` - **Task Assignee ID:** `CLICKUP_ASSIGNEE_ID` Check if they are available as environment variables: ```bash echo $CLICKUP_API_KEY echo $CLICKUP_TEAM_ID echo $CLICKUP_ASSIGNEE_ID ``` If not available, export them as environment variables. ```bash export CLICKUP_API_KEY={value} export CLICKUP_TEAM_ID={value} export CLICKUP_ASSIGNEE_ID={value} ``` ## Quick Start ### Using the Helper Script The fastest way to query ClickUp: ```bash # Set environment variables export CLICKUP_API_KEY="pk_..." export CLICKUP_TEAM_ID="..." export CLICKUP_ASSIGNEE_ID="..." # Get open tasks due or overdue by a given end time ./scripts/clickup-query.sh tasks --end "2026-03-28 17:00" # Get task counts for open tasks due or overdue by a given end time ./scripts/clickup-query.sh task-count --end "2026-03-28 17:00" # Get tasks completed during a time window ./scripts/clickup-query.sh completed-tasks --start "2026-03-24" --end "2026-03-28 17:00" # Get spaces under the team ./scripts/clickup-query.sh spaces # Get lists under a space_id ./scripts/clickup-query.sh lists 123456 # Create a task with given title and due date, assign to CLICKUP_ASSIGNEE_ID, under a list_id ./scripts/clickup-query.sh create-task {list_id} "Follow up with customer" "2026-03-28 17:00" # Close a task with task_id ./scripts/clickup-query.sh close-task 86e0jmdfe ``` ### Direct API Calls For custom queries or operations not covered by the helper script. Example: ```bash # Get all open tasks (with subtasks and pagination) curl "https://api.clickup.com/api/v2/team/{team_id}/task?include_closed=false&subtasks=true" \ -H "Authorization: {api_key}" ``` ## Common Operations ### Get open tasks due or overdue by a given end time ```bash # Using helper script ./scripts/clickup-query.sh tasks --end "2026-03-28 17:00" ``` ### Get Task Counts due or overdue by a given end time ```bash # Using helper script ./scripts/clickup-query.sh task-count --end "2026-03-28 17:00" ``` ### Create a Task with given title and due date step 1. Get all list ```bash # Using helper script ./scripts/clickup-query.sh spaces ./scripts/clickup-query.sh lists {space_id} ``` Step 2: Choose a list that's most relevant to the task Step 3: Create the task ```bash # Using helper script ./scripts/clickup-query.sh create-task {list_id} "Follow up with customer" "2026-03-28 17:00" ``` ### Close a Task ```bash # Using helper script ./scripts/clickup-query.sh close-task {task_id} ```

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 personal-task-tracking-1776016876 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 personal-task-tracking-1776016876 技能

通过命令行安装

skillhub install personal-task-tracking-1776016876

下载 Zip 包

⬇ 下载 personal-task-tracking v1.0.1

文件大小: 6.01 KB | 发布时间: 2026-4-13 11:27

v1.0.1 最新 2026-4-13 11:27
- Renamed the skill from "clickup" to "personal-task-tracking"
- Updated the skill description to clarify supported actions and usage with ClickUp tasks
- Added metadata for tool requirements and installation instructions (bash, curl, jq, env variables)
- Refined configuration instructions and streamlined documentation for using the helper script
- Enhanced clarity about required environment variables and helper script functionality

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部