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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
//! Configuration-related MCP tool handlers

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

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

/// MCP tool for initializing a new workspace
pub struct InitWorkspaceTool;

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

    fn tool_description(&self) -> &str {
        "Initialize a new vibe workspace in the specified directory"
    }

    fn input_schema(&self) -> Value {
        json!({
            "type": "object",
            "properties": {
                "name": {
                    "type": "string",
                    "description": "Workspace name (defaults to directory name)"
                },
                "root": {
                    "type": "string",
                    "description": "Root directory for workspace (defaults to current directory)"
                }
            },
            "required": []
        })
    }

    async fn handle_call(
        &self,
        args: Value,
        workspace: Arc<Mutex<WorkspaceManager>>,
    ) -> Result<Value> {
        let name = args
            .get("name")
            .and_then(|v| v.as_str())
            .unwrap_or_else(|| {
                std::env::current_dir()
                    .ok()
                    .and_then(|p| p.file_name().map(|n| n.to_string_lossy().to_string()))
                    .unwrap_or_else(|| "workspace".to_string())
                    .leak()
            });

        let root = if let Some(root_str) = args.get("root").and_then(|v| v.as_str()) {
            PathBuf::from(root_str)
        } else {
            std::env::current_dir()?
        };

        let mut ws = workspace.lock().await;
        ws.init_workspace(name, &root).await?;

        Ok(json!({
            "status": "success",
            "workspace_name": name,
            "workspace_root": root.to_string_lossy()
        }))
    }
}

/// MCP tool for showing workspace configuration
pub struct ShowConfigTool;

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

    fn tool_description(&self) -> &str {
        "Show current workspace configuration"
    }

    fn input_schema(&self) -> Value {
        json!({
            "type": "object",
            "properties": {
                "format": {
                    "type": "string",
                    "description": "Output format",
                    "enum": ["yaml", "json", "pretty"],
                    "default": "yaml"
                },
                "section": {
                    "type": "string",
                    "description": "Show only a specific section",
                    "enum": ["workspace", "repositories", "groups", "apps", "claude_agents"]
                }
            },
            "required": []
        })
    }

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

        let section = args.get("section").and_then(|v| v.as_str());

        let ws = workspace.lock().await;

        // Instead of calling show_config which prints to stdout,
        // we'll get the config data directly and return it
        let config_data = match section {
            Some("workspace") => json!({
                "workspace": {
                    "name": &ws.config().workspace.name,
                    "root": ws.config().workspace.root.to_string_lossy()
                }
            }),
            Some("repositories") => json!({
                "repositories": ws.config().repositories
            }),
            Some("groups") => json!({
                "groups": ws.config().groups
            }),
            Some("apps") => json!({
                "apps": ws.config().apps
            }),
            Some("claude_agents") => json!({
                "claude_agents": ws.config().claude_agents
            }),
            Some(unknown_section) => {
                return Ok(json!({
                    "status": "error",
                    "message": format!("Unknown section: {}. Valid sections are: workspace, repositories, groups, apps, claude_agents", unknown_section)
                }));
            }
            None => {
                // Return full config
                serde_json::to_value(ws.config())?
            }
        };

        Ok(json!({
            "format": format,
            "configuration": config_data
        }))
    }
}

/// MCP tool for initializing workspace configuration
pub struct InitConfigTool;

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

    fn tool_description(&self) -> &str {
        "Initialize a new workspace configuration"
    }

    fn input_schema(&self) -> Value {
        json!({
            "type": "object",
            "properties": {
                "name": {
                    "type": "string",
                    "description": "Workspace name"
                },
                "root": {
                    "type": "string",
                    "description": "Workspace root directory"
                },
                "auto_discover": {
                    "type": "boolean",
                    "description": "Enable auto-discovery of repositories",
                    "default": false
                }
            },
            "required": []
        })
    }

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

        let mut ws = workspace.lock().await;
        ws.init_config(name, root.as_deref(), auto_discover).await?;

        Ok(json!({
            "status": "success",
            "message": "Workspace configuration initialized"
        }))
    }
}

