slashvibe-mcp 0.5.11 → 0.5.12

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "slashvibe-mcp",
3
- "version": "0.5.11",
3
+ "version": "0.5.12",
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",
package/tools/init.js CHANGED
@@ -263,9 +263,13 @@ async function sendWelcomeMessage(handle, one_liner) {
263
263
  }
264
264
  }
265
265
 
266
+ // The exact link a user can click if the browser didn't pop open on its own.
267
+ // Deterministic (fixed callback port), so it's safe to show verbatim anywhere.
268
+ const MANUAL_LOGIN_URL = `https://www.slashvibe.dev/login?redirect=${encodeURIComponent(`http://localhost:${CALLBACK_PORT}/callback`)}`;
269
+
266
270
  const definition = {
267
271
  name: 'vibe_init',
268
- description: 'Join /vibe social network. Opens browser for GitHub login - NO INPUT NEEDED. Your GitHub username becomes your handle automatically. Just run this and complete the browser auth.',
272
+ description: `Join /vibe social network. Opens the browser for GitHub sign-in NO INPUT NEEDED; the user's GitHub username becomes their handle automatically. This BLOCKS for up to 2 minutes waiting for the browser login to finish, so BEFORE it returns the user sees only a spinner. IMPORTANT: right when you call this, tell the user in your own words that their browser is opening to sign in with GitHub, and that if the tab didn't pop open they can click this link instead: ${MANUAL_LOGIN_URL} — then finish the login there and come back.`,
269
273
  inputSchema: {
270
274
  type: 'object',
271
275
  properties: {
@@ -810,44 +814,47 @@ To check messages: \`vibe inbox\`${emailNudge}`
810
814
  } catch (err) {
811
815
  if (err.message === 'AUTH_IN_PROGRESS') {
812
816
  return {
813
- display: `## Auth already in progress
817
+ display: `## A login is already running
814
818
 
815
- Another login is running. Either:
816
- 1. **Complete it** in your browser, or
817
- 2. **Wait 30 seconds** and try again
819
+ You've got a sign-in waiting in your browser. Either:
820
+ 1. **Finish it** in the browser tab that opened, or
821
+ 2. **Open it yourself** if the tab didn't pop up:
822
+ ${MANUAL_LOGIN_URL}
818
823
 
819
- If stuck, kill the auth server:
824
+ Still stuck? Clear it and start over:
820
825
  \`\`\`
821
826
  lsof -ti:9876 | xargs kill
822
827
  \`\`\`
823
- Then run \`vibe init\` again.`
828
+ Then say **"let's vibe"** again.`
824
829
  };
825
830
  }
826
831
 
827
832
  if (err.message === 'AUTH_TIMEOUT') {
828
833
  return {
829
- display: `## Auth timed out
834
+ display: `## The sign-in timed out
830
835
 
831
- The browser login wasn't completed within 2 minutes.
836
+ The browser login wasn't finished within 2 minutes — no problem, just start it again.
832
837
 
833
- **Try again:**
834
- Just say "add the vibe mcp server" and complete the browser auth faster this time.
838
+ **1. Say "let's vibe"** to reopen the login.
839
+ **2. If the browser tab doesn't pop up,** click this link yourself:
840
+ ${MANUAL_LOGIN_URL}
841
+ **3. Sign in with GitHub** in that tab, then come back here.
835
842
 
836
- **Tip:** Keep Claude Code visible so you can see when auth completes.`
843
+ _Tip: keep this window and the browser both visible so you can see when it finishes._`
837
844
  };
838
845
  }
839
846
 
840
847
  return {
841
- display: `## Failed to authenticate
848
+ display: `## Couldn't finish sign-in
842
849
 
843
- **Error:** ${err.message}
850
+ **What happened:** ${err.message}
844
851
 
845
- **Quick fixes:**
846
- 1. Check your internet connection
847
- 2. Try again: just say "vibe init"
848
- 3. Check status: slashvibe.dev/status
852
+ **Try this:**
853
+ 1. **Click the login link directly:** ${MANUAL_LOGIN_URL}
854
+ 2. Finish the GitHub sign-in in that tab, then come back
855
+ 3. Or say **"let's vibe"** to try the whole thing again
849
856
 
850
- **Need help?** DM @seth on Twitter or email seth@slashvibe.dev`
857
+ **Still stuck?** Email seth@slashvibe.dev happy to get you in.`
851
858
  };
852
859
  }
853
860
  }
package/version.json CHANGED
@@ -1,8 +1,9 @@
1
1
  {
2
- "version": "0.5.11",
2
+ "version": "0.5.12",
3
3
  "updated": "2026-07-03",
4
- "changelog": "Never messaged anyone yet? `vibe start` and `vibe who` now nudge you toward a real human who's around right now a one-tap, ready-to-paste `vibe dm` with an opener warmed by what they just shipped. It shows only until you send your first DM, then it's gone for good. The whole point of the green dot is that someone's actually there; this closes the gap between seeing that and saying hi.",
4
+ "changelog": "First-run just got un-losable. Saying `let's vibe` opens your browser for GitHub sign-in and now the tool tells you that's happening, hands you a clickable login link if the tab didn't pop, and if anything times out it says exactly what to do (`let's vibe` again) instead of an unrelated hint. No more staring at a silent prompt wondering if it worked.",
5
5
  "features": [
6
+ "Bulletproof first-run — `let's vibe` now narrates the browser sign-in, gives you a clickable fallback login link, and every timeout/error path tells you the correct retry. You can't get stranded",
6
7
  "First-DM nudge — if you've never messaged anyone, vibe start/who surface the most-recently-active real human as a one-tap opener, warmed by their latest ship. Self-heals: disappears the moment you send your first DM",
7
8
  "vibe_play — the open primitive: pass any JSON state + a note to another viber, read it back to take your turn, and improvise any activity two sessions can dream up",
8
9
  "vibe_corpse — write an exquisite corpse: alternate lines blind to all but the last, then seal for the big reveal",