magi-code 0.63.0

Repository-aware CLI coding agent for terminal work
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
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
use unicode_segmentation::UnicodeSegmentation;
use unicode_width::UnicodeWidthStr;

fn truncate_to_width(text: &str, width: usize) -> String {
    if width == 0 {
        return String::new();
    }
    if UnicodeWidthStr::width(text) <= width {
        return text.to_string();
    }
    let content_width = width.saturating_sub(1);
    let mut result = String::new();
    let mut used = 0;
    for grapheme in text.graphemes(true) {
        let next = used + UnicodeWidthStr::width(grapheme);
        if next > content_width {
            break;
        }
        result.push_str(grapheme);
        used = next;
    }
    result.push('');
    result
}
use std::path::{Path, PathBuf};

use ratatui::{
    buffer::Buffer,
    layout::{Constraint, Layout, Rect},
    style::{Color, Modifier, Style},
    text::Line,
    widgets::{Paragraph, StatefulWidget, Widget},
};
use ratatui_cheese::{
    field::ValidationKind,
    input::{Input, InputState},
    list::{List, ListItem, ListItemContext, ListState},
    select::{Select, SelectOption, SelectState},
};
use serde::{Deserialize, Serialize};

use crate::{config::McPaths, persistence::atomic_write};

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
struct WorkspaceStore {
    #[serde(default)]
    workspaces: Vec<PathBuf>,
}

fn workspaces_file(paths: &McPaths) -> PathBuf {
    paths.root.join("workspaces.json")
}

fn load_workspaces(paths: &McPaths) -> Vec<PathBuf> {
    std::fs::read_to_string(workspaces_file(paths))
        .ok()
        .and_then(|contents| serde_json::from_str::<WorkspaceStore>(&contents).ok())
        .map(|store| store.workspaces)
        .unwrap_or_default()
}

fn save_workspaces(paths: &McPaths, workspaces: &[PathBuf]) -> anyhow::Result<()> {
    let store = WorkspaceStore {
        workspaces: workspaces.to_vec(),
    };
    let json = serde_json::to_string_pretty(&store)?;
    if let Some(parent) = workspaces_file(paths).parent() {
        std::fs::create_dir_all(parent)?;
    }
    atomic_write(&workspaces_file(paths), json.as_bytes())?;
    Ok(())
}

fn expand_path(raw: &str) -> PathBuf {
    let trimmed = raw.trim();
    if trimmed == "~" {
        return dirs::home_dir().unwrap_or_else(|| PathBuf::from("~"));
    }
    if let Some(rest) = trimmed.strip_prefix("~/")
        && let Some(home) = dirs::home_dir()
    {
        return home.join(rest);
    }
    PathBuf::from(trimmed)
}

fn workspace_label(path: &Path) -> String {
    path.file_name()
        .and_then(|n| n.to_str())
        .unwrap_or("(unnamed)")
        .to_string()
}

// ---------------------------------------------------------------------------
// Git worktree detection
// ---------------------------------------------------------------------------

#[derive(Debug, Clone)]
struct WorktreeEntry {
    path: PathBuf,
    branch: Option<String>,
    is_default: bool,
}

fn detect_worktrees(path: &Path) -> Vec<WorktreeEntry> {
    // Check if path is inside a git work tree.
    let inside = std::process::Command::new("git")
        .args(["-C"])
        .arg(path)
        .args(["rev-parse", "--is-inside-work-tree"])
        .output();
    let Ok(output) = inside else {
        return Vec::new();
    };
    if !output.status.success() || String::from_utf8_lossy(&output.stdout).trim() != "true" {
        return Vec::new();
    }

    // `git worktree list --porcelain` returns blocks separated by blank lines.
    let list = std::process::Command::new("git")
        .args(["-C"])
        .arg(path)
        .args(["worktree", "list", "--porcelain"])
        .output();
    let Ok(output) = list else { return Vec::new() };
    if !output.status.success() {
        return Vec::new();
    }

    let text = String::from_utf8_lossy(&output.stdout);
    let mut entries = Vec::new();
    for (i, block) in text.split("\n\n").enumerate() {
        let mut wt_path = None;
        let mut branch = None;
        for line in block.lines() {
            if let Some(p) = line.strip_prefix("worktree ") {
                wt_path = Some(PathBuf::from(p));
            } else if let Some(b) = line.strip_prefix("branch ") {
                branch = Some(b.trim_start_matches("refs/heads/").to_string());
            }
        }
        if let Some(path) = wt_path {
            entries.push(WorktreeEntry {
                path,
                branch,
                is_default: i == 0,
            });
        }
    }
    entries
}

