imagery-art-direction

Select, optimize, and place WebP photography for static Next.js renovation websites.

Updated Mar 29, 2026
One-click install
npx skills add https://github.com/r-senchuk/agentskills --skill imagery-art-direction-r-senchuk
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: imagery-art-direction
Source: https://github.com/r-senchuk/agentskills/tree/main/.agents/skills/imagery-art-direction
Command: npx skills add https://github.com/r-senchuk/agentskills --skill imagery-art-direction-r-senchuk

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Renovation websites built with static Next.js export lose Next.js automatic image optimization, so images must be manually converted, resized, and correctly implemented to stay fast, on-brand, and accessible. ## Core Features & Use Cases - Image Sourcing & Art Direction: A sourcing hierarchy from real project photos to licensed stock, with explicit on-brand and off-brand rules for renovation photography. - WebP Optimization Workflow: Ready-to-run cwebp and ImageMagick commands for resizing and batch-converting images into /public/ with per-use-case dimension and file-size specs. - Component Implementation & Alt Text: next/image and <img> patterns with unoptimized, priority, and sizes props, plus a formula for WCAG-compliant alt text. - Use Case: You need a hero image for a renovation landing page. The Skill guides you to source a 2400x1600 photo, convert it to WebP under 400 KB, implement it with fill, priority, and unoptimized, and write descriptive alt text. ## Quick Start Ask the agent to choose, optimize, and implement a hero image for the renovation homepage using next/image with static export settings.

Frequently Asked Questions about imagery-art-direction

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I optimize images for Next.js static export?▼

With static export, set images.unoptimized to true and pre-optimize files manually. Convert JPEG or PNG to WebP with cwebp at quality 82, resize to the target dimensions first, and place the results in the /public/ directory.

How do I use next/image with static export?▼

Pass the unoptimized prop on every next/image component since the built-in optimizer is unavailable. Use fill with priority and sizes="100vw" for hero images, and always provide descriptive alt text.

What image sizes should I use for hero and gallery photos?▼

Hero backgrounds need at least 2400x1600 px under 400 KB, before/after pairs 1200x900 px under 200 KB, service thumbnails 800x600 px under 100 KB, and team portraits 400x400 px under 60 KB, all in WebP format.

How do I write good alt text for before and after renovation photos?▼

Use the formula: room type plus before or after state plus key details, such as "Living room after renovation — new engineered oak flooring and fresh white plaster". Avoid filenames, single words like "renovation", or vague labels like "before".

When should I not use this image art direction approach?▼

Do not use it for SVG icons, CSS gradient backgrounds, logo design, video embeds, or non-photography illustration work. It covers only photographic assets for renovation sites with static Next.js export.