From 205307da22449e65445b65d8cb42a84e3a276123 Mon Sep 17 00:00:00 2001 From: Mohamed Boudra Date: Mon, 13 Oct 2025 14:33:01 +0200 Subject: [PATCH] Rename project to voice-dev - Rename all packages from @realtime-voice/* to @voice-dev/* - Update root package.json name and description - Update README with new branding and remove monorepo terminology - Rename GitHub repo to voice-dev - Remove Vercel link to prepare for fresh deployment --- README.md | 24 ++++++++++++------------ package.json | 10 +++++----- packages/mcp-server/package.json | 2 +- packages/web/package.json | 5 +++-- vercel.json | 6 ++---- 5 files changed, 23 insertions(+), 24 deletions(-) diff --git a/README.md b/README.md index eaa046d2e..69ab40bde 100644 --- a/README.md +++ b/README.md @@ -1,15 +1,15 @@ -# Realtime Voice Monorepo +# Voice Dev -OpenAI Realtime API voice assistant with tmux MCP integration. +Voice-controlled development environment powered by OpenAI Realtime API. ## Packages -- **`@realtime-voice/mcp-server`** - MCP server for tmux control +- **`@voice-dev/mcp-server`** - MCP server for terminal control - Located in `packages/mcp-server/` - - Provides tmux session management via MCP protocol + - Provides terminal session management via MCP protocol - Can run as HTTP server or stdio mode -- **`@realtime-voice/web`** - Next.js web interface +- **`@voice-dev/web`** - Next.js web interface - Located in `packages/web/` - Voice interaction with OpenAI Realtime API - Password authentication @@ -74,13 +74,13 @@ See `packages/web/.env.local.example` for template. ## Project Structure ``` -realtime-voice-monorepo/ +voice-dev/ ├── packages/ │ ├── mcp-server/ # MCP Server Package │ │ ├── src/ │ │ │ ├── index.ts # CLI entry point │ │ │ ├── http-server.ts # HTTP server mode -│ │ │ └── tmux.ts # Tmux operations +│ │ │ └── tmux.ts # Terminal operations │ │ ├── build/ # Compiled output │ │ ├── package.json │ │ └── tsconfig.json @@ -113,7 +113,7 @@ realtime-voice-monorepo/ - Tool call visibility ### MCP Server -- Full tmux session control +- Full terminal session control - List sessions, windows, and panes - Send keystrokes and text - Create and kill sessions/windows/panes @@ -125,11 +125,11 @@ realtime-voice-monorepo/ ### Web App (Vercel) -The web app is configured for Vercel deployment: +Deploy from the web package directory: ```bash -# Deploy from monorepo -cd ~/dev/realtime-voice-monorepo +# Deploy to Vercel +cd ~/dev/voice-dev/packages/web vercel --prod # Set environment variables @@ -177,7 +177,7 @@ npm run