From gimp
First-run setup for the GIMP plugin. Detects how GIMP is installed on the user's Linux machine (native package, Flatpak, Snap, AppImage), captures version and CLI binary path, and persists a profile to $CLAUDE_USER_DATA so the other skills can shell out without re-detecting. Use the first time the plugin is invoked, after a GIMP upgrade, or whenever skills report a stale path.
npx claudepluginhub danielrosehill/claude-code-plugins --plugin gimpThis skill uses the workspace's default tool permissions.
Detect the local GIMP installation and write a profile.
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.
Detect the local GIMP installation and write a profile.
DATA_ROOT="${CLAUDE_USER_DATA:-${XDG_DATA_HOME:-$HOME/.local/share}/claude-plugins}/gimp"
mkdir -p "$DATA_ROOT"
<bin> --version):
command -v gimp, command -v gimp-2.10, command -v gimp-console, command -v gimp-console-2.10. GIMP 3 ships gimp-console-3.0.flatpak info org.gimp.GIMP — if installed, the run command is flatpak run org.gimp.GIMP and headless is flatpak run --command=gimp-console org.gimp.GIMP.snap list gimp — run command is snap run gimp.~/.config/GIMP/<MAJOR.MINOR>/ (e.g. 2.10, 3.0). This is where Script-Fu scripts and plug-ins live.$DATA_ROOT/config.json:
{
"install_type": "native|flatpak|snap|appimage",
"gimp_bin": "/usr/bin/gimp",
"gimp_console_bin": "/usr/bin/gimp-console-2.10",
"version": "2.10.34",
"config_dir": "/home/<user>/.config/GIMP/2.10",
"scripts_dir": "/home/<user>/.config/GIMP/2.10/scripts",
"plug_ins_dir": "/home/<user>/.config/GIMP/2.10/plug-ins",
"detected_at": "<ISO timestamp>"
}
gimp-console over gimp -i -b when available — same behavior, no display dependency.~/.claude/plugins/gimp/ — that's the install dir and gets clobbered on update.