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 .".
npx claudepluginhub danielrosehill/claude-code-plugins --plugin claude-hopperThis skill uses the workspace's default tool permissions.
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.
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Share bugs, ideas, or general feedback.
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.