From claude-hopper
Open a new Konsole terminal window at the current working directory. Use when the user asks to "open a terminal here", "new terminal here", or "konsole here".
npx claudepluginhub danielrosehill/claude-code-plugins --plugin claude-hopperThis skill uses the workspace's default tool permissions.
Launch a new Konsole window with its working directory set to the current shell's `$PWD`. Useful as a lightweight companion to the session-transfer workflow — e.g. after installing a new MCP server, when the user needs a fresh shell at this directory to start a sibling session.
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 a new Konsole window with its working directory set to the current shell's $PWD. Useful as a lightweight companion to the session-transfer workflow — e.g. after installing a new MCP server, when the user needs a fresh shell at this directory to start a sibling session.
setsid konsole --workdir "$PWD" >/dev/null 2>&1 &
setsid + background detaches the new window so it survives after the current Claude Code session exits.