Install
openclaw skills install shortcutManage stories on Shortcut.com kanban boards. Use when creating, updating, or listing tasks/stories on Shortcut project management boards. Supports creating stories with descriptions and types (feature/bug/chore), updating story status, and listing active/completed stories. Includes full checklist task management and comment support.
openclaw skills install shortcutManage tasks and stories on Shortcut.com project boards via API.
SHORTCUT_API_TOKEN~/.config/shortcut/api-tokenexport SHORTCUT_API_TOKEN="your-token"echo "your-token" > ~/.config/shortcut/api-token && chmod 600 ~/.config/shortcut/api-tokenscripts/shortcut-init-workflow.sh
This creates ~/.config/shortcut/workflow-states with your workspace's actual state IDs.~/.bashrc for persistence:
export SHORTCUT_API_TOKEN=$(cat ~/.config/shortcut/api-token 2>/dev/null | tr -d '\n')
source ~/.config/shortcut/workflow-states
scripts/shortcut-list-stories.sh [--active|--completed|--all] [--json]
Options:
--active - Show only incomplete stories (default)--completed - Show only completed stories--all - Include archived stories--json - Output raw JSONscripts/shortcut-show-story.sh <story-id>
Displays full story information including:
scripts/shortcut-create-story.sh "Story name" [--description "text"] [--type feature|bug|chore]
Story types:
feature (default) - New functionalitybug - Bug fixchore - Maintenance taskscripts/shortcut-update-story.sh <story-id> [--complete|--todo|--in-progress] [--description "new text"]
Workflow states: The script uses state IDs from ~/.config/shortcut/workflow-states (created by shortcut-init-workflow.sh). If not configured, it falls back to common defaults:
500000006500000007500000008500000009500000010Note: Different Shortcut workspaces may use different state IDs. Always run shortcut-init-workflow.sh to configure your workspace's actual IDs.
Create a task:
scripts/shortcut-create-task.sh <story-id> "task description"
Update task completion status:
scripts/shortcut-update-task.sh <story-id> <task-id> [--complete|--incomplete]
Edit task description:
scripts/shortcut-edit-task.sh <story-id> <task-id> "new description"
Delete a task:
scripts/shortcut-delete-task.sh <story-id> <task-id>
Use shortcut-show-story.sh to see task IDs.
Add a comment:
scripts/shortcut-add-comment.sh <story-id> "comment text"
Update a comment:
scripts/shortcut-update-comment.sh <story-id> <comment-id> "new text"
Delete a comment:
scripts/shortcut-delete-comment.sh <story-id> <comment-id>
Use shortcut-show-story.sh to see comment IDs.
SHORTCUT_API_TOKEN environment variable or fall back to ~/.config/shortcut/api-token