ワンクリックで
clickup-create-task
Create ClickUp tasks with optional subtasks via LocalApiServer
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Create ClickUp tasks with optional subtasks via LocalApiServer
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
When planning, flag uncertain assumptions and supply a ready-to-run web-research prompt to confirm them.
Local Switchboard management console — drive the board when the VS Code extension is running
Implement with high accuracy and self-review (invest effort up front to minimize rework)
Reconcile and restructure a feature's subtasks — improve each, then merge/delete/rewrite/split to make the set coherent
Deep planning, dependency checks, and adversarial review
Cloud-VM planning mode — plan first, do not auto-code in a remote VM
| name | clickup-create-task |
| description | Create ClickUp tasks with optional subtasks via LocalApiServer |
| allowed-tools | Bash |
| disable-model-invocation | true |
VS Code setting switchboard.apiToken must be configured with your API token.
CUR="$PWD"
while [ "$CUR" != "/" ] && [ ! -d "$CUR/.agents/skills" ]; do CUR=$(dirname "$CUR"); done
source "$CUR/.agents/skills/_lib/sb_api_call.sh"
sb_api_call POST /task/clickup \
-H "Content-Type: application/json" \
-d '{
"name": "Task name",
"listId": "list123",
"description": "Task description",
"assignees": [12345],
"dueDate": "2025-12-31",
"subtasks": [
{"name": "Subtask 1"},
{"name": "Subtask 2", "description": "Details"}
]
}'
{
"success": true,
"task": { "id": "...", "name": "..." },
"subtasks": [...],
"subtaskCount": 2,
"failedSubtasks": [] // Only present if some subtasks failed to create
}