en un clic
clickup-create-subpage
Create doc pages in ClickUp via LocalApiServer
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
Create doc pages in ClickUp via LocalApiServer
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Basé sur la classification professionnelle 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-subpage |
| description | Create doc pages in ClickUp via LocalApiServer |
| allowed-tools | Bash |
| disable-model-invocation | true |
switchboard.apiToken configuredCUR="$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 /doc/clickup \
-H "Content-Type: application/json" \
-d '{
"docId": "doc123456",
"pageName": "Architecture Overview",
"content": "# Architecture\n\nThis system consists of...",
"parentPageId": "page789"
}'
{
"success": true,
"pageId": "page987654",
"url": "https://app.clickup.com/...",
"docId": "doc123456",
"pageName": "Architecture Overview"
}