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
1.1 KiB
Markdown
46 lines
1.1 KiB
Markdown
---
|
|
description: Interactive setup wizard for viz-platform plugin
|
|
---
|
|
|
|
# Viz Setup
|
|
|
|
## Visual Output
|
|
|
|
```
|
|
+------------------------------------------------------------------+
|
|
| VIZ-PLATFORM - Setup Wizard |
|
|
+------------------------------------------------------------------+
|
|
```
|
|
|
|
Sets up viz-platform with DMC validation and theming.
|
|
|
|
**Note:** Uses Bash/Read/Write tools - NOT MCP tools. Restart session after setup.
|
|
|
|
## Phase 1: Environment Validation
|
|
|
|
Check Python 3.10+ and DMC installation:
|
|
```bash
|
|
python3 --version
|
|
python3 -c "import dash_mantine_components as dmc; print(dmc.__version__)"
|
|
```
|
|
|
|
## Phase 2: MCP Server Setup
|
|
|
|
Locate and create venv if missing:
|
|
```bash
|
|
cd /path/to/mcp-servers/viz-platform && python3 -m venv .venv && .venv/bin/pip install -r requirements.txt
|
|
```
|
|
|
|
## Phase 3: Theme Preferences (Optional)
|
|
|
|
Ask user about color scheme and primary color. Save to `~/.config/claude/viz-platform.env`.
|
|
|
|
## Phase 4: Validation
|
|
|
|
Verify MCP server loads, display summary, prompt session restart.
|
|
|
|
## Related Commands
|
|
|
|
- `/viz-component {name}` - Inspect component props
|
|
- `/viz-chart {type}` - Create a chart
|