A community-driven registry for Claude, Cursor, Windsurf, Cline & more. Not affiliated with Anthropic.
Are you the author? Sign in to claim
Websocket server for Claude Code
WebSocket terminal server with voice input support and Claude AI intelligent interaction.
echokit_terminalVibetty supports two speech recognition modes:
Run the setup wizard to configure ASR interactively:
vibetty setup
This launches a TUI where you can:
~/.vibetty/config.tomlYou can also configure ASR manually via environment variables.
Create a .env file and configure the Whisper API (Groq recommended). Alternatively, you can set these environment variables directly in your shell configuration file (e.g., ~/.bashrc or ~/.zshrc):
VIBECODE_ASR_API_KEY=your_api_key_here
VIBECODE_ASR_URL=https://api.groq.com/openai/v1/audio/transcriptions
VIBECODE_ASR_MODEL=whisper-large-v3
VIBECODE_ASR_LANG=en
VIBECODE_ASR_PROMPT=
Then start the service:
Option A: Download pre-built binary
Download the latest release from the releases page:
# After downloading
./vibetty -- claude
Option B: Build from source
# Build the release binary
cargo build --release
./target/release/vibetty -- claude
Tip: To run vibetty from any directory, place the binary in a directory on your PATH. If it exists, we recommend ~/.cargo/bin:
PATH is an environment variable that tells your shell which directories to search for executable programs. When you type a command like ls or cargo, the shell looks through each directory in PATH (in order) until it finds a matching executable.
For example, if your PATH is:
/usr/local/bin:/usr/bin:/bin:/home/user/.cargo/bin
When you run vibetty, the shell searches:
/usr/local/bin/vibetty (not found)/usr/bin/vibetty (not found)/bin/vibetty (not found)/home/user/.cargo/bin/vibetty (found!) ← executes thisTo check your current PATH:
echo $PATH
To see if a directory is on your PATH:
echo $PATH | grep -q "$HOME/.cargo/bin" && echo "Yes" || echo "No"
# For pre-built binary
mv vibetty ~/.cargo/bin/
# Or for self-compiled binary
mv target/release/vibetty ~/.cargo/bin/
# For pre-built binary
mv vibetty ~/.cargo/bin/
# Or for self-compiled binary
mv target/release/vibetty ~/.cargo/bin/
Speech recognition runs entirely in the browser using Vosk models. No API key required.
Option A: Download pre-built binary
# Set ASR platform and run
VIBECODE_ASR_PLATFORM=web_vosk ./vibetty -- claude
Option B: Build from source
# Set ASR platform and run
VIBECODE_ASR_PLATFORM=web_vosk ./vibetty -- -- claude
Then visit the WebVosk interface at: http://localhost:3000/vosk
Note: First-time use requires downloading Vosk model files (~40MB each). The models are cached in your browser.
For more options, use --help:
./vibetty --help
Visit: http://localhost:3000 after starting the service.
Change the current working directory via HTTP API.
Endpoint: POST /api/change-dir
Request:
curl -X POST http://localhost:3000/api/change-dir \
-H "Content-Type: application/json" \
-d '{"path": "/path/to/directory"}'
Example:
# Change to absolute path
curl -X POST http://localhost:3000/api/change-dir \
-H "Content-Type: application/json" \
-d '{"path": "/home/user/documents"}'
# Change to relative path
curl -X POST http://localhost:3000/api/change-dir \
-H "Content-Type: application/json" \
-d '{"path": "../parent-folder"}'
Note: This endpoint only accepts requests from localhost for security reasons.
| Variable | Description | Default |
|---|---|---|
VIBECODE_ASR_PLATFORM | ASR platform to use: whisper or web_vosk | whisper |
VIBECODE_ASR_URL | Whisper API endpoint URL | https://api.openai.com/v1/audio/transcriptions |
VIBECODE_ASR_API_KEY | Whisper API key (Groq recommended) | (empty) |
VIBECODE_ASR_MODEL | Whisper model name | whisper-1 |
VIBECODE_ASR_LANG | ASR language (e.g. en, zh) | (empty, auto-detected by API) |
VIBECODE_ASR_PROMPT | Prompt passed to the Whisper API to guide transcription | (empty) |
VIBECODE_ASR_DEBUG_WAV | Set to any value to save recorded audio as debug_<session_id>.wav for debugging | (unset) |
VIBECODE_EXIT_COMMAND | Custom voice exit command. When ASR result matches this value (case-insensitive), it is replaced with /exit | (unset) |
Note: Legacy environment variables (e.g.
ASR_URL,ASR_API_KEY,VIBETTY_EXIT_COMMAND, etc.) have been renamed with theVIBECODE_prefix. Using old names will trigger a warning but still work. Please migrate to the new names.
Currently supports Linux and macOS. Windows is not supported because the pty-process library (used for pseudo-terminal handling) is Unix-only and does not support Windows ConPTY.
A Claude Code skill by Hao (駱君昊) that learns your Facebook voice and auto-posts to FB / IG / Threads / X with a 14-day c
1000+ skills curated from Anthropic, Vercel, Stripe, and other engineering teams
Claude Code skill for YouTube creators — channel audits, video SEO, retention scripts, thumbnails, content strategy, Sho
AI image generation skill for Claude Code -- Creative Director powered by Gemini