// ---------------------------------------------------------------------------
// Cheese list item for worktrees
// ---------------------------------------------------------------------------

struct WorktreeItem {
    label: String,
    branch: Option<String>,
    is_default: bool,
}

impl WorktreeItem {
    fn new(entry: &WorktreeEntry) -> Self {
        let label = entry
            .path
            .file_name()
            .and_then(|n| n.to_str())
            .unwrap_or("(unknown)")
            .to_string();
        Self {
            label,
            branch: entry.branch.clone(),
            is_default: entry.is_default,
        }
    }
}

impl ListItem for WorktreeItem {
    fn height(&self) -> u16 {
        2
    }

    fn render(&self, area: Rect, buf: &mut Buffer, ctx: &ListItemContext) {
        let accent = Color::LightBlue;
        let selected_bg = Color::Rgb(35, 35, 60);

        // Fill background for selected row (both rows since height=2)
        if ctx.selected {
            for y in area.y..area.y + area.height {
                for x in area.x..area.x + area.width {
                    if let Some(cell) = buf.cell_mut(ratatui::layout::Position::new(x, y)) {
                        cell.set_bg(selected_bg);
                    }
                }
            }
        }

        let prefix = if self.is_default { "* " } else { "  " };
        let label_style = if ctx.selected {
            Style::default()
                .fg(accent)
                .add_modifier(Modifier::BOLD)
                .bg(selected_bg)
        } else {
            Style::default().fg(Color::Gray)
        };

        // Row 1: name/branch, truncated to fit container width
        let left = match &self.branch {
            Some(b) => format!("{prefix}{}  {b}", self.label),
            None => format!("{prefix}{}", self.label),
        };
        let display = truncate_to_width(&left, area.width as usize);
        buf.set_string(area.x, area.y, &display, label_style);
    }
}

// ---------------------------------------------------------------------------
// Workspace views
// ---------------------------------------------------------------------------

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum WorkspaceView {
    Empty,
    AddingPath,
    Selector,
    Loaded,
}

pub struct WorkspaceState {
    pub view: WorkspaceView,
    workspaces: Vec<PathBuf>,
    input_state: InputState,
    select_state: SelectState,
    loaded_index: Option<usize>,
    paths: McPaths,
    // Loaded-workspace state
    worktrees: Vec<WorktreeEntry>,
    worktree_list_state: ListState,
    sidebar_collapsed: bool,
    sidebar_can_expand: bool,
}

impl WorkspaceState {
    pub fn new(paths: McPaths) -> Self {
        let workspaces = load_workspaces(&paths);
        let view = if workspaces.is_empty() {
            WorkspaceView::Empty
        } else {
            WorkspaceView::Selector
        };
        let select_state = SelectState::new(workspaces.len());
        Self {
            view,
            workspaces,
            input_state: InputState::new(),
            select_state,
            loaded_index: None,
            paths,
            worktrees: Vec::new(),
            worktree_list_state: ListState::new(0),
            sidebar_collapsed: false,
            sidebar_can_expand: false,
        }
    }

