Interact with Shortcut - view, search, update, and create stories, epics, objectives, iterations, docs, labels, and teams using the short CLI. IMPORTANT - When you see URLs matching `app.shortcut.com/*`, use this skill instead of WebFetch.
91
99%
Does it follow best practices?
Impact
81%
1.88xAverage score across 5 eval scenarios
Advisory
Suggest reviewing before use
Manage Shortcut stories, epics, objectives, iterations, docs, labels, teams, and more via the short CLI tool.
When invoked with /shortcut $ARGUMENTS:
Verify the short CLI is installed and authenticated:
which short && short --versionbrew upgrade shortcut-cli or npm update -g @shortcut-cli/shortcut-cli)Route based on argument pattern (in priority order):
| Pattern | Action |
|---|---|
| No arguments | Show help menu with available commands |
URL containing /story/<id> | Extract numeric ID, run short story <id> |
URL containing /epic/<id> | Extract numeric ID, run short epic view <id> |
search <text> | Run short search -t "<text>" |
my | Run short search -o me |
list | Run short search (no filters) |
create | Ask for entity type + details, run create command (see references/commands.md ## Create) |
objectives [...] | Route to objectives commands (see references/commands.md ## Objectives) |
teams [...] | Route to teams commands (see references/commands.md ## Teams) |
iterations [...] | Route to iterations commands (see references/commands.md ## Iterations) |
docs [...] | Route to docs commands (see references/commands.md ## Docs) |
labels [...] | Route to labels commands (see references/commands.md ## Labels) |
workflows | Run short workflows |
projects | Run short projects |
story <id> <subcommand> | Route to story subcommands: history, comments, tasks, relations (see references/commands.md ## Stories) |
| Numeric value | Treat as story ID, run short story <id> |
Create supports stories, epics, iterations, objectives, docs, and labels — see references/commands.md for each.
Always quote user-provided strings and escape double quotes in input.
Suggest relevant follow-up actions after presenting results.
| Error | Detection | Response |
|---|---|---|
| CLI not found | which short empty | Show installation instructions, do NOT auto-install |
| Auth failure | "unauthorized" or "invalid token" | Guide user to run short install |
| Not found | "not found" in output | Confirm ID, suggest search |
| Network error | Timeout or connection error | Ask user to check connection |
| Node.js version | ESM/import errors or "unsupported engine" | User needs Node.js >= 20.19.0 |
# Install via Homebrew (preferred)
brew install shortcut-cli
# Or via npm (fallback)
npm install -g @shortcut-cli/shortcut-cli
# Verify version (expect >= 5.0.0)
short --version
# Authenticate
short install
# Or: export SHORTCUT_API_TOKEN="your-api-token"| Task | Reference |
|---|---|
| CLI commands (stories, epics, objectives, iterations, docs, labels, teams, search, create, API) | references/commands.md — use ## Section headers to find specific command families |
| Shortcut API spec | references/shortcut.swagger.json |