slashvibe-mcp 0.5.2 → 0.5.3
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 +1 -1
- package/tools/init.js +16 -3
- package/version.json +6 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "slashvibe-mcp",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.3",
|
|
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
|
@@ -678,13 +678,26 @@ To check messages: \`vibe inbox\``
|
|
|
678
678
|
// Build welcome section - show inline if we have the message
|
|
679
679
|
let welcomeSection = '';
|
|
680
680
|
if (welcomeResult?.messageText) {
|
|
681
|
-
welcomeSection = `\n\n---\n**📨 Welcome
|
|
681
|
+
welcomeSection = `\n\n---\n**📨 Welcome from @seth:**\n\n> ${welcomeResult.messageText.split('\n').join('\n> ')}`;
|
|
682
682
|
} else {
|
|
683
|
-
welcomeSection = '\n\n---\n**📨 @seth sent you a welcome message
|
|
683
|
+
welcomeSection = '\n\n---\n**📨 @seth sent you a welcome message** — say **"vibe inbox"** to read it.';
|
|
684
684
|
}
|
|
685
685
|
|
|
686
|
+
// Always close on a concrete next move toward the aha: your first DM
|
|
687
|
+
// landing in someone else's terminal. Only commands that exist (who /
|
|
688
|
+
// @handle / ship). Avoid pointing the reply at a specific founder handle
|
|
689
|
+
// here — it can misroute; reading the inbox is the safe path to reply.
|
|
690
|
+
const whoNudge = onlineCount > 1
|
|
691
|
+
? `**"vibe who"** — see the ${onlineCount} builders online right now`
|
|
692
|
+
: `**"vibe who"** — see who's building right now`;
|
|
693
|
+
const nextSteps = `\n\n---\n**Your first 60 seconds**\n`
|
|
694
|
+
+ `1. ${whoNudge}\n`
|
|
695
|
+
+ `2. **"vibe @someone hey"** — your first DM lands right in their terminal\n`
|
|
696
|
+
+ `3. **"vibe ship <what you're building>"** — put yourself on the board\n\n`
|
|
697
|
+
+ `_Stuck? Say **"vibe help"**._`;
|
|
698
|
+
|
|
686
699
|
return {
|
|
687
|
-
display: authBanner + friendsSection + welcomeSection,
|
|
700
|
+
display: authBanner + friendsSection + welcomeSection + nextSteps,
|
|
688
701
|
onboarding: {
|
|
689
702
|
isNewUser: true,
|
|
690
703
|
handle: result.handle,
|
package/version.json
CHANGED
|
@@ -1,14 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.5.
|
|
3
|
-
"updated": "2026-06-
|
|
4
|
-
"changelog": "
|
|
2
|
+
"version": "0.5.3",
|
|
3
|
+
"updated": "2026-06-29",
|
|
4
|
+
"changelog": "Stronger first 60 seconds. After sign-in, /vibe now closes on a concrete next-steps guide — see who's online, send your first DM, ship to the board — instead of trailing off. Welcome DM quality improved.",
|
|
5
5
|
"features": [
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"Matrix multiplayer rooms",
|
|
10
|
-
"Matrix tools promoted: vibe_matrix_rooms, vibe_matrix_read, vibe_matrix_send",
|
|
11
|
-
"PostToolUse hook polls Matrix bot for ambient message injection"
|
|
6
|
+
"Post-init 'Your first 60 seconds' guide: vibe who → vibe @someone → vibe ship",
|
|
7
|
+
"Removed a reply CTA that could misroute; reading your inbox is the safe reply path",
|
|
8
|
+
"Welcome DM now generated with a current, higher-quality model"
|
|
12
9
|
],
|
|
13
10
|
"deprecated": [
|
|
14
11
|
"vibe_pair — use Matrix room invites",
|