    /// Returns true if the key was consumed by workspace.
    pub fn handle_key(&mut self, code: crossterm::event::KeyCode) -> bool {
        use crossterm::event::KeyCode;

        match self.view {
            WorkspaceView::Empty => match code {
                KeyCode::Char('a') | KeyCode::Enter => {
                    self.start_add();
                    true
                }
                _ => false,
            },
            WorkspaceView::AddingPath => match code {
                KeyCode::Esc => {
                    self.cancel_add();
                    true
                }
                KeyCode::Enter => {
                    self.submit_path();
                    true
                }
                KeyCode::Char(c) => {
                    self.input_state.insert_char(c);
                    true
                }
                KeyCode::Backspace => {
                    self.input_state.delete_before();
                    true
                }
                KeyCode::Delete => {
                    self.input_state.delete_at();
                    true
                }
                KeyCode::Left => {
                    self.input_state.move_left();
                    true
                }
                KeyCode::Right => {
                    self.input_state.move_right();
                    true
                }
                KeyCode::Home => {
                    self.input_state.home();
                    true
                }
                KeyCode::End => {
                    self.input_state.end();
                    true
                }
                _ => true,
            },
            WorkspaceView::Selector => match code {
                KeyCode::Down | KeyCode::Char('j') => {
                    self.select_state.next();
                    true
                }
                KeyCode::Up | KeyCode::Char('k') => {
                    self.select_state.prev();
                    true
                }
                KeyCode::Enter => {
                    self.load_selected();
                    true
                }
                KeyCode::Char('a') => {
                    self.start_add();
                    true
                }
                _ => false,
            },
            WorkspaceView::Loaded => match code {
                KeyCode::Esc => {
                    self.loaded_index = None;
                    self.view = if self.workspaces.is_empty() {
                        WorkspaceView::Empty
                    } else {
                        WorkspaceView::Selector
                    };
                    true
                }
                KeyCode::Backspace => {
                    self.loaded_index = None;
                    self.view = if self.workspaces.is_empty() {
                        WorkspaceView::Empty
                    } else {
                        WorkspaceView::Selector
                    };
                    true
                }
                // Sidebar collapse/expand toggle (only if it can expand = is a repo)
                KeyCode::Char('c') if self.sidebar_can_expand => {
                    self.sidebar_collapsed = !self.sidebar_collapsed;
                    true
                }
                // Worktree list navigation (only when sidebar is expanded)
                KeyCode::Down | KeyCode::Char('j')
                    if !self.sidebar_collapsed && self.worktrees.len() > 1 =>
                {
                    self.worktree_list_state
                        .select_next(self.worktrees.len(), false);
                    true
                }
                KeyCode::Up | KeyCode::Char('k')
                    if !self.sidebar_collapsed && self.worktrees.len() > 1 =>
                {
                    self.worktree_list_state
                        .select_prev(self.worktrees.len(), false);
                    true
                }
                _ => false,
            },
        }
    }

    fn start_add(&mut self) {
        self.input_state.set_value(String::new());
        self.input_state.set_validation(None);
        self.input_state.set_focused(true);
        self.view = WorkspaceView::AddingPath;
    }

    fn cancel_add(&mut self) {
        self.input_state.set_focused(false);
        self.view = if self.workspaces.is_empty() {
            WorkspaceView::Empty
        } else {
            WorkspaceView::Selector
        };
    }

    fn submit_path(&mut self) {
        let raw = self.input_state.value().to_string();
        let path = expand_path(&raw);

        if !path.exists() {
            self.input_state.set_validation(Some((
                ValidationKind::Error,
                format!("Path does not exist: {}", path.display()),
            )));
            return;
        }
        if !path.is_dir() {
            self.input_state.set_validation(Some((
                ValidationKind::Error,
                "Path is not a directory".to_string(),
            )));
            return;
        }

        let canonical = path.canonicalize().unwrap_or(path);
        if !self.workspaces.contains(&canonical) {
            self.workspaces.push(canonical);
            let _ = save_workspaces(&self.paths, &self.workspaces);
        }

        let labels: Vec<String> = self.workspaces.iter().map(|p| workspace_label(p)).collect();
        let opts: Vec<SelectOption> = labels
            .iter()
            .map(|l| SelectOption::new(l.as_str()))
            .collect();
        self.select_state.sync_options(&opts);

        self.input_state.set_focused(false);
        self.view = WorkspaceView::Selector;
    }

