@ropeman/bridge
v0.1.0
Published
WebSocket relay server for Ropeman AI bridge
Readme
@ropeman/bridge
WebSocket relay server for Ropeman AI bridge connections.
Usage
npx @ropeman/bridge
npx @ropeman/bridge --port 9800Protocol
Messages use JSON format with { type, payload } structure.
Message Types
| Type | Description |
| --------- | ----------------------------- |
| ping | Health check (returns pong) |
| status | Server status info |
| analyze | Code analysis request |
| chat | Chat/conversation message |
Request Format
{ "id": 1, "type": "chat", "message": "explain this code" }Response Format
{ "id": 1, "type": "chat", "result": "..." }Development
cd bridge
npm install
npm run build
npm start