/// MCP tool for validating workspace configuration
pub struct ValidateConfigTool;

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

    fn tool_description(&self) -> &str {
        "Validate workspace configuration"
    }

    fn input_schema(&self) -> Value {
        json!({
            "type": "object",
            "properties": {
                "check_paths": {
                    "type": "boolean",
                    "description": "Check if all repository paths exist",
                    "default": false
                },
                "check_remotes": {
                    "type": "boolean",
                    "description": "Check if all remote URLs are accessible",
                    "default": false
                },
                "check_apps": {
                    "type": "boolean",
                    "description": "Validate app integrations",
                    "default": false
                },
            },
            "required": []
        })
    }

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

        let check_remotes = args
            .get("check_remotes")
            .and_then(|v| v.as_bool())
            .unwrap_or(false);

        let check_apps = args
            .get("check_apps")
            .and_then(|v| v.as_bool())
            .unwrap_or(false);

        let ws = workspace.lock().await;

        // Run validation and collect results
        let mut issues = Vec::new();
        let mut warnings = Vec::new();

        // Basic config validation
        if ws.config().repositories.is_empty() {
            warnings.push("No repositories configured".to_string());
        }

        if check_paths {
            for repo in &ws.config().repositories {
                let repo_path = ws.get_workspace_root().join(&repo.path);
                if !repo_path.exists() {
                    issues.push(format!("Repository path not found: {}", repo.name));
                }
            }
        }

        // TODO: Add remote and app validation logic

        let is_valid = issues.is_empty();

        Ok(json!({
            "valid": is_valid,
            "issues": issues,
            "warnings": warnings,
            "checks_performed": {
                "basic": true,
                "paths": check_paths,
                "remotes": check_remotes,
                "apps": check_apps,
            }
        }))
    }
}

/// MCP tool for factory reset of configuration
pub struct ResetConfigTool;

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

    fn tool_description(&self) -> &str {
        "Factory reset - clear all configuration and reinitialize"
    }

    fn input_schema(&self) -> Value {
        json!({
            "type": "object",
            "properties": {
                "force": {
                    "type": "boolean",
                    "description": "Skip confirmation prompts",
                    "default": false
                }
            },
            "required": []
        })
    }

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

        let mut ws = workspace.lock().await;
        ws.factory_reset(force).await?;

        Ok(json!({
            "status": "success",
            "message": "Configuration has been reset to factory defaults"
        }))
    }
}

/// MCP tool for creating configuration backup
pub struct BackupConfigTool;

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

    fn tool_description(&self) -> &str {
        "Create backup archive of all configuration files"
    }

    fn input_schema(&self) -> Value {
        json!({
            "type": "object",
            "properties": {
                "output": {
                    "type": "string",
                    "description": "Output directory for backup file"
                },
                "name": {
                    "type": "string",
                    "description": "Custom backup name (default: timestamp)"
                }
            },
            "required": []
        })
    }

    async fn handle_call(
        &self,
        args: Value,
        workspace: Arc<Mutex<WorkspaceManager>>,
    ) -> Result<Value> {
        let output = args
            .get("output")
            .and_then(|v| v.as_str())
            .map(PathBuf::from);

        let name = args.get("name").and_then(|v| v.as_str()).map(String::from);

        let ws = workspace.lock().await;
        let backup_path = ws.create_backup(output, name).await?;

        Ok(json!({
            "status": "success",
            "backup_path": backup_path.to_string_lossy()
        }))
    }
}

/// MCP tool for restoring configuration from backup
pub struct RestoreConfigTool;

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

    fn tool_description(&self) -> &str {
        "Restore configuration from backup archive"
    }

    fn input_schema(&self) -> Value {
        json!({
            "type": "object",
            "properties": {
                "backup": {
                    "type": "string",
                    "description": "Backup file to restore from"
                },
                "force": {
                    "type": "boolean",
                    "description": "Skip confirmation prompts",
                    "default": false
                }
            },
            "required": []
        })
    }

    async fn handle_call(
        &self,
        args: Value,
        workspace: Arc<Mutex<WorkspaceManager>>,
    ) -> Result<Value> {
        let backup = args
            .get("backup")
            .and_then(|v| v.as_str())
            .map(PathBuf::from);

        let force = args.get("force").and_then(|v| v.as_bool()).unwrap_or(false);

        let mut ws = workspace.lock().await;
        ws.restore_from_backup(backup, force).await?;

        Ok(json!({
            "status": "success",
            "message": "Configuration restored from backup"
        }))
    }
}