    fn load_selected(&mut self) {
        if self.workspaces.is_empty() {
            return;
        }
        let idx = self.select_state.selected();
        let path = self.workspaces[idx].clone();

        // Detect worktrees for this workspace
        let worktrees = detect_worktrees(&path);
        let is_repo = !worktrees.is_empty();
        self.worktrees = worktrees;
        self.sidebar_can_expand = is_repo;
        // Collapse sidebar if not a repo; otherwise start expanded
        self.sidebar_collapsed = !is_repo;
        self.worktree_list_state = ListState::new(if is_repo { self.worktrees.len() } else { 0 });

        self.loaded_index = Some(idx);
        self.view = WorkspaceView::Loaded;
    }

    pub fn render(&mut self, area: Rect, buf: &mut Buffer) {
        match self.view {
            WorkspaceView::Empty => self.render_empty(area, buf),
            WorkspaceView::AddingPath => self.render_adding_path(area, buf),
            WorkspaceView::Selector => self.render_selector(area, buf),
            WorkspaceView::Loaded => self.render_loaded(area, buf),
        }
    }

    fn render_empty(&self, area: Rect, buf: &mut Buffer) {
        let dim = Style::default().fg(Color::DarkGray);
        let accent = Style::default().fg(Color::LightBlue);

        let lines = vec![
            Line::styled("No workspaces yet", accent.add_modifier(Modifier::BOLD)),
            Line::styled("", dim),
            Line::styled("Press 'a' or Enter to add your first workspace.", dim),
            Line::styled(
                "A workspace is a folder or git repository on your machine.",
                dim,
            ),
        ];

        let paragraph = Paragraph::new(lines).alignment(ratatui::layout::Alignment::Center);
        let centered = center_rect(area, 60, 30);
        Widget::render(&paragraph, centered, buf);
    }

    fn render_adding_path(&mut self, area: Rect, buf: &mut Buffer) {
        let input = Input::new("Add Workspace")
            .description("Enter the absolute path to a folder or git repository")
            .placeholder("~/Dev/my-project")
            .prompt("\u{2192}");
        let centered = center_rect(area, 60, 20);
        StatefulWidget::render(&input, centered, buf, &mut self.input_state);
    }

    fn render_selector(&mut self, area: Rect, buf: &mut Buffer) {
        let centered = center_rect(area, 60, 40);
        let labels: Vec<String> = self.workspaces.iter().map(|p| workspace_label(p)).collect();
        let opts: Vec<SelectOption> = labels
            .iter()
            .map(|l| SelectOption::new(l.as_str()))
            .collect();
        let select = Select::new("Select Workspace", &opts)
            .description("Choose a workspace to load")
            .cursor_indicator("\u{2192}");
        StatefulWidget::render(&select, centered, buf, &mut self.select_state);

        let hint = "Press 'a' to add another workspace";
        let hint_y = area.bottom().saturating_sub(1);
        if hint_y > area.y {
            let hint_style = Style::default().fg(Color::DarkGray);
            buf.set_string(area.x, hint_y, hint, hint_style);
        }
    }

