Phase 1b: Rename all ~94 commands across 12 plugins to /<noun> <action> sub-command pattern. Git-flow consolidated from 8→5 commands (commit variants absorbed into --push/--merge/--sync flags). Dispatch files, name: frontmatter, and cross-reference updates for all plugins. Phase 2: Design documents for 8 new plugins in docs/designs/. Phase 3: Scaffold 8 new plugins — saas-api-platform, saas-db-migrate, saas-react-platform, saas-test-pilot, data-seed, ops-release-manager, ops-deploy-pipeline, debug-mcp. Each with plugin.json, commands, agents, skills, README, and claude-md-integration. Marketplace grows from 12→20. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
44 lines
888 B
Markdown
44 lines
888 B
Markdown
---
|
|
name: viz component
|
|
description: Inspect Dash Mantine Component props and validation
|
|
---
|
|
|
|
# /viz component
|
|
|
|
## Skills to Load
|
|
- skills/mcp-tools-reference.md
|
|
- skills/dmc-components.md
|
|
|
|
## Visual Output
|
|
|
|
```
|
|
+------------------------------------------------------------------+
|
|
| VIZ-PLATFORM - Component Inspector |
|
|
+------------------------------------------------------------------+
|
|
```
|
|
|
|
Inspect a DMC component's props, types, and defaults.
|
|
|
|
## Usage
|
|
|
|
```
|
|
/viz component {name}
|
|
```
|
|
|
|
## Arguments
|
|
|
|
- `name` (required): DMC component name (e.g., Button, Card, TextInput)
|
|
|
|
## Tool Mapping
|
|
|
|
```python
|
|
get_component_props(component="Button")
|
|
list_components(category="inputs")
|
|
validate_component(component="Button", props={"variant": "filled"})
|
|
```
|
|
|
|
## Related Commands
|
|
|
|
- `/viz chart {type}` - Create charts
|
|
- `/viz dashboard {template}` - Create layouts
|