From image-production
Create a new image project inside the user's registered image workspace. Use when the user says "new image project", "create an image project called X", "scaffold a new image set", or similar. Creates a project subfolder with source, working, exports, references layout and an optional git init.
npx claudepluginhub danielrosehill/claude-code-plugins --plugin image-productionThis skill is limited to using the following tools:
Scaffold a project folder inside the registered image workspace.
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.
Scaffold a project folder inside the registered image workspace.
CONFIG="${CLAUDE_USER_DATA:-${XDG_DATA_HOME:-$HOME/.local/share}/claude-plugins}/image-production/workspace.json"
test -f "$CONFIG" || { echo "No workspace registered — run workspace-setup first."; exit 1; }
WS=$(jq -r .path "$CONFIG" 2>/dev/null || grep -oP '"path":\s*"\K[^"]+' "$CONFIG")
PROJ="$WS/<slug>"
test -e "$PROJ" && { echo "Already exists: $PROJ"; exit 1; }
mkdir -p "$PROJ"/{source,working,exports,references,thumbnails}
| Folder | Purpose |
|---|---|
source/ | Original images — never edited in place |
working/ | In-progress edits, layered files (PSD, XCF, AFPHOTO) |
exports/ | Final deliverables (web JPEG/WebP, print TIFF, etc.) |
references/ | Mood boards, reference images, prompts |
thumbnails/ | Small previews for indexing |
Write a README.md in the project root with the slug, ISO date, and notes section.
If the user wants version control, git init and add a .gitignore excluding source/ and exports/ if they're large.
Print the project path. Offer to cd or open in a terminal.