slashvibe-mcp 0.3.21 → 0.3.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 (235) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +280 -47
  3. package/auto-update.js +10 -15
  4. package/config.js +36 -31
  5. package/crypto.js +1 -6
  6. package/debug.js +12 -0
  7. package/discord.js +19 -19
  8. package/eslint.config.js +54 -0
  9. package/index.js +217 -207
  10. package/intelligence/index.js +2 -9
  11. package/intelligence/infer.js +10 -16
  12. package/intelligence/patterns.js +23 -18
  13. package/intelligence/proactive.js +16 -15
  14. package/intelligence/serendipity.js +57 -20
  15. package/memory.js +13 -8
  16. package/migrate-v2.js +72 -0
  17. package/notification-emitter.js +2 -2
  18. package/notify.js +39 -14
  19. package/package.json +28 -29
  20. package/post-install.js +141 -0
  21. package/presence.js +2 -2
  22. package/prompts.js +5 -9
  23. package/protocol/index.js +123 -87
  24. package/protocol/telegram-commands.js +36 -37
  25. package/store/api.js +358 -529
  26. package/store/local.js +9 -10
  27. package/store/profiles.js +48 -192
  28. package/store/reservations.js +2 -9
  29. package/store/skills.js +69 -71
  30. package/store/sqlite.js +355 -0
  31. package/test-skills-bootstrap.js +20 -0
  32. package/test-v2-integration.js +385 -0
  33. package/tools/_actions.js +48 -387
  34. package/tools/_connection-queue.js +45 -56
  35. package/tools/_discovery-enhanced.js +52 -57
  36. package/tools/_discovery.js +87 -185
  37. package/tools/{l2-status.js → _experimental/l2-status.js} +68 -70
  38. package/tools/{shipback.js → _experimental/shipback.js} +4 -3
  39. package/tools/_proactive-discovery.js +60 -73
  40. package/tools/_shared/index.js +41 -64
  41. package/tools/admin-inbox.js +10 -15
  42. package/tools/agents.js +1 -1
  43. package/tools/artifact-create.js +13 -23
  44. package/tools/artifact-view.js +4 -4
  45. package/tools/{_deprecated/back.js → back.js} +1 -1
  46. package/tools/bye.js +3 -5
  47. package/tools/consent.js +2 -2
  48. package/tools/context.js +9 -10
  49. package/tools/crossword.js +3 -2
  50. package/tools/discover.js +94 -356
  51. package/tools/dm.js +27 -86
  52. package/tools/doctor.js +12 -41
  53. package/tools/drawing.js +34 -20
  54. package/tools/echo.js +11 -11
  55. package/tools/feed.js +30 -58
  56. package/tools/follow.js +64 -187
  57. package/tools/{_deprecated/forget.js → forget.js} +4 -7
  58. package/tools/game.js +144 -48
  59. package/tools/handoff.js +6 -8
  60. package/tools/help.js +3 -3
  61. package/tools/idea.js +15 -27
  62. package/tools/inbox.js +121 -293
  63. package/tools/init.js +54 -151
  64. package/tools/invite.js +8 -21
  65. package/tools/migrate.js +27 -24
  66. package/tools/multiplayer-game.js +50 -40
  67. package/tools/{_deprecated/mute.js → mute.js} +4 -3
  68. package/tools/notifications.js +58 -48
  69. package/tools/observe.js +12 -15
  70. package/tools/onboarding.js +8 -11
  71. package/tools/open.js +13 -144
  72. package/tools/party-game.js +23 -12
  73. package/tools/patterns.js +2 -1
  74. package/tools/ping.js +5 -7
  75. package/tools/react.js +28 -30
  76. package/tools/{_deprecated/recall.js → recall.js} +5 -10
  77. package/tools/release.js +4 -2
  78. package/tools/{_deprecated/remember.js → remember.js} +4 -6
  79. package/tools/report.js +2 -2
  80. package/tools/request.js +6 -26
  81. package/tools/reserve.js +1 -1
  82. package/tools/session-fork.js +97 -0
  83. package/tools/session-save.js +109 -0
  84. package/tools/settings.js +30 -99
  85. package/tools/ship.js +74 -56
  86. package/tools/{_deprecated/skills-exchange.js → skills-exchange.js} +38 -39
  87. package/tools/social-inbox.js +22 -28
  88. package/tools/social-post.js +24 -27
  89. package/tools/solo-game.js +54 -46
  90. package/tools/start.js +14 -148
  91. package/tools/status.js +21 -68
  92. package/tools/submit.js +4 -2
  93. package/tools/suggest-tags.js +36 -33
  94. package/tools/summarize.js +19 -16
  95. package/tools/tag-suggestions.js +72 -73
  96. package/tools/test.js +1 -1
  97. package/tools/{_deprecated/tictactoe.js → tictactoe.js} +26 -26
  98. package/tools/token.js +4 -4
  99. package/tools/update.js +1 -2
  100. package/tools/watch.js +132 -112
  101. package/tools/who.js +20 -40
  102. package/tools/{_deprecated/wordassociation.js → wordassociation.js} +23 -20
  103. package/tools/workshop-buddy.js +52 -53
  104. package/tools/x-mentions.js +0 -1
  105. package/tools/x-reply.js +0 -1
  106. package/twitter.js +14 -20
  107. package/version.json +8 -10
  108. package/webhook-runner.js +132 -0
  109. package/auth-store.js +0 -148
  110. package/bridges/bridge-monitor.js +0 -388
  111. package/bridges/discord-bot.js +0 -431
  112. package/bridges/farcaster.js +0 -299
  113. package/bridges/telegram.js +0 -261
  114. package/bridges/webhook-health.js +0 -420
  115. package/bridges/webhook-server.js +0 -437
  116. package/bridges/whatsapp.js +0 -441
  117. package/bridges/x-webhook.js +0 -423
  118. package/games/arcade.js +0 -406
  119. package/games/chess.js +0 -451
  120. package/games/colorguess.js +0 -343
  121. package/games/crossword-words.js +0 -171
  122. package/games/crossword.js +0 -461
  123. package/games/drawing.js +0 -347
  124. package/games/gameroulette.js +0 -300
  125. package/games/gamerouter.js +0 -336
  126. package/games/gamestatus.js +0 -337
  127. package/games/guessnumber.js +0 -209
  128. package/games/hangman.js +0 -279
  129. package/games/memory.js +0 -338
  130. package/games/multiplayer-tictactoe.js +0 -389
  131. package/games/pixelart.js +0 -399
  132. package/games/quickduel.js +0 -354
  133. package/games/riddle.js +0 -371
  134. package/games/rockpaperscissors.js +0 -291
  135. package/games/snake.js +0 -406
  136. package/games/storybuilder.js +0 -343
  137. package/games/tictactoe.js +0 -345
  138. package/games/twentyquestions.js +0 -286
  139. package/games/twotruths.js +0 -207
  140. package/games/werewolf.js +0 -508
  141. package/games/wordassociation.js +0 -247
  142. package/games/wordchain.js +0 -135
  143. package/intelligence/interests.js +0 -369
  144. package/setup.js +0 -480
  145. package/smart-inbox.js +0 -276
  146. package/tools/_deprecated/auto-suggest-connections.js +0 -304
  147. package/tools/_deprecated/bootstrap-skills.js +0 -231
  148. package/tools/_deprecated/bridge-dashboard.js +0 -342
  149. package/tools/_deprecated/bridge-health.js +0 -400
  150. package/tools/_deprecated/bridge-live.js +0 -384
  151. package/tools/_deprecated/bridges.js +0 -383
  152. package/tools/_deprecated/colorguess.js +0 -281
  153. package/tools/_deprecated/discover-insights.js +0 -379
  154. package/tools/_deprecated/discover-momentum.js +0 -256
  155. package/tools/_deprecated/discovery-analytics.js +0 -345
  156. package/tools/_deprecated/discovery-auto-suggest.js +0 -275
  157. package/tools/_deprecated/discovery-bootstrap.js +0 -267
  158. package/tools/_deprecated/discovery-daily.js +0 -375
  159. package/tools/_deprecated/discovery-dashboard.js +0 -385
  160. package/tools/_deprecated/discovery-digest.js +0 -314
  161. package/tools/_deprecated/discovery-hub.js +0 -357
  162. package/tools/_deprecated/discovery-insights.js +0 -384
  163. package/tools/_deprecated/discovery-momentum.js +0 -281
  164. package/tools/_deprecated/discovery-monitor.js +0 -319
  165. package/tools/_deprecated/discovery-proactive.js +0 -300
  166. package/tools/_deprecated/draw.js +0 -317
  167. package/tools/_deprecated/farcaster.js +0 -307
  168. package/tools/_deprecated/games-catalog.js +0 -376
  169. package/tools/_deprecated/games.js +0 -313
  170. package/tools/_deprecated/guessnumber.js +0 -194
  171. package/tools/_deprecated/hangman.js +0 -129
  172. package/tools/_deprecated/multiplayer-tictactoe.js +0 -303
  173. package/tools/_deprecated/riddle.js +0 -240
  174. package/tools/_deprecated/run-bootstrap.js +0 -69
  175. package/tools/_deprecated/skills-analytics.js +0 -349
  176. package/tools/_deprecated/skills-bootstrap.js +0 -301
  177. package/tools/_deprecated/skills-dashboard.js +0 -268
  178. package/tools/_deprecated/skills.js +0 -380
  179. package/tools/_deprecated/smart-intro.js +0 -353
  180. package/tools/_deprecated/storybuilder.js +0 -331
  181. package/tools/_deprecated/telegram-bot.js +0 -183
  182. package/tools/_deprecated/telegram-setup.js +0 -214
  183. package/tools/_deprecated/twentyquestions.js +0 -143
  184. package/tools/_shared.js +0 -234
  185. package/tools/_work-context.js +0 -338
  186. package/tools/_work-context.manual-test.js +0 -199
  187. package/tools/_work-context.test.js +0 -260
  188. package/tools/activity.js +0 -220
  189. package/tools/agent-treasury.js +0 -288
  190. package/tools/analytics.js +0 -191
  191. package/tools/approve.js +0 -197
  192. package/tools/arcade.js +0 -173
  193. package/tools/artifacts-price.js +0 -107
  194. package/tools/ask-expert.js +0 -160
  195. package/tools/available.js +0 -120
  196. package/tools/become-expert.js +0 -150
  197. package/tools/broadcast.js +0 -325
  198. package/tools/chat.js +0 -202
  199. package/tools/collaborative-drawing.js +0 -286
  200. package/tools/connection-status.js +0 -178
  201. package/tools/earnings.js +0 -126
  202. package/tools/friends.js +0 -207
  203. package/tools/genesis.js +0 -233
  204. package/tools/gig-browse.js +0 -206
  205. package/tools/gig-complete.js +0 -144
  206. package/tools/health.js +0 -87
  207. package/tools/leaderboard.js +0 -117
  208. package/tools/lib/git-apply.js +0 -206
  209. package/tools/lib/git-bundle.js +0 -407
  210. package/tools/mint.js +0 -377
  211. package/tools/plan.js +0 -225
  212. package/tools/profile.js +0 -219
  213. package/tools/proof-of-work.js +0 -144
  214. package/tools/pulse.js +0 -218
  215. package/tools/reply.js +0 -166
  216. package/tools/reputation.js +0 -175
  217. package/tools/schedule.js +0 -367
  218. package/tools/search-messages.js +0 -123
  219. package/tools/session.js +0 -467
  220. package/tools/session_price.js +0 -128
  221. package/tools/smart-check.js +0 -201
  222. package/tools/social-processor.js +0 -445
  223. package/tools/streak.js +0 -147
  224. package/tools/stuck.js +0 -297
  225. package/tools/subscribe.js +0 -148
  226. package/tools/subscriptions.js +0 -134
  227. package/tools/tip.js +0 -193
  228. package/tools/wallet.js +0 -269
  229. package/tools/webhook-test.js +0 -388
  230. package/tools/withdraw.js +0 -145
  231. package/tools/work-summary.js +0 -96
  232. package/tools/workshop.js +0 -327
  233. /package/tools/{l2-bridge.js → _experimental/l2-bridge.js} +0 -0
  234. /package/tools/{l2.js → _experimental/l2.js} +0 -0
  235. /package/tools/{_deprecated/away.js → away.js} +0 -0