    fn render_loaded(&mut self, area: Rect, buf: &mut Buffer) {
        let idx = self.loaded_index.unwrap_or(0);
        let path = self.workspaces[idx].clone();
        let name = workspace_label(&path);

        // Layout: [sidebar | gap | main]
        let (sidebar_area, main_area) = if self.sidebar_collapsed {
            let [_, main] =
                Layout::horizontal([Constraint::Length(0), Constraint::Fill(1)]).areas(area);
            (Rect::default(), main)
        } else {
            let [sidebar, _gap, main] = Layout::horizontal([
                Constraint::Percentage(16),
                Constraint::Length(1),
                Constraint::Fill(1),
            ])
            .areas(area);
            (sidebar, main)
        };

        // Sidebar: worktree list with border
        if !self.sidebar_collapsed && self.sidebar_can_expand {
            let block = ratatui::widgets::Block::default()
                .borders(ratatui::widgets::Borders::ALL)
                .border_style(Style::default().fg(Color::Rgb(50, 50, 80)))
                .title(Line::styled(
                    " Worktrees ",
                    Style::default()
                        .fg(Color::LightBlue)
                        .add_modifier(Modifier::BOLD),
                ));
            let inner = block.inner(sidebar_area);
            Widget::render(&block, sidebar_area, buf);
            self.render_sidebar(inner, buf);
        }

        // Main area: placeholder
        let lines = vec![
            Line::styled(
                format!("Workspace: {name}"),
                Style::default()
                    .fg(Color::LightBlue)
                    .add_modifier(Modifier::BOLD),
            ),
            Line::styled(
                format!("cwd: {}", path.display()),
                Style::default().fg(Color::Gray),
            ),
            Line::styled("", Style::default()),
            Line::styled(
                "This is where workspace content will appear.",
                Style::default().fg(Color::DarkGray),
            ),
        ];
        let main = Paragraph::new(lines);
        Widget::render(&main, main_area, buf);

        // Bottom hint
        let hint = if self.sidebar_can_expand {
            if self.sidebar_collapsed {
                "press 'c' to expand worktrees"
            } else {
                "press 'c' to collapse worktrees | j/k navigate"
            }
        } else {
            "not a git repository"
        };
        let hint_y = area.bottom().saturating_sub(1);
        if hint_y > area.y {
            buf.set_string(area.x, hint_y, hint, Style::default().fg(Color::DarkGray));
        }
    }

    fn render_sidebar(&mut self, area: Rect, buf: &mut Buffer) {
        let dim = Style::default().fg(Color::DarkGray);

        let items: Vec<WorktreeItem> = self.worktrees.iter().map(WorktreeItem::new).collect();
        if items.is_empty() {
            buf.set_string(area.x, area.y, "No worktrees", dim);
            return;
        }

        let list = List::new(&items)
            .selection_indicator("\u{203a}")
            .item_spacing(0);
        StatefulWidget::render(&list, area, buf, &mut self.worktree_list_state);
    }
}
fn center_rect(area: Rect, percent_x: u16, percent_y: u16) -> Rect {
    let pop_w = area.width.saturating_mul(percent_x) / 100;
    let pop_h = area.height.saturating_mul(percent_y) / 100;
    let x = area.x + (area.width.saturating_sub(pop_w)) / 2;
    let y = area.y + (area.height.saturating_sub(pop_h)) / 2;
    Rect::new(x, y, pop_w, pop_h)
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn truncate_to_width_respects_unicode_display_cells() {
        for (text, width) in [
            ("ascii label", 5),
            ("日本語", 4),
            ("e\u{301}clair", 3),
            ("👩‍💻 developer", 4),
        ] {
            let truncated = truncate_to_width(text, width);
            assert!(UnicodeWidthStr::width(truncated.as_str()) <= width);
            assert!(!truncated.contains('\u{fffd}'));
        }
        assert_eq!(truncate_to_width("日本語", 0), "");
        assert_eq!(truncate_to_width("日本語", 1), "");
        assert_eq!(truncate_to_width("ascii", 4), "asc…");
        assert_eq!(truncate_to_width("e\u{301}clair", 3), "e\u{301}c…");
        assert_eq!(truncate_to_width("👩‍💻 developer", 3), "👩‍💻…");
    }
}