Generate responsive image sets with srcset, WebP/AVIF conversion, and art direction
Generates responsive image sets with srcset variants, WebP/AVIF conversion, and art direction for optimal performance.
npx claudepluginhub a5c-ai/babysitterThis skill is limited to using the following tools:
README.mdGenerate responsive image sets for optimal performance across devices, including srcset variants, modern format conversion, and art direction.
{
"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"]
}
{
"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"
}
}
}
const result = await skill.execute({
inputPath: './hero-image.jpg',
outputPath: './responsive',
widths: [320, 640, 960, 1280, 1920],
formats: ['webp', 'avif', 'jpg'],
generateMarkup: true
});
Activates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.