@@ -1,123 +0,0 @@
1
- /**
2
- * vibe_search_messages - Search your DM history
3
- *
4
- * Search through all your conversations or filter to a specific person.
5
- * Returns matching messages with context highlighting.
6
- */
7
-
8
- const config = require('../config');
9
- const store = require('../store');
10
-
11
- const searchMessagesSchema = {
12
- name: 'vibe_search_messages',
13
- description: 'Search through your DM history. Find messages by keyword across all conversations or with a specific person.',
14
- inputSchema: {
15
- type: 'object',
16
- properties: {
17
- query: {
18
- type: 'string',
19
- description: 'Search term (at least 2 characters)',
20
- },
21
- with: {
22
- type: 'string',
23
- description: 'Optional: Filter to conversation with specific user (e.g., @alice)',
24
- },
25
- limit: {
26
- type: 'number',
27
- description: 'Max results to return (default: 20)',
28
- },
29
- },
30
- required: ['query'],
31
- },
32
- };
33
-
34
- async function searchMessagesHandler({ query, with: withUser, limit = 20 }) {
35
- const handle = config.getHandle();
36
- if (!handle) {
37
- return {
38
- content: [
39
- {
40
- type: 'text',
41
- text: '❌ Not initialized. Run `vibe init` first.',
42
- },
43
- ],
44
- };
45
- }
46
-
47
- if (!query || query.trim().length < 2) {
48
- return {
49
- content: [
50
- {
51
- type: 'text',
52
- text: '❌ Search query must be at least 2 characters.',
53
- },
54
- ],
55
- };
56
- }
57
-
58
- try {
59
- const results = await store.searchMessages(query, {
60
- with: withUser?.replace('@', ''),
61
- limit: Math.min(limit, 50),
62
- });
63
-
64
- if (!results.messages || results.messages.length === 0) {
65
- const scope = withUser ? ` in conversation with @${withUser.replace('@', '')}` : '';
66
- return {
67
- content: [
68
- {
69
- type: 'text',
70
- text: `🔍 No messages found for "${query}"${scope}.`,
71
- },
72
- ],
73
- };
74
- }
75
-
76
- // Format results
77
- let output = `🔍 **Search: "${query}"**\n`;
78
- output += `Found ${results.total} message${results.total !== 1 ? 's' : ''}`;
79
- if (withUser) {
80
- output += ` with @${withUser.replace('@', '')}`;
81
- }
82
- output += '\n\n';
83
-
84
- for (const msg of results.messages) {
85
- const fromMe = msg.from === handle;
86
- const direction = fromMe ? '→' : '←';
87
- const other = fromMe ? msg.to : msg.from;
88
- const date = new Date(msg.created_at).toLocaleDateString();
89
-
90
- output += `**${direction} @${other}** (${date})\n`;
91
- output += `> ${msg.match_preview}\n\n`;
92
- }
93
-
94
- if (results.has_more) {
95
- output += `_Showing ${results.count} of ${results.total} results. Add \`limit: ${limit + 20}\` for more._\n`;
96
- }
97
-
98
- return {
99
- content: [
100
- {
101
- type: 'text',
102
- text: output,
103
- },
104
- ],
105
- };
106
-
107
- } catch (error) {
108
- console.error('[search-messages] Error:', error);
109
- return {
110
- content: [
111
- {
112
- type: 'text',
113
- text: `❌ Search failed: ${error.message}`,
114
- },
115
- ],
116
- };
117
- }
118
- }
119
-
120
- module.exports = {
121
- schema: searchMessagesSchema,
122
- handler: searchMessagesHandler,
123
- };
package/tools/session.js DELETED
@@ -1,467 +0,0 @@
1
- /**
2
- * vibe session — Session management
3
- *
4
- * Save broadcasts as replayable sessions, browse sessions, and fork them.
5
- *
6
- * Commands:
7
- * - session save → Save current/recent broadcast as session
8
- * - session save --room X → Save specific broadcast
9
- * - session list → List my sessions
10
- * - session browse → Browse all public sessions
11
- * - session fork <id> → Fork a session (story only)
12
- * - session fork <id> --full → Fork with git bundle (get actual code)
13
- * - session view <id> → View session details
14
- */
15
-
16
- const config = require('../config');
17
- const gitApply = require('./lib/git-apply');
18
-
19
- const definition = {
20
- name: 'vibe_session',
21
- description: 'Save broadcasts as sessions, list your sessions, fork others\' sessions.',
22
- inputSchema: {
23
- type: 'object',
24
- properties: {
25
- action: {
26
- type: 'string',
27
- enum: ['save', 'list', 'browse', 'fork', 'view'],
28
- description: 'Action: save, list, browse, fork, or view'
29
- },
30
- room: {
31
- type: 'string',
32
- description: 'Room ID to save (for save action)'
33
- },
34
- id: {
35
- type: 'string',
36
- description: 'Session ID (for fork/view action)'
37
- },
38
- title: {
39
- type: 'string',
40
- description: 'Session title (for save action)'
41
- },
42
- visibility: {
43
- type: 'string',
44
- enum: ['public', 'unlisted', 'private'],
45
- description: 'Session visibility (default: public)'
46
- },
47
- limit: {
48
- type: 'number',
49
- description: 'Number of sessions to show (default: 10)'
50
- },
51
- full: {
52
- type: 'boolean',
53
- description: 'For fork: download git bundle and apply locally (default: false)'
54
- },
55
- branch: {
56
- type: 'string',
57
- description: 'For fork --full: branch name for applied code (default: forked-session)'
58
- }
59
- }
60
- }
61
- };
62
-
63
- async function handler(args) {
64
- const myHandle = config.getHandle();
65
- const apiUrl = config.getApiUrl();
66
- const action = args.action || 'list';
67
-
68
- if (!myHandle && action !== 'browse' && action !== 'view') {
69
- return { display: '⚠️ Not initialized. Run `vibe init` first.' };
70
- }
71
-
72
- // SAVE broadcast as session
73
- if (action === 'save') {
74
- // Get room ID from args or from active broadcast
75
- let roomId = args.room;
76
-
77
- if (!roomId) {
78
- // Check for active broadcast
79
- const broadcast = config.get('broadcast');
80
- if (broadcast) {
81
- roomId = broadcast.roomId;
82
- }
83
- }
84
-
85
- if (!roomId) {
86
- return {
87
- display: `⚠️ No broadcast to save.\n\n**Options:**\n1. Specify a room: \`vibe session save --room room_xxx\`\n2. Start a broadcast first: \`vibe broadcast start\``
88
- };
89
- }
90
-
91
- const title = args.title || `Session by @${myHandle}`;
92
- const visibility = args.visibility || 'public';
93
-
94
- try {
95
- const response = await fetch(`${apiUrl}/api/sessions`, {
96
- method: 'POST',
97
- headers: { 'Content-Type': 'application/json' },
98
- body: JSON.stringify({
99
- fromBroadcast: roomId,
100
- handle: myHandle,
101
- title,
102
- visibility
103
- })
104
- });
105
-
106
- const data = await response.json();
107
-
108
- if (!data.success) {
109
- if (data.error?.includes('buffer not found')) {
110
- return {
111
- display: `⚠️ Broadcast buffer expired.\n\n_Buffers expire 1 hour after broadcast ends. Start a new broadcast to create a session._`
112
- };
113
- }
114
- return { display: `⚠️ Failed to save session: ${data.error}` };
115
- }
116
-
117
- const formatDuration = (secs) => {
118
- if (!secs || secs < 60) return 'under 1 minute';
119
- if (secs < 3600) return `${Math.floor(secs / 60)} minutes`;
120
- return `${Math.floor(secs / 3600)}h ${Math.floor((secs % 3600) / 60)}m`;
121
- };
122
-
123
- // Chapter icons for display
124
- const chapterIcons = {
125
- setup: '🔧',
126
- problem: '❌',
127
- investigation: '🔍',
128
- breakthrough: '💡',
129
- implementation: '⚡',
130
- ship: '🚀'
131
- };
132
-
133
- let display = `✅ **Session Saved**\n\n`;
134
- display += `**${data.title}**\n\n`;
135
- display += `📎 ${data.shareUrl}\n\n`;
136
- display += `**Stats:**\n`;
137
- display += `- Duration: ${formatDuration(data.stats?.durationSeconds)}\n`;
138
- display += `- Chunks: ${data.stats?.chunks || 0}\n`;
139
-
140
- // Show chapters if detected
141
- const chapters = data.chapters || [];
142
- if (chapters.length > 0) {
143
- display += `- Chapters: ${chapters.length}\n\n`;
144
- display += `📖 **Story Arc:**\n`;
145
- const chapterFlow = chapters.map(ch => {
146
- const icon = chapterIcons[ch.type] || '📋';
147
- return `${icon} ${ch.title}`;
148
- }).join(' → ');
149
- display += ` ${chapterFlow}\n\n`;
150
- } else {
151
- display += `- Fork points: ${data.stats?.forkPoints || 0}\n\n`;
152
- }
153
-
154
- display += `_Share this URL or find it later with \`vibe session list\`_`;
155
-
156
- return { display };
157
-
158
- } catch (error) {
159
- return { display: `## Save Error\n\n${error.message}` };
160
- }
161
- }
162
-
163
- // LIST my sessions
164
- if (action === 'list') {
165
- const limit = args.limit || 10;
166
-
167
- try {
168
- const response = await fetch(
169
- `${apiUrl}/api/sessions/browse?author=${myHandle}&limit=${limit}`,
170
- { headers: { 'Accept': 'application/json' } }
171
- );
172
-
173
- const data = await response.json();
174
-
175
- if (!data.success) {
176
- return { display: `⚠️ Failed to fetch sessions: ${data.error}` };
177
- }
178
-
179
- if (!data.sessions || data.sessions.length === 0) {
180
- let display = `📼 **No Sessions Yet**\n\n`;
181
- display += `You haven't saved any sessions.\n\n`;
182
- display += `**Create your first session:**\n`;
183
- display += `1. \`vibe broadcast start "What you're building"\`\n`;
184
- display += `2. Code for a while...\n`;
185
- display += `3. \`vibe broadcast stop\`\n`;
186
- display += `4. \`vibe session save\``;
187
- return { display };
188
- }
189
-
190
- const formatDuration = (secs) => {
191
- if (!secs || secs < 60) return '<1m';
192
- if (secs < 3600) return `${Math.floor(secs / 60)}m`;
193
- return `${Math.floor(secs / 3600)}h ${Math.floor((secs % 3600) / 60)}m`;
194
- };
195
-
196
- const formatDate = (dateStr) => {
197
- const date = new Date(dateStr);
198
- return date.toLocaleDateString('en-US', { month: 'short', day: 'numeric' });
199
- };
200
-
201
- let display = `📼 **Your Sessions** (${data.sessions.length}${data.hasMore ? '+' : ''})\n\n`;
202
-
203
- for (const s of data.sessions) {
204
- const duration = formatDuration(s.duration_seconds);
205
- const date = formatDate(s.created_at);
206
- const views = s.views || 0;
207
- const forks = s.forks || 0;
208
-
209
- display += `**${s.title}**\n`;
210
- display += ` ${date} · ${duration}`;
211
- if (views > 0) display += ` · ${views} views`;
212
- if (forks > 0) display += ` · ${forks} forks`;
213
- display += `\n`;
214
- display += ` → \`vibe session view ${s.id}\`\n\n`;
215
- }
216
-
217
- if (data.hasMore) {
218
- display += `_More sessions available. Use \`--limit 20\` to see more._`;
219
- }
220
-
221
- return { display };
222
-
223
- } catch (error) {
224
- return { display: `## List Error\n\n${error.message}` };
225
- }
226
- }
227
-
228
- // BROWSE all public sessions
229
- if (action === 'browse') {
230
- const limit = args.limit || 10;
231
-
232
- try {
233
- const response = await fetch(
234
- `${apiUrl}/api/sessions/browse?limit=${limit}&sort=popular`,
235
- { headers: { 'Accept': 'application/json' } }
236
- );
237
-
238
- const data = await response.json();
239
-
240
- if (!data.success) {
241
- return { display: `⚠️ Failed to fetch sessions: ${data.error}` };
242
- }
243
-
244
- if (!data.sessions || data.sessions.length === 0) {
245
- return {
246
- display: `📼 No public sessions yet.\n\n_Be the first! Start a broadcast and save it._`
247
- };
248
- }
249
-
250
- const formatDuration = (secs) => {
251
- if (!secs || secs < 60) return '<1m';
252
- if (secs < 3600) return `${Math.floor(secs / 60)}m`;
253
- return `${Math.floor(secs / 3600)}h`;
254
- };
255
-
256
- let display = `📼 **Public Sessions** (${data.total} total)\n\n`;
257
-
258
- for (const s of data.sessions) {
259
- const duration = formatDuration(s.duration_seconds);
260
- const views = s.views || 0;
261
- const forks = s.forks || 0;
262
-
263
- display += `**${s.title}** by @${s.author_handle}\n`;
264
- display += ` ${duration}`;
265
- if (views > 0) display += ` · ${views} views`;
266
- if (forks > 0) display += ` · ${forks} forks`;
267
- display += `\n`;
268
- display += ` → \`vibe session view ${s.id}\`\n\n`;
269
- }
270
-
271
- if (data.hasMore) {
272
- display += `_More sessions available. Use \`--limit 20\` to see more._`;
273
- }
274
-
275
- return { display };
276
-
277
- } catch (error) {
278
- return { display: `## Browse Error\n\n${error.message}` };
279
- }
280
- }
281
-
282
- // VIEW session details
283
- if (action === 'view') {
284
- if (!args.id) {
285
- return { display: '⚠️ Session ID required. Usage: `vibe session view ses_xxx`' };
286
- }
287
-
288
- const sessionId = args.id;
289
-
290
- try {
291
- // Use the story endpoint which returns full session details
292
- const response = await fetch(`${apiUrl}/story/${sessionId}?format=json`);
293
-
294
- if (!response.ok) {
295
- return {
296
- display: `⚠️ Session not found: ${sessionId}\n\n_Check the ID or browse sessions with \`vibe session browse\`_`
297
- };
298
- }
299
-
300
- const data = await response.json();
301
-
302
- if (!data.success && !data.session) {
303
- return { display: `⚠️ Failed to fetch session: ${data.error}` };
304
- }
305
-
306
- const s = data.session || data.story || data;
307
-
308
- const formatDuration = (secs) => {
309
- if (!secs || secs < 60) return 'under 1 minute';
310
- if (secs < 3600) return `${Math.floor(secs / 60)} minutes`;
311
- return `${Math.floor(secs / 3600)}h ${Math.floor((secs % 3600) / 60)}m`;
312
- };
313
-
314
- // Chapter icons for display
315
- const chapterIcons = {
316
- setup: '🔧',
317
- problem: '❌',
318
- investigation: '🔍',
319
- breakthrough: '💡',
320
- implementation: '⚡',
321
- ship: '🚀'
322
- };
323
-
324
- let display = `📼 **${s.title}**\n\n`;
325
- display += `**Author:** @${s.author || s.author_handle}\n`;
326
- display += `**Duration:** ${formatDuration(s.durationSeconds || s.duration_seconds)}\n`;
327
- display += `**Views:** ${s.views || 0}\n`;
328
- display += `**Forks:** ${s.forks || 0}\n\n`;
329
-
330
- // Display chapters if available
331
- const chapters = s.chapters || [];
332
- if (chapters.length > 0) {
333
- display += `📖 **Chapters** (${chapters.length})\n`;
334
- for (let i = 0; i < chapters.length; i++) {
335
- const ch = chapters[i];
336
- const icon = chapterIcons[ch.type] || '📋';
337
- display += ` ${i + 1}. ${icon} **${ch.title}** (${ch.startTime || '0:00'})\n`;
338
- if (ch.summary) {
339
- display += ` _${ch.summary.slice(0, 60)}${ch.summary.length > 60 ? '...' : ''}_\n`;
340
- }
341
- }
342
- display += '\n';
343
- }
344
-
345
- // Display fork points if available
346
- const forkPoints = s.forkPoints || [];
347
- if (forkPoints.length > 0) {
348
- display += `🔀 **Fork Points** (${forkPoints.length})\n`;
349
- for (const fp of forkPoints.slice(0, 5)) {
350
- display += ` - ${fp.label}: ${fp.description || ''}\n`;
351
- }
352
- if (forkPoints.length > 5) {
353
- display += ` _...and ${forkPoints.length - 5} more_\n`;
354
- }
355
- display += '\n';
356
- }
357
-
358
- if (s.description) {
359
- display += `**Description:**\n${s.description}\n\n`;
360
- }
361
-
362
- if (s.summary) {
363
- display += `**Summary:**\n${s.summary}\n\n`;
364
- }
365
-
366
- display += `**View full session:**\n`;
367
- display += `https://slashvibe.dev/story/${sessionId}\n\n`;
368
-
369
- display += `**Actions:**\n`;
370
- display += `- Fork: \`vibe session fork ${sessionId}\`\n`;
371
-
372
- return { display };
373
-
374
- } catch (error) {
375
- return { display: `## View Error\n\n${error.message}` };
376
- }
377
- }
378
-
379
- // FORK a session
380
- if (action === 'fork') {
381
- if (!args.id) {
382
- return { display: '⚠️ Session ID required. Usage: `vibe session fork ses_xxx`' };
383
- }
384
-
385
- const sessionId = args.id;
386
- const fullFork = args.full === true;
387
- const branchName = args.branch || 'forked-session';
388
- const forkLevel = fullFork ? 'full' : 'story_only';
389
-
390
- try {
391
- const response = await fetch(`${apiUrl}/api/sessions/fork`, {
392
- method: 'POST',
393
- headers: { 'Content-Type': 'application/json' },
394
- body: JSON.stringify({
395
- parentSessionId: sessionId,
396
- forkerHandle: myHandle,
397
- forkTo: 'session',
398
- forkLevel
399
- })
400
- });
401
-
402
- const data = await response.json();
403
-
404
- if (!data.success) {
405
- if (data.error?.includes('not found')) {
406
- return {
407
- display: `⚠️ Session not found: ${sessionId}\n\n_Check the ID or browse sessions with \`vibe session browse\`_`
408
- };
409
- }
410
- if (data.error?.includes('private')) {
411
- return { display: `⚠️ Cannot fork a private session.` };
412
- }
413
- return { display: `⚠️ Failed to fork session: ${data.error}` };
414
- }
415
-
416
- let display = `🍴 **Session Forked!**\n\n`;
417
- display += `**From:** ${data.parentSession?.title || sessionId}\n`;
418
- display += `**By:** @${data.parentSession?.author || 'unknown'}\n\n`;
419
- display += `**Fork ID:** ${data.forkId}\n\n`;
420
-
421
- // Handle full fork with git bundle
422
- if (fullFork && data.git?.bundleDownloadUrl) {
423
- display += `📦 **Downloading git bundle...**\n`;
424
-
425
- const applyResult = await gitApply.applyBundleFromUrl(
426
- data.git.bundleDownloadUrl,
427
- branchName
428
- );
429
-
430
- if (applyResult.success) {
431
- display += `✅ **Code applied to branch:** \`${applyResult.branch}\`\n\n`;
432
- display += `**Git info:**\n`;
433
- display += `- Branch: ${data.git.branch || 'unknown'}\n`;
434
- display += `- Commits: ${data.git.initialCommit?.slice(0, 7)}..${data.git.finalCommit?.slice(0, 7)}\n`;
435
- display += `- Bundle size: ${Math.round(applyResult.size / 1024)}KB\n\n`;
436
- display += `**Next steps:**\n`;
437
- display += `\`\`\`\ngit checkout ${applyResult.branch}\n\`\`\`\n`;
438
- } else {
439
- display += `⚠️ **Bundle apply failed:** ${applyResult.error}\n\n`;
440
- display += `_The session was forked, but the code bundle could not be applied._\n`;
441
- display += `_You can still view the story at the URL below._\n\n`;
442
- }
443
- } else if (fullFork && data.git?.hasBundleAvailable && !data.git?.bundleDownloadUrl) {
444
- display += `⚠️ **Git bundle not available** (R2 storage may not be configured)\n\n`;
445
- } else if (fullFork && !data.git?.hasBundleAvailable) {
446
- display += `ℹ️ **No git bundle** for this session (no commits during broadcast)\n\n`;
447
- }
448
-
449
- display += `**View the story:**\n${data.storyUrl}\n\n`;
450
-
451
- if (!fullFork && data.git?.hasBundleAvailable) {
452
- display += `_💡 Want the actual code? Use \`vibe session fork ${sessionId} --full\`_`;
453
- } else if (!fullFork) {
454
- display += `_Learn from this session and build your own version!_`;
455
- }
456
-
457
- return { display };
458
-
459
- } catch (error) {
460
- return { display: `## Fork Error\n\n${error.message}` };
461
- }
462
- }
463
-
464
- return { display: 'Unknown action. Use: save, list, browse, view, or fork' };
465
- }
466
-
467
- module.exports = { definition, handler };