Exécuter Blazor, CLI .NET ou Python Jupyter

VérifiéSûr

Exécute une application Blazor WASM, une application console .NET CLI ou un notebook Jupyter Python selon l'argument.

Spar Skills Guide Bot
DeveloppementIntermédiaire
1023/07/2026
Claude Code
#run#blazor#dotnet#python#jupyter

Recommandé pour

Notre avis

Lance une application Blazor WASM, une console .NET CLI ou un notebook Jupyter en fonction de l'argument fourni.

Points forts

  • Exécute automatiquement le bon projet avec une seule commande
  • Gère les processus en arrière-plan
  • Fonctionne avec trois types de projets courants

Limites

  • Dépend de chemins absolus spécifiques au poste de l'utilisateur
  • N'affiche pas automatiquement l'URL pour Blazor (doit être connue)
  • Ne prend en charge que trois arguments prédéfinis
Quand l'utiliser

Quand vous voulez démarrer rapidement un des projets prédéfinis (Blazor, CLI, Python) sans taper les commandes complètes.

Quand l'éviter

Si vous avez besoin de lancer plusieurs instances simultanément ou un projet non listé.

Analyse de sécurité

Sûr
Score qualité80/100

The skill only runs predetermined, hardcoded commands for local development projects. User input is validated against a whitelist ('blazor', 'cli', 'python'), and invalid input is rejected without execution. No destructive actions, obfuscation, or exfiltration are present. Running dotnet and jupyter locally is typical for development and poses no inherent risk in this context.

Aucun point d'attention détecté

Exemples

Run Blazor app
run blazor
Run CLI app
run cli
Run Python Jupyter notebook
run python

name: run description: Run the Blazor WASM app, .NET CLI console app, or Python Jupyter notebook allowed-tools: Bash(dotnet run:), Bash(jupyter:), Bash(python:*)

Argument

$ARGUMENTS — one of: blazor, cli, python

Commands

| Argument | Command | Type | |----------|---------|------| | blazor | dotnet run --project dotnet/BlazorChat | dev server — run in background | | cli | dotnet run --project dotnet/AnthropicApiClient | interactive console — run in background | | python | python/\.venv/Scripts/jupyter notebook python/001-requests.ipynb | notebook server — run in background |

All commands are executed from the repository root: D:\OneDrive - Personal\OneDrive\Source\Trainings\AI\Claude with Anthropic API

Your task

  1. Parse $ARGUMENTS (trim whitespace, lowercase).
  2. If the value is not one of blazor, cli, python:
    • Tell the user the valid options and stop. Do not run anything.
  3. Run the matching command using the Bash tool with run_in_background: true.
  4. Report back:
    • blazor — the dev server URL (typically https://localhost:5001)
    • cli — note that the app is interactive; the user should watch the terminal output for the prompt
    • python — Jupyter opens in the browser automatically; the notebook URL will appear in the background output
Skills similaires