refactor: update internal command references in all plugin files
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>
This commit is contained in:
@@ -41,5 +41,5 @@ accessibility_validate_theme(theme_name="corporate")
|
||||
|
||||
## Related Commands
|
||||
|
||||
- `/theme-new {name}` - Create accessible theme
|
||||
- `/chart {type}` - Create chart (check colors after)
|
||||
- `/viz-theme-new {name}` - Create accessible theme
|
||||
- `/viz-chart {type}` - Create chart (check colors after)
|
||||
|
||||
@@ -61,8 +61,8 @@ Each finding includes:
|
||||
## Related Commands
|
||||
|
||||
- `/design-gate` - Binary pass/fail for sprint execution (no detailed report)
|
||||
- `/component` - Inspect individual DMC component props
|
||||
- `/theme` - Check active theme configuration
|
||||
- `/viz-component` - Inspect individual DMC component props
|
||||
- `/viz-theme` - Check active theme configuration
|
||||
|
||||
## Requirements
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
description: Configure responsive breakpoints for dashboard layouts
|
||||
---
|
||||
|
||||
# Configure Breakpoints
|
||||
# Viz Breakpoints
|
||||
|
||||
## Skills to Load
|
||||
- skills/mcp-tools-reference.md
|
||||
@@ -21,7 +21,7 @@ Configure responsive breakpoints for mobile-first design across screen sizes.
|
||||
## Usage
|
||||
|
||||
```
|
||||
/breakpoints {layout_ref}
|
||||
/viz-breakpoints {layout_ref}
|
||||
```
|
||||
|
||||
## Arguments
|
||||
@@ -30,7 +30,7 @@ Configure responsive breakpoints for mobile-first design across screen sizes.
|
||||
|
||||
## Workflow
|
||||
|
||||
1. **User invokes**: `/breakpoints my-dashboard`
|
||||
1. **User invokes**: `/viz-breakpoints my-dashboard`
|
||||
2. **Agent asks**: Which breakpoints to customize? (shows current settings)
|
||||
3. **Agent asks**: Mobile column count? (xs, typically 1-2)
|
||||
4. **Agent asks**: Tablet column count? (md, typically 4-6)
|
||||
@@ -39,5 +39,5 @@ Configure responsive breakpoints for mobile-first design across screen sizes.
|
||||
|
||||
## Related Commands
|
||||
|
||||
- `/dashboard {template}` - Create layout with default breakpoints
|
||||
- `/theme {name}` - Theme includes default spacing values
|
||||
- `/viz-dashboard {template}` - Create layout with default breakpoints
|
||||
- `/viz-theme {name}` - Theme includes default spacing values
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
description: Export a Plotly chart to PNG, SVG, or PDF format
|
||||
---
|
||||
|
||||
# Export Chart
|
||||
# Viz Chart Export
|
||||
|
||||
## Skills to Load
|
||||
- skills/mcp-tools-reference.md
|
||||
@@ -21,7 +21,7 @@ Export a Plotly chart to static image formats.
|
||||
## Usage
|
||||
|
||||
```
|
||||
/chart-export {format}
|
||||
/viz-chart-export {format}
|
||||
```
|
||||
|
||||
## Arguments
|
||||
@@ -38,5 +38,5 @@ Requires `kaleido` package: `pip install kaleido`
|
||||
|
||||
## Related Commands
|
||||
|
||||
- `/chart {type}` - Create a chart
|
||||
- `/theme {name}` - Apply theme before export
|
||||
- `/viz-chart {type}` - Create a chart
|
||||
- `/viz-theme {name}` - Apply theme before export
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
description: Create a Plotly chart with theme integration
|
||||
---
|
||||
|
||||
# Create Chart
|
||||
# Viz Chart
|
||||
|
||||
## Skills to Load
|
||||
- skills/mcp-tools-reference.md
|
||||
@@ -21,7 +21,7 @@ Create a Plotly chart with automatic theme token application.
|
||||
## Usage
|
||||
|
||||
```
|
||||
/chart {type}
|
||||
/viz-chart {type}
|
||||
```
|
||||
|
||||
## Arguments
|
||||
@@ -36,6 +36,6 @@ chart_create(chart_type="line", data_ref="df", x="date", y="value", theme=None)
|
||||
|
||||
## Related Commands
|
||||
|
||||
- `/chart-export {format}` - Export chart to image
|
||||
- `/theme {name}` - Apply theme to charts
|
||||
- `/dashboard` - Create layout with charts
|
||||
- `/viz-chart-export {format}` - Export chart to image
|
||||
- `/viz-theme {name}` - Apply theme to charts
|
||||
- `/viz-dashboard` - Create layout with charts
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
description: Inspect Dash Mantine Component props and validation
|
||||
---
|
||||
|
||||
# Inspect Component
|
||||
# Viz Component
|
||||
|
||||
## Skills to Load
|
||||
- skills/mcp-tools-reference.md
|
||||
@@ -21,7 +21,7 @@ Inspect a DMC component's props, types, and defaults.
|
||||
## Usage
|
||||
|
||||
```
|
||||
/component {name}
|
||||
/viz-component {name}
|
||||
```
|
||||
|
||||
## Arguments
|
||||
@@ -38,5 +38,5 @@ validate_component(component="Button", props={"variant": "filled"})
|
||||
|
||||
## Related Commands
|
||||
|
||||
- `/chart {type}` - Create charts
|
||||
- `/dashboard {template}` - Create layouts
|
||||
- `/viz-chart {type}` - Create charts
|
||||
- `/viz-dashboard {template}` - Create layouts
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
description: Create a dashboard layout with the layout-builder agent
|
||||
---
|
||||
|
||||
# Create Dashboard
|
||||
# Viz Dashboard
|
||||
|
||||
## Skills to Load
|
||||
- skills/mcp-tools-reference.md
|
||||
@@ -21,7 +21,7 @@ Create a dashboard layout with filters, grids, and sections.
|
||||
## Usage
|
||||
|
||||
```
|
||||
/dashboard {template}
|
||||
/viz-dashboard {template}
|
||||
```
|
||||
|
||||
## Arguments
|
||||
@@ -37,5 +37,5 @@ Activates **layout-builder** agent which orchestrates:
|
||||
|
||||
## Related Commands
|
||||
|
||||
- `/breakpoints {layout}` - Configure responsive breakpoints
|
||||
- `/chart {type}` - Add charts to layout
|
||||
- `/viz-breakpoints {layout}` - Configure responsive breakpoints
|
||||
- `/viz-chart {type}` - Add charts to layout
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
description: Interactive setup wizard for viz-platform plugin
|
||||
---
|
||||
|
||||
# Viz-Platform Setup Wizard
|
||||
# Viz Setup
|
||||
|
||||
## Visual Output
|
||||
|
||||
@@ -41,5 +41,5 @@ Verify MCP server loads, display summary, prompt session restart.
|
||||
|
||||
## Related Commands
|
||||
|
||||
- `/component {name}` - Inspect component props
|
||||
- `/chart {type}` - Create a chart
|
||||
- `/viz-component {name}` - Inspect component props
|
||||
- `/viz-chart {type}` - Create a chart
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
description: Export a theme as CSS custom properties
|
||||
---
|
||||
|
||||
# Export Theme as CSS
|
||||
# Viz Theme CSS
|
||||
|
||||
## Skills to Load
|
||||
- skills/mcp-tools-reference.md
|
||||
@@ -21,7 +21,7 @@ Export a theme's design tokens as CSS custom properties.
|
||||
## Usage
|
||||
|
||||
```
|
||||
/theme-css {name}
|
||||
/viz-theme-css {name}
|
||||
```
|
||||
|
||||
## Arguments
|
||||
@@ -38,5 +38,5 @@ Use cases: external CSS, design handoff, documentation, other frameworks.
|
||||
|
||||
## Related Commands
|
||||
|
||||
- `/theme {name}` - Apply a theme
|
||||
- `/theme-new {name}` - Create a new theme
|
||||
- `/viz-theme {name}` - Apply a theme
|
||||
- `/viz-theme-new {name}` - Create a new theme
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
description: Create a new custom theme with design tokens
|
||||
---
|
||||
|
||||
# Create New Theme
|
||||
# Viz Theme New
|
||||
|
||||
## Skills to Load
|
||||
- skills/mcp-tools-reference.md
|
||||
@@ -21,7 +21,7 @@ Create a new custom theme with specified design tokens.
|
||||
## Usage
|
||||
|
||||
```
|
||||
/theme-new {name}
|
||||
/viz-theme-new {name}
|
||||
```
|
||||
|
||||
## Arguments
|
||||
@@ -37,5 +37,5 @@ theme_validate(theme_name="corporate")
|
||||
|
||||
## Related Commands
|
||||
|
||||
- `/theme {name}` - Apply a theme
|
||||
- `/theme-css {name}` - Export theme as CSS
|
||||
- `/viz-theme {name}` - Apply a theme
|
||||
- `/viz-theme-css {name}` - Export theme as CSS
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
description: Apply an existing theme to the current context
|
||||
---
|
||||
|
||||
# Apply Theme
|
||||
# Viz Theme
|
||||
|
||||
## Skills to Load
|
||||
- skills/mcp-tools-reference.md
|
||||
@@ -21,7 +21,7 @@ Apply an existing theme to activate its design tokens.
|
||||
## Usage
|
||||
|
||||
```
|
||||
/theme {name}
|
||||
/viz-theme {name}
|
||||
```
|
||||
|
||||
## Arguments
|
||||
@@ -41,5 +41,5 @@ When activated, new charts/layouts automatically use theme tokens.
|
||||
|
||||
## Related Commands
|
||||
|
||||
- `/theme-new {name}` - Create a new theme
|
||||
- `/theme-css {name}` - Export theme as CSS
|
||||
- `/viz-theme-new {name}` - Create a new theme
|
||||
- `/viz-theme-css {name}` - Export theme as CSS
|
||||
|
||||
Reference in New Issue
Block a user