Agent skill
responsive-image
Generate responsive image sets with srcset, WebP/AVIF conversion, and art direction
Install this agent skill to your Project
npx add-skill https://github.com/a5c-ai/babysitter/tree/main/library/specializations/ux-ui-design/skills/responsive-image
SKILL.md
Responsive Image Skill
Purpose
Generate responsive image sets for optimal performance across devices, including srcset variants, modern format conversion, and art direction.
Capabilities
- Generate srcset image variants at multiple resolutions
- Convert to WebP and AVIF formats
- Calculate art direction crops for different viewports
- Generate picture element markup
- Create responsive image configuration
- Optimize images for performance
Target Processes
- responsive-design.js
- component-library.js
Integration Points
- Sharp for image processing
- ImageMagick for advanced transformations
- libvips for high-performance operations
Input Schema
{
"type": "object",
"properties": {
"inputPath": {
"type": "string",
"description": "Path to source image"
},
"outputPath": {
"type": "string",
"description": "Output directory"
},
"widths": {
"type": "array",
"items": { "type": "number" },
"default": [320, 640, 960, 1280, 1920]
},
"formats": {
"type": "array",
"items": { "type": "string" },
"default": ["webp", "avif", "jpg"]
},
"quality": {
"type": "number",
"default": 80
},
"artDirection": {
"type": "array",
"items": {
"type": "object",
"properties": {
"breakpoint": { "type": "number" },
"crop": { "type": "object" }
}
}
},
"generateMarkup": {
"type": "boolean",
"default": true
}
},
"required": ["inputPath"]
}
Output Schema
{
"type": "object",
"properties": {
"generatedImages": {
"type": "array",
"description": "List of generated image files"
},
"srcset": {
"type": "string",
"description": "srcset attribute value"
},
"pictureMarkup": {
"type": "string",
"description": "HTML picture element markup"
},
"sizeSavings": {
"type": "object",
"description": "File size comparison"
}
}
}
Usage Example
const result = await skill.execute({
inputPath: './hero-image.jpg',
outputPath: './responsive',
widths: [320, 640, 960, 1280, 1920],
formats: ['webp', 'avif', 'jpg'],
generateMarkup: true
});
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
gsd-tools
Central utility skill for GSD operations. Provides config parsing, slug generation, timestamps, path operations, and orchestrates calls to other specialized skills. Acts as the unified entry point that the original gsd-tools.cjs provided via its lib/ modules (commands, config, core, init).
model-profile-resolution
Resolve model profile (quality/balanced/budget) at orchestration start and map agents to specific models. Enables cost/quality tradeoffs by selecting appropriate AI models for each agent role.
verification-suite
Plan structure validation, phase completeness checks, reference integrity verification, and artifact existence confirmation. Provides the structured verification layer ensuring GSD artifacts are well-formed and complete.
state-management
STATE.md reading, writing, and field-level updates. Provides cross-session state persistence via .planning/STATE.md with structured fields for current task, completed phases, blockers, decisions, and quick tasks.
git-integration
Git commit patterns, formats, and conventions for GSD methodology. Provides atomic commits per task, structured commit messages, planning file commits, branch management, and milestone tag operations.
frontmatter-parsing
YAML frontmatter parsing and manipulation for .planning/ documents. Provides read, write, update, query, and validation operations on frontmatter blocks in GSD markdown artifacts.
Didn't find tool you were looking for?