slashvibe-mcp 0.5.22 → 0.5.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +3 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -217,7 +217,9 @@ async function getPresenceFooter() {
217
217
  // when it will actually resolve. See ROOM-PRESENCE-BRIDGE.md.
218
218
  const liveRooms = others.filter(u => u.isLive && u.broadcastRoom);
219
219
  if (liveRooms.length > 0) {
220
- const base = process.env.VIBE_ROOM_URL_BASE; // e.g. https://vibeconferencing.com/
220
+ // Confirmed room-join format (coltrane lane, Jul 9): /room/<slug> serves
221
+ // 200; env override kept for other room backends.
222
+ const base = process.env.VIBE_ROOM_URL_BASE || 'https://vibeconferencing.com/room/';
221
223
  footer += '\n';
222
224
  footer += liveRooms.slice(0, 3).map(u => {
223
225
  const where = `🔴 @${u.handle} live in the ${u.broadcastRoom}`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "slashvibe-mcp",
3
- "version": "0.5.22",
3
+ "version": "0.5.23",
4
4
  "mcpName": "io.github.vibecodinginc/vibe",
5
5
  "description": "Social layer for Claude Code - DMs, presence, Matrix multiplayer rooms, and connection between AI-assisted developers",
6
6
  "main": "index.js",