From claude-hopper
Open VS Code at the current working directory. Use when the user asks to "open in vs code", "open in vscode", "vscode here", or "code .".
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-hopper:vscode-hereThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Launch VS Code with the current shell's `$PWD` as the workspace root. Companion to `terminal-here` — useful when the user wants to jump from a Claude session into the editor at the same directory.
Launch VS Code with the current shell's $PWD as the workspace root. Companion to terminal-here — useful when the user wants to jump from a Claude session into the editor at the same directory.
setsid code "$PWD" >/dev/null 2>&1 &
setsid + background detaches the editor process so it survives after the current Claude Code session exits.
code is not on $PATH, fall back to codium or report the missing binary rather than guessing a path.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 danielrosehill/claude-code-plugins --plugin claude-hopper