BridgeSpeak

(★ 17)

Give AI coding agents a voice. Cross-agent skill that wraps OpenAI gpt-realtime-2 for Claude Code, Hermes, and OpenClaw.

File Explorer

  • .gitignore
  • CHANGELOG.md
  • CONTRIBUTING.md
  • LICENSE
  • README.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

brew install

View Details ▼

Install a Homebrew formula or cask.

brew install {{formula|cask}}

Install a formula/cask:

brew install {{[-s|--build-from-source]}} {{formula}}

Build and install a formula from source (dependencies will still be installed from bottles):

brew install {{[-n|--dry-run]}} {{formula|cask}}

Download the manifest, print what would be installed but don't actually install anything:

🔍

claude

View Details ▼

An agent-based coding tool that understands your code base and helps you code faster through natural language commands.

claude prompt

Execute with prompt:

claude update

Update `claude`:

claude mcp list

Get the list of specified MCP servers:

🔍

ffplay

View Details ▼

A simple and portable media player using the FFmpeg libraries and the SDL library.

ffplay {{path/to/file}}

Play a media file:

ffplay -nodisp {{path/to/file}}

Play audio from a media file without a GUI:

ffmpeg -i {{path/to/file}} -c {{copy}} -f {{media_format}} - | ffplay -

Play media passed by `ffmpeg` through `stdin`:

🔍

python3

View Details ▼

This command is an alias of `python`.

tldr python

View documentation for the original command:

🔍

aplay

View Details ▼

Sound player for ALSA soundcard driver.

aplay {{path/to/file}}

Play a specific file (sampling rate, bit depth, etc. will be automatically determined for the file format):

aplay {{[-d|--duration]}} 10 {{[-r|--rate]}} 2500 {{path/to/file}}

Play the first 10 seconds of a specific file at 2500 Hz:

aplay {{[-c|--channels]}} 1 {{[-t|--file-type]}} raw {{[-r|--rate]}} 22050 {{[-f|--format]}} mu_law {{path/to/file}}

Play the raw file as a 22050 Hz, mono, 8-bit, Mu-Law `.au` file:

🔍

apt install

View Details ▼

Install packages for Debian-based distributions.

sudo apt install {{package}}

Install a package, or update it to the latest version:

sudo apt install {{[-V|--verbose-versions]}} {{package}}

Display verbose package version information during installation or update:

🔍

pw-play

View Details ▼

This command is an alias of `pw-cat --playback`.

tldr pw-cat

View documentation for the original command:

🔍

afplay

View Details ▼

Command-line audio player.

afplay {{path/to/file}}

Play a sound file (waits until playback ends):

afplay --rate {{2}} {{path/to/file}}

Play a sound file at 2x speed (playback rate):

afplay --rate {{0.5}} {{path/to/file}}

Play a sound file at half speed:

🔍

winget

View Details ▼

Windows Package Manager.

winget {{[add|install]}} {{package}}

Install a package (use `--source` when package is available from multiple sources):

winget {{[rm|uninstall]}} {{package}}

Remove a package (Note: `remove` can also be used instead of `uninstall`):

winget show {{package}}

Display information about a package:

// repository documentation