Extract shared knowledge from 10 commands into 7 reusable skills: - mcp-tools-reference.md: All viz-platform MCP tool signatures - theming-system.md: Theme tokens, CSS variables, color palettes - accessibility-rules.md: WCAG contrast, color-blind safe palettes - dmc-components.md: DMC categories, validation, common props - responsive-design.md: Breakpoints, mobile-first, grid config - chart-types.md: Plotly chart types, export formats, resolution - layout-templates.md: Dashboard templates, filter types All commands now reference skills via "Skills to Load" section. Commands reduced from 1396 lines total to 427 lines (69% reduction). Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
46 lines
974 B
Markdown
46 lines
974 B
Markdown
---
|
|
description: Validate color accessibility for color blind users
|
|
---
|
|
|
|
# Accessibility Check
|
|
|
|
## Skills to Load
|
|
- skills/mcp-tools-reference.md
|
|
- skills/accessibility-rules.md
|
|
|
|
## Visual Output
|
|
|
|
```
|
|
+------------------------------------------------------------------+
|
|
| VIZ-PLATFORM - Accessibility Check |
|
|
+------------------------------------------------------------------+
|
|
```
|
|
|
|
Validate theme or chart colors for color blind accessibility.
|
|
|
|
## Usage
|
|
|
|
```
|
|
/accessibility-check {target}
|
|
```
|
|
|
|
## Arguments
|
|
|
|
- `target` (optional): "theme" or "chart" - defaults to active theme
|
|
|
|
## Tool Mapping
|
|
|
|
```python
|
|
accessibility_validate_colors(
|
|
colors=["#228be6", "#40c057"],
|
|
check_types=["deuteranopia", "protanopia", "tritanopia"],
|
|
min_contrast_ratio=4.5
|
|
)
|
|
accessibility_validate_theme(theme_name="corporate")
|
|
```
|
|
|
|
## Related Commands
|
|
|
|
- `/theme-new {name}` - Create accessible theme
|
|
- `/chart {type}` - Create chart (check colors after)
|