mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
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
This commit is contained in:
24
README.md
24
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 <script> --workspace=mcp-server
|
||||
|
||||
## Tech Stack
|
||||
|
||||
- **Monorepo**: npm workspaces
|
||||
- **Architecture**: npm workspaces
|
||||
- **Web**: Next.js 15, React 19, TypeScript, Tailwind CSS
|
||||
- **MCP Server**: TypeScript, Express, MCP SDK
|
||||
- **Voice**: OpenAI Realtime API, WebRTC
|
||||
|
||||
10
package.json
10
package.json
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "realtime-voice-monorepo",
|
||||
"name": "voice-dev",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"workspaces": [
|
||||
@@ -18,14 +18,14 @@
|
||||
"devDependencies": {
|
||||
"typescript": "^5.9.3"
|
||||
},
|
||||
"description": "Monorepo for OpenAI Realtime Voice Assistant with tmux MCP integration",
|
||||
"description": "Voice-controlled development environment with OpenAI Realtime API",
|
||||
"keywords": [
|
||||
"openai",
|
||||
"realtime",
|
||||
"voice",
|
||||
"mcp",
|
||||
"tmux",
|
||||
"monorepo"
|
||||
"voice-assistant",
|
||||
"development",
|
||||
"mcp"
|
||||
],
|
||||
"author": "moboudra",
|
||||
"license": "MIT"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "@realtime-voice/mcp-server",
|
||||
"name": "@voice-dev/mcp-server",
|
||||
"version": "0.3.0",
|
||||
"description": "MCP Server for interfacing with tmux sessions",
|
||||
"type": "module",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "@realtime-voice/web",
|
||||
"name": "@voice-dev/web",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
@@ -12,11 +12,12 @@
|
||||
"openai",
|
||||
"realtime",
|
||||
"voice",
|
||||
"voice-assistant",
|
||||
"nextjs"
|
||||
],
|
||||
"author": "moboudra",
|
||||
"license": "MIT",
|
||||
"description": "OpenAI Realtime Voice Assistant web interface",
|
||||
"description": "Voice development assistant web interface",
|
||||
"dependencies": {
|
||||
"@tailwindcss/postcss": "^4.1.14",
|
||||
"@types/node": "^24.7.2",
|
||||
|
||||
@@ -1,8 +1,6 @@
|
||||
{
|
||||
"$schema": "https://openapi.vercel.sh/vercel.json",
|
||||
"buildCommand": "cd packages/web && npm run build",
|
||||
"outputDirectory": "packages/web/.next",
|
||||
"buildCommand": "npm run build",
|
||||
"installCommand": "npm install",
|
||||
"framework": null,
|
||||
"devCommand": "cd packages/web && npm run dev"
|
||||
"outputDirectory": ".next"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user