بنقرة واحدة
clickup-move-task
Move a ClickUp task to a different list via LocalApiServer
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Move a ClickUp task to a different list 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-move-task |
| description | Move a ClickUp task to a different list via LocalApiServer |
| allowed-tools | Bash |
| disable-model-invocation | true |
VS Code setting switchboard.apiToken must be configured.
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 PUT "/task/clickup/$TASK_ID/move" \
-H "Content-Type: application/json" \
-d '{
"targetListId": "list-uuid-here",
"moveCustomFields": true
}'
{ source_status, destination_status }. Usually omit it — when the task's status has no name match in the target list, the server auto-maps to the target list's first status and returns a warning{
"success": true,
"taskId": "...",
"targetListId": "...",
"warning": null,
"remainsInLists": 0
}
remainsInLists in the response.