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 vous voulez démarrer rapidement un des projets prédéfinis (Blazor, CLI, Python) sans taper les commandes complètes.
Si vous avez besoin de lancer plusieurs instances simultanément ou un projet non listé.
Analyse de sécurité
SûrThe 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 blazorrun clirun pythonname: 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
- Parse
$ARGUMENTS(trim whitespace, lowercase). - If the value is not one of
blazor,cli,python:- Tell the user the valid options and stop. Do not run anything.
- Run the matching command using the Bash tool with
run_in_background: true. - 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
- blazor — the dev server URL (typically
Expert Next.js App Router
Developpement
Un skill qui transforme Claude en expert Next.js App Router.
Générateur de README
Developpement
Crée des README.md professionnels et complets pour vos projets.
Rédacteur de Documentation API
Developpement
Génère de la documentation API complète au format OpenAPI/Swagger.