vibe-workspace 0.0.12

Extremely lightweight CLI for managing multiple git repositories and workspace configurations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
//! App management MCP tool handlers

use anyhow::Result;
use async_trait::async_trait;
use serde_json::{json, Value};
use std::sync::Arc;
use tokio::sync::Mutex;

use crate::mcp::types::VibeToolHandler;
use crate::workspace::WorkspaceManager;

/// MCP tool for configuring an app for a repository
pub struct ConfigureAppTool;

#[async_trait]
impl VibeToolHandler for ConfigureAppTool {
    fn tool_name(&self) -> &str {
        "configure_app"
    }

    fn tool_description(&self) -> &str {
        "Configure app integration for a repository"
    }

    fn input_schema(&self) -> Value {
        json!({
            "type": "object",
            "properties": {
                "repo": {
                    "type": "string",
                    "description": "Repository name"
                },
                "app": {
                    "type": "string",
                    "description": "App to configure (warp, iterm2, vscode, wezterm, cursor, windsurf)",
                    "enum": ["warp", "iterm2", "vscode", "wezterm", "cursor", "windsurf"]
                },
                "template": {
                    "type": "string",
                    "description": "Template to use",
                    "default": "default"
                }
            },
            "required": ["repo", "app"]
        })
    }

    async fn handle_call(
        &self,
        args: Value,
        workspace: Arc<Mutex<WorkspaceManager>>,
    ) -> Result<Value> {
        let repo = args
            .get("repo")
            .and_then(|v| v.as_str())
            .ok_or_else(|| anyhow::anyhow!("Repository name is required"))?;

        let app = args
            .get("app")
            .and_then(|v| v.as_str())
            .ok_or_else(|| anyhow::anyhow!("App name is required"))?;

        let template = args
            .get("template")
            .and_then(|v| v.as_str())
            .unwrap_or("default");

        let mut ws = workspace.lock().await;
        ws.configure_app_for_repo(repo, app, template).await?;

        Ok(json!({
            "status": "success",
            "repository": repo,
            "app": app,
            "template": template
        }))
    }
}

/// MCP tool for showing app configurations
pub struct ShowAppsTool;

#[async_trait]
impl VibeToolHandler for ShowAppsTool {
    fn tool_name(&self) -> &str {
        "show_apps"
    }

    fn tool_description(&self) -> &str {
        "Show app configurations for repositories"
    }

    fn input_schema(&self) -> Value {
        json!({
            "type": "object",
            "properties": {
                "repo": {
                    "type": "string",
                    "description": "Filter by repository name"
                },
                "app": {
                    "type": "string",
                    "description": "Filter by app name"
                }
            },
            "required": []
        })
    }

    async fn handle_call(
        &self,
        args: Value,
        workspace: Arc<Mutex<WorkspaceManager>>,
    ) -> Result<Value> {
        let repo_filter = args.get("repo").and_then(|v| v.as_str());
        let app_filter = args.get("app").and_then(|v| v.as_str());

        let ws = workspace.lock().await;

        if let Some(repo_name) = repo_filter {
            // Show apps for specific repository
            let apps = ws.list_apps_for_repo(repo_name)?;
            Ok(json!({
                "repository": repo_name,
                "apps": apps.into_iter().map(|(app, template)| {
                    json!({
                        "app": app,
                        "template": template
                    })
                }).collect::<Vec<_>>()
            }))
        } else if let Some(app_name) = app_filter {
            // Show repositories with specific app
            let repos = ws.list_repos_with_app(app_name);
            Ok(json!({
                "app": app_name,
                "repositories": repos.into_iter().map(|(repo, template)| {
                    json!({
                        "repository": repo.name,
                        "template": template
                    })
                }).collect::<Vec<_>>()
            }))
        } else {
            // Show all app configurations
            let mut all_configs = Vec::new();
            for repo in ws.list_repositories() {
                let apps = ws.list_apps_for_repo(&repo.name)?;
                if !apps.is_empty() {
                    all_configs.push(json!({
                        "repository": repo.name,
                        "apps": apps.into_iter().map(|(app, template)| {
                            json!({
                                "app": app,
                                "template": template
                            })
                        }).collect::<Vec<_>>()
                    }));
                }
            }
            Ok(json!({
                "configurations": all_configs
            }))
        }
    }
}

/// MCP tool for listing app templates
pub struct ListAppTemplatesTool;

#[async_trait]
impl VibeToolHandler for ListAppTemplatesTool {
    fn tool_name(&self) -> &str {
        "list_app_templates"
    }

    fn tool_description(&self) -> &str {
        "List available templates for an app"
    }

    fn input_schema(&self) -> Value {
        json!({
            "type": "object",
            "properties": {
                "app": {
                    "type": "string",
                    "description": "App to list templates for",
                    "enum": ["warp", "iterm2", "vscode", "wezterm", "cursor", "windsurf"]
                }
            },
            "required": ["app"]
        })
    }

    async fn handle_call(
        &self,
        args: Value,
        workspace: Arc<Mutex<WorkspaceManager>>,
    ) -> Result<Value> {
        let app = args
            .get("app")
            .and_then(|v| v.as_str())
            .ok_or_else(|| anyhow::anyhow!("App name is required"))?;

        let ws = workspace.lock().await;
        let templates = ws.list_templates(app).await?;

        Ok(json!({
            "app": app,
            "templates": templates
        }))
    }
}

/// MCP tool for creating app templates
pub struct CreateAppTemplateTool;

#[async_trait]
impl VibeToolHandler for CreateAppTemplateTool {
    fn tool_name(&self) -> &str {
        "create_app_template"
    }

    fn tool_description(&self) -> &str {
        "Create a new template for an app"
    }

    fn input_schema(&self) -> Value {
        json!({
            "type": "object",
            "properties": {
                "app": {
                    "type": "string",
                    "description": "App to create template for",
                    "enum": ["warp", "iterm2", "vscode", "wezterm", "cursor", "windsurf"]
                },
                "name": {
                    "type": "string",
                    "description": "Template name"
                },
                "content": {
                    "type": "string",
                    "description": "Template content (if not provided, uses default as base)"
                }
            },
            "required": ["app", "name"]
        })
    }

    async fn handle_call(
        &self,
        args: Value,
        workspace: Arc<Mutex<WorkspaceManager>>,
    ) -> Result<Value> {
        let app = args
            .get("app")
            .and_then(|v| v.as_str())
            .ok_or_else(|| anyhow::anyhow!("App name is required"))?;

        let name = args
            .get("name")
            .and_then(|v| v.as_str())
            .ok_or_else(|| anyhow::anyhow!("Template name is required"))?;

        let content = if let Some(content_str) = args.get("content").and_then(|v| v.as_str()) {
            content_str.to_string()
        } else {
            // Use default template as base
            let ws = workspace.lock().await;
            ws.get_default_template(app).await?
        };

        let ws = workspace.lock().await;
        ws.save_template(app, name, &content).await?;

        Ok(json!({
            "status": "success",
            "app": app,
            "template": name
        }))
    }
}

/// MCP tool for deleting app templates
pub struct DeleteAppTemplateTool;

#[async_trait]
impl VibeToolHandler for DeleteAppTemplateTool {
    fn tool_name(&self) -> &str {
        "delete_app_template"
    }

    fn tool_description(&self) -> &str {
        "Delete a template from an app"
    }

    fn input_schema(&self) -> Value {
        json!({
            "type": "object",
            "properties": {
                "app": {
                    "type": "string",
                    "description": "App to delete template from",
                    "enum": ["warp", "iterm2", "vscode", "wezterm", "cursor", "windsurf"]
                },
                "name": {
                    "type": "string",
                    "description": "Template name to delete"
                }
            },
            "required": ["app", "name"]
        })
    }

    async fn handle_call(
        &self,
        args: Value,
        workspace: Arc<Mutex<WorkspaceManager>>,
    ) -> Result<Value> {
        let app = args
            .get("app")
            .and_then(|v| v.as_str())
            .ok_or_else(|| anyhow::anyhow!("App name is required"))?;

        let name = args
            .get("name")
            .and_then(|v| v.as_str())
            .ok_or_else(|| anyhow::anyhow!("Template name is required"))?;

        let ws = workspace.lock().await;
        ws.delete_template(app, name).await?;

        Ok(json!({
            "status": "success",
            "app": app,
            "deleted_template": name
        }))
    }
}

/// MCP tool for updating default templates
pub struct UpdateDefaultTemplatesTool;

#[async_trait]
impl VibeToolHandler for UpdateDefaultTemplatesTool {
    fn tool_name(&self) -> &str {
        "update_default_templates"
    }

    fn tool_description(&self) -> &str {
        "Update default templates with current bundled versions"
    }

    fn input_schema(&self) -> Value {
        json!({
            "type": "object",
            "properties": {
                "app": {
                    "type": "string",
                    "description": "Only update specific app's default template",
                    "enum": ["warp", "iterm2", "vscode", "wezterm", "cursor", "windsurf"]
                },
                "force": {
                    "type": "boolean",
                    "description": "Skip confirmation prompt",
                    "default": false
                }
            },
            "required": []
        })
    }

    async fn handle_call(
        &self,
        args: Value,
        workspace: Arc<Mutex<WorkspaceManager>>,
    ) -> Result<Value> {
        let app = args.get("app").and_then(|v| v.as_str());
        let force = args.get("force").and_then(|v| v.as_bool()).unwrap_or(false);

        let apps_to_update = if let Some(app_name) = app {
            vec![app_name.to_string()]
        } else {
            vec![
                "warp".to_string(),
                "iterm2".to_string(),
                "wezterm".to_string(),
                "vscode".to_string(),
                "cursor".to_string(),
                "windsurf".to_string(),
            ]
        };

        // Note: In the actual CLI, this prompts for confirmation unless force is true
        // For MCP, we'll require explicit force flag to proceed
        if !force {
            return Ok(json!({
                "status": "confirmation_required",
                "message": "This will overwrite existing default templates. Use force=true to proceed.",
                "apps_to_update": apps_to_update
            }));
        }

        let ws = workspace.lock().await;
        ws.update_default_templates(apps_to_update.clone()).await?;

        Ok(json!({
            "status": "success",
            "updated_apps": apps_to_update
        }))
    }
}