Updated: - projman: 4 commands + 4 skills + integration snippet - git-flow: 4 commands + 3 skills + integration snippet - pr-review: 1 command cross-reference - cmdb-assistant: 1 command + 1 skill - data-platform: 8 commands + integration snippet - viz-platform: 11 commands + integration snippet - contract-validator: 1 command + 1 skill + 1 agent Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
46 lines
982 B
Markdown
46 lines
982 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
|
|
|
|
- `/viz-theme-new {name}` - Create accessible theme
|
|
- `/viz-chart {type}` - Create chart (check colors after)
|