Agent skill
astro-images-joshribakoff-fightingwithai-com
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/product/astro-images-joshribakoff-fightingwithai-com
SKILL.md
Astro Image Optimization
Use astro:assets for all images. This enables automatic optimization (resizing, WebP/AVIF conversion, lazy loading).
When to Use This Skill
Use this skill when:
- Adding images to
.astroor.mdxfiles - Moving images from
/publicto optimized assets - Debugging 404s or unoptimized images in production
Rules
- Never use raw
<img>tags in.astroor.mdxfiles - Never reference images from
/public— bypasses optimization - Always import images from
src/assets/
Correct Pattern
---
import { Image } from "astro:assets";
import photo from "../assets/photo.png";
---
<Image src={photo} alt="Description" width={800} />
In MDX
---
import { Image } from "astro:assets";
import diagram from "../../assets/diagram.png";
---
<Image src={diagram} alt="Diagram" width={600} />
Linting
Run npm run lint:assets to catch violations. The linter flags:
- Raw
<img>tags in.astroand.mdxfiles (error) - Markdown images from
/publiclike(warning) - Direct
/src/paths in link/script tags (error)
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?