Visualisation Web pour Analyse de Couplage

VérifiéSûr

Interface web interactive pour analyser le couplage entre modules. Affiche un graphique de dépendances avec des panneaux de hotspots, de modules clés et des filtres (force, distance, volatilité, score d'équilibre). Permet d'explorer l'impact complet et d'exporter l'image au format PNG.

Spar Skills Guide Bot
DeveloppementIntermédiaire
7002/06/2026
Claude Code
#web-visualization#coupling-analysis#dependency-graph#code-analysis

Recommandé pour

Notre avis

Lance une interface web interactive pour visualiser et analyser les couplages entre modules d'un projet Rust.

Points forts

  • Interface interactive avec vue graphique des dépendances.
  • Filtres avancés (force, distance, volatilité) pour affiner l'analyse.
  • Identification des points chauds et des scores de santé des modules.
  • Raccourcis clavier pour une navigation rapide.

Limites

  • Nécessite le langage Rust et l'outil cargo.
  • Analyse limitée au code source Rust.
  • Peut être lent sur de très gros projets sans optimisation.
Quand l'utiliser

Quand vous devez comprendre et réduire le couplage entre modules d'un projet Rust.

Analyse de sécurité

Sûr
Score qualité85/100

The skill is purely documentation for a local development tool. It contains no malicious commands, no data exfiltration, and no destructive actions. The commands are standard cargo invocations for a local server.

Aucun point d'attention détecté

Exemples

Launch web visualization
Run coupling analysis on the source code in the current directory and open the web visualization.
Show hotspots only
Analyze coupling in ./src, open the web UI, and filter to show only refactoring hotspots.
Custom port and no auto-open
Start the coupling web visualization on port 9090 without auto-opening the browser.

Web Visualization Skill

Interactive web UI for coupling analysis.

Quick Start

# Start web server
cargo run -- coupling --web ./src

# Custom port
cargo run -- coupling --web --port 8080 ./src

# Don't auto-open browser
cargo run -- coupling --web --no-open ./src

Keyboard Shortcuts

| Key | Action | |-----|--------| | / | Focus search | | f | Fit to screen | | r | Reset layout | | e | Export PNG | | Esc | Clear selection | | ? | Show help |

Panel Features

Hotspots

Top refactoring targets ranked by issue severity.

Key Modules

  • Connections: Sort by dependency count
  • Issues: Sort by problem count
  • Health: Sort by health score

Analysis

  • Show Dependents: Modules depending on selected
  • Show Dependencies: Modules selected depends on
  • Full Impact: Complete blast radius

Filters

  • Strength: Intrusive/Functional/Model/Contract
  • Distance: Same/Different module
  • Volatility: High/Medium/Low
  • Balance Score: Range filter
  • Show Issues Only / Show Cycles Only

Graph Interaction

  • Click node: Highlight neighbors, center view
  • Click edge: Show dependency direction
  • Click background: Clear selection
Skills similaires