Gestion du prompt Vocal Bridge

VérifiéSûr

Gère le prompt système de l'agent vocal Vocal Bridge : affiche, modifie ou définit le prompt principal ainsi que le message d'accueil. Utile pour personnaliser le comportement de l'agent via des commandes en ligne, un fichier ou une entrée standard.

Spar Skills Guide Bot
DeveloppementDébutant
6002/06/2026
Claude CodeCursorWindsurfCopilotCodex
#voice-agent#prompt-management#cli-tool#vocal-bridge

Recommandé pour

Notre avis

Ce skill permet de gérer le prompt système et le message d'accueil de l'agent vocal Vocal Bridge via des commandes CLI.

Points forts

  • Interface en ligne de commande simple et directe
  • Possibilité de définir le prompt depuis un fichier ou via l'entrée standard
  • Prise en charge du message d'accueil séparé
  • Flux interactif pour éditer le prompt existant

Limites

  • Nécessite que l'outil vocal-bridge soit installé
  • Ne gère que le prompt système, pas d'autres configurations de l'agent
  • Pas de validation de la syntaxe du prompt
Quand l'utiliser

Utilisez ce skill lorsque vous souhaitez afficher, modifier ou définir le prompt système ou le message d'accueil de l'agent vocal Vocal Bridge.

Quand l'éviter

Ne l'utilisez pas si vous avez besoin de configurer d'autres aspects de l'agent vocal (comme la voix, la langue, les permissions) ou si vous travaillez avec un autre service de voix.

Analyse de sécurité

Sûr
Score qualité85/100

The skill uses pip to install Vocal Bridge and executes vb commands to manage a voice agent's prompt. There are no destructive commands, no data exfiltration, and no obfuscated payloads. It does not bypass security or perform risky system operations.

Aucun point d'attention détecté

Exemples

Show current prompt
Show the current system prompt of the Vocal Bridge voice agent.
Set prompt from file
Set the system prompt for my voice agent using the file at /path/to/prompt.txt.
Edit greeting interactively
I want to edit the greeting of the Vocal Bridge agent. First show the current greeting, then I'll provide a new one.

name: prompt description: Manage the system prompt for the Vocal Bridge voice agent. Can show, edit, or set the prompt and greeting. allowed-tools: Bash, Read, Write

Manage the voice agent's system prompt.

First ensure CLI is installed:

pip install --upgrade vocal-bridge

Commands

Show current prompt

vb prompt show

Set prompt from file

vb prompt set --file <path>

For greeting:

vb prompt set --file <path> --greeting

Set prompt from stdin (pipe content)

echo "Your prompt here" | vb prompt set

For greeting:

echo "Hello! How can I help?" | vb prompt set --greeting

Based on $ARGUMENTS

Determine user intent from $ARGUMENTS:

  • "show" or empty → show current prompt with vb prompt show
  • "set" with file path → set from file
  • Contains prompt text → pipe to vb prompt set
  • "greeting" modifier → operate on greeting instead of prompt

Interactive Edit Flow

If user wants to edit:

  1. Run vb prompt show to get current prompt
  2. Let user provide new prompt text
  3. Pipe new text to vb prompt set
Skills similaires