Generate accessible color palettes with WCAG compliance
Generates accessible color palettes with WCAG-compliant schemes and exports them to design token formats.
npx claudepluginhub a5c-ai/babysitterThis skill is limited to using the following tools:
README.mdGenerate accessible color palettes that comply with WCAG contrast requirements, create color scales, and export to design token formats.
{
"type": "object",
"properties": {
"baseColors": {
"type": "array",
"items": { "type": "string" },
"description": "Base colors in hex format"
},
"schemeType": {
"type": "string",
"enum": ["complementary", "analogous", "triadic", "split-complementary", "monochromatic"]
},
"contrastLevel": {
"type": "string",
"enum": ["AA", "AAA"],
"default": "AA"
},
"includeDarkMode": {
"type": "boolean",
"default": true
},
"outputFormat": {
"type": "string",
"enum": ["css", "scss", "json", "tokens"],
"default": "tokens"
}
},
"required": ["baseColors"]
}
{
"type": "object",
"properties": {
"palette": {
"type": "object",
"description": "Generated color palette with scales"
},
"contrastMatrix": {
"type": "array",
"description": "Contrast ratios between color pairs"
},
"darkModePalette": {
"type": "object",
"description": "Dark mode color variants"
},
"tokenOutput": {
"type": "string",
"description": "Exported tokens in requested format"
},
"accessibilityReport": {
"type": "object",
"description": "WCAG compliance report"
}
}
}
const result = await skill.execute({
baseColors: ['#1a73e8', '#34a853', '#ea4335'],
schemeType: 'complementary',
contrastLevel: 'AA',
includeDarkMode: true,
outputFormat: 'tokens'
});
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.