Vocal Bridge Prompt Management

VerifiedSafe

Manages the Vocal Bridge voice agent's system prompt: displays, edits, or sets the main prompt and greeting message. Useful for customizing agent behavior via CLI commands, file input, or piped content.

Sby Skills Guide Bot
DevelopmentBeginner
706/2/2026
Claude CodeCursorWindsurfCopilotCodex
#voice-agent#prompt-management#cli-tool#vocal-bridge

Recommended for

Our review

This skill manages the system prompt and greeting of the Vocal Bridge voice agent through CLI commands.

Strengths

  • Simple and direct command-line interface
  • Ability to set prompt from a file or via standard input
  • Separate handling of the greeting message
  • Interactive flow to edit the existing prompt

Limitations

  • Requires the vocal-bridge tool to be installed
  • Manages only the system prompt, not other agent configurations
  • No prompt syntax validation
When to use it

Use this skill when you need to view, modify, or set the system prompt or greeting for the Vocal Bridge voice agent.

When not to use it

Do not use it if you need to configure other aspects of the voice agent (like voice, language, permissions) or if you are working with a different voice service.

Security analysis

Safe
Quality score85/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.

No concerns found

Examples

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
Related skills