Files
lmiranda 4ba38eb620 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>
2026-02-03 21:16:00 -05:00

1.3 KiB

description
description
Interactive setup wizard for contract-validator plugin

/cv-setup - Contract Validator Setup Wizard

Skills to Load

  • skills/visual-output.md
  • skills/mcp-tools-reference.md

Important: This command uses Bash, Read, Write tools - NOT MCP tools (they work only after setup + restart).

Workflow

  1. Display header per skills/visual-output.md

  2. Check Python version:

    python3 --version
    

    Requires 3.10+. Stop if below.

  3. Locate MCP server:

    • Installed: ~/.claude/plugins/marketplaces/leo-claude-mktplace/mcp-servers/contract-validator/
    • Source: ~/claude-plugins-work/mcp-servers/contract-validator/
  4. Check/create venv:

    ls .venv/bin/python || (python3 -m venv .venv && .venv/bin/pip install -r requirements.txt)
    
  5. Verify MCP server:

    .venv/bin/python -c "from mcp_server.server import ContractValidatorMCPServer; print('OK')"
    
  6. Display success per skills/visual-output.md

  7. Inform user: Session restart required for MCP tools.

Post-Setup Commands

  • /validate-contracts - Full marketplace validation
  • /check-agent - Validate single agent
  • /list-interfaces - Show all plugin interfaces

No Configuration Required

This plugin reads plugin manifests and README files directly - no credentials needed.