dragoon0x/everything-design-taste

image-treatment

Image optimization, aspect ratios, art direction, responsive images, and image loading strategies.

First seen Jul 18, 2026

Installation

$ npx skills add dragoon0x/everything-design-taste --skill image-treatment

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from dragoon0x/everything-design-taste · top by installs.

npx skills add dragoon0x/everything-design-taste

Browse all from dragoon0x/everything-design-taste

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 11
License LICENSE
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,240 B
  • docs SUMMARY.md 121 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

Image Treatment

Aspect Ratios

Ratio Use
1:1 Avatars, product thumbnails, app icons
4:3 Standard photos, cards
3:2 Photography, landscape
16:9 Hero banners, video thumbnails
21:9 Cinematic banners, ultra-wide heroes

Responsive Images

<picture>
  <source media="(min-width: 1024px)" srcset="large.webp">
  <source media="(min-width: 768px)" srcset="medium.webp">
  <img src="small.webp" alt="Descriptive text" loading="lazy">
</picture>

Loading Strategy

  1. Above fold: Eager loading, preload critical images
  2. Below fold: loading="lazy" native lazy loading
  3. Placeholders: Blurred thumbnail (LQIP) or dominant color
  4. Progressive JPEG: Loads blurry then sharp
  5. WebP/AVIF with JPEG fallback

Art Direction

  • Different crops for different viewports (not just resize)
  • Mobile: tighter crop focused on subject
  • Desktop: wider crop with context
  • object-fit: cover with considered object-position