open-workspace

Installation
SKILL.md

Open Image Workspace

CONFIG="${CLAUDE_USER_DATA:-${XDG_DATA_HOME:-$HOME/.local/share}/claude-plugins}/image-production/workspace.json"
test -f "$CONFIG" || { echo "No image workspace registered. Run workspace-setup first."; exit 1; }
WS=$(jq -r .path "$CONFIG" 2>/dev/null || grep -oP '"path":\s*"\K[^"]+' "$CONFIG")
test -d "$WS" || { echo "Workspace path missing: $WS"; exit 1; }

if command -v konsole >/dev/null; then
  konsole --workdir "$WS" &
elif command -v gnome-terminal >/dev/null; then
  gnome-terminal --working-directory="$WS" &
elif command -v xdg-open >/dev/null; then
  xdg-open "$WS" &
fi

echo "Workspace: $WS"
ls -la "$WS"
Installs
9
GitHub Stars
16
First Seen
May 2, 2026
open-workspace — danielrosehill/claude-image-production-plugin