From storyhook
Use when the storyhook 'story' CLI is missing (command not found) and an operation needs it, or when explicitly asked to install the storyhook CLI. Installs the story binary via the official installer or cargo, then verifies. Useful after installing the plugin via the Claude Code marketplace, which does not include the CLI.
How this skill is triggered — by the user, by Claude, or both
Slash command
/storyhook:storyhook-installThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Install the storyhook `story` CLI binary. The Claude Code plugin (skills and hooks)
Install the storyhook story CLI binary. The Claude Code plugin (skills and hooks)
needs this CLI to do anything useful; installing via the marketplace does not bring
the CLI with it, so this skill bootstraps it.
Run command -v story.
story doctor
(or story --help — note there is no --version flag) and stop here. Nothing to do.Use AskUserQuestion to get explicit permission to install and to pick a method:
~/.local/bin/story:
curl -fsSL https://raw.githubusercontent.com/mikeydotio/storyhook/main/install.sh | bash
cargo install storyhook
If the user declines, stop and explain that storyhook operations can't run without the CLI.
Run the command the user selected.
Run story --help to confirm the binary is on PATH and working.
story is still not found, the install directory is probably not on PATH.
Tell the user to add ~/.local/bin to their PATH (the official installer prints the
exact line), e.g.:
export PATH="$HOME/.local/bin:$PATH"
They will need to restart their shell (and Claude Code session) for it to take effect.Once the CLI is verified, suggest:
/storyhook:storyhook-setup to initialize the project and configure plugin behavior, or/storyhook:storyhook-context to see the current project state and start working.Provides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub mikeydotio/storyhook --plugin storyhook