smithery/vocalbridgeai

prompt

Manage the system prompt for the Vocal Bridge voice agent. Can show, edit, or set the prompt and greeting.

Installation

$ npx skills add smithery/vocalbridgeai --skill prompt

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/vocalbridgeai.

npx skills add smithery/vocalbridgeai

Browse all from smithery/vocalbridgeai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Allowed toolsBash, Read, Write

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,127 B
  • docs SUMMARY.md 120 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

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