toolpath-gemini 0.3.0

Derive Toolpath provenance documents from Gemini CLI conversation logs
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
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
//! Filesystem layout for Gemini CLI conversation logs.
//!
//! Gemini CLI stores per-project chat logs under `~/.gemini/tmp/<slot>/`,
//! where `<slot>` is either the friendly project name from
//! `~/.gemini/projects.json` or the SHA-256 hex of the absolute project
//! path. Both are supported: the resolver prefers the friendly name when
//! it exists on disk, and falls back to the hash otherwise.

use crate::error::{ConvoError, Result};
use serde::Deserialize;
use sha2::{Digest, Sha256};
use std::collections::HashMap;
use std::fs;
use std::path::{Path, PathBuf};

const PROJECTS_FILE: &str = "projects.json";
const TMP_DIR: &str = "tmp";
const CHATS_SUBDIR: &str = "chats";
const LOGS_FILE: &str = "logs.json";

#[derive(Debug, Clone)]
pub struct PathResolver {
    home_dir: Option<PathBuf>,
    gemini_dir: Option<PathBuf>,
}

impl Default for PathResolver {
    fn default() -> Self {
        Self::new()
    }
}

impl PathResolver {
    pub fn new() -> Self {
        Self {
            home_dir: dirs::home_dir(),
            gemini_dir: None,
        }
    }

    pub fn with_home<P: Into<PathBuf>>(mut self, home: P) -> Self {
        self.home_dir = Some(home.into());
        self
    }

    pub fn with_gemini_dir<P: Into<PathBuf>>(mut self, gemini_dir: P) -> Self {
        self.gemini_dir = Some(gemini_dir.into());
        self
    }

    pub fn home_dir(&self) -> Result<&Path> {
        self.home_dir.as_deref().ok_or(ConvoError::NoHomeDirectory)
    }

    pub fn gemini_dir(&self) -> Result<PathBuf> {
        if let Some(d) = &self.gemini_dir {
            return Ok(d.clone());
        }
        Ok(self.home_dir()?.join(".gemini"))
    }

    pub fn projects_file(&self) -> Result<PathBuf> {
        Ok(self.gemini_dir()?.join(PROJECTS_FILE))
    }

    pub fn tmp_dir(&self) -> Result<PathBuf> {
        Ok(self.gemini_dir()?.join(TMP_DIR))
    }

    /// Absolute path to the project slot directory under `tmp/`.
    ///
    /// Looks up `project_path` in `projects.json` for its friendly name
    /// first; if that directory doesn't exist, falls back to
    /// `tmp/<sha256(project_path)>/`. The returned path may not exist
    /// yet — callers decide how to handle that.
    pub fn project_dir(&self, project_path: &str) -> Result<PathBuf> {
        let tmp = self.tmp_dir()?;

        if let Some(friendly) = self.friendly_name_for(project_path)? {
            let candidate = tmp.join(&friendly);
            if candidate.exists() {
                return Ok(candidate);
            }
        }

        // Fall back to the SHA-256 slot.
        let hashed = project_hash(project_path);
        let candidate = tmp.join(&hashed);
        if candidate.exists() {
            return Ok(candidate);
        }

        // If neither exists, try the friendly name anyway (the caller
        // may intend to create the directory) — otherwise return the
        // hash path as a stable default.
        if let Some(friendly) = self.friendly_name_for(project_path)? {
            return Ok(tmp.join(friendly));
        }
        Ok(candidate)
    }

    pub fn chats_dir(&self, project_path: &str) -> Result<PathBuf> {
        Ok(self.project_dir(project_path)?.join(CHATS_SUBDIR))
    }

    pub fn session_dir(&self, project_path: &str, session_uuid: &str) -> Result<PathBuf> {
        Ok(self.chats_dir(project_path)?.join(session_uuid))
    }

    pub fn chat_file(
        &self,
        project_path: &str,
        session_uuid: &str,
        chat_name: &str,
    ) -> Result<PathBuf> {
        let stem = if chat_name.ends_with(".json") {
            chat_name.to_string()
        } else {
            format!("{}.json", chat_name)
        };
        Ok(self.session_dir(project_path, session_uuid)?.join(stem))
    }

    pub fn logs_file(&self, project_path: &str) -> Result<PathBuf> {
        Ok(self.project_dir(project_path)?.join(LOGS_FILE))
    }

    /// Read `projects.json` and reverse-lookup a friendly name for the
    /// given absolute project path.
    pub fn friendly_name_for(&self, project_path: &str) -> Result<Option<String>> {
        let file = match self.projects_file() {
            Ok(p) if p.exists() => p,
            _ => return Ok(None),
        };
        let bytes = fs::read(&file)?;
        let projects: ProjectsFile = match serde_json::from_slice(&bytes) {
            Ok(p) => p,
            Err(_) => return Ok(None),
        };
        Ok(projects.projects.get(project_path).cloned())
    }

    /// Return every project path known to Gemini: the union of
    /// `projects.json` keys and any project slots present under `tmp/`
    /// that have a `.project_root` marker.
    pub fn list_project_dirs(&self) -> Result<Vec<String>> {
        let mut paths: Vec<String> = Vec::new();
        let mut seen = std::collections::HashSet::new();

        // projects.json entries.
        if let Ok(file) = self.projects_file()
            && file.exists()
            && let Ok(bytes) = fs::read(&file)
            && let Ok(projects) = serde_json::from_slice::<ProjectsFile>(&bytes)
        {
            for key in projects.projects.keys() {
                if seen.insert(key.clone()) {
                    paths.push(key.clone());
                }
            }
        }

        // `.project_root` markers under tmp/.
        if let Ok(tmp) = self.tmp_dir()
            && tmp.exists()
        {
            for entry in fs::read_dir(&tmp)?.flatten() {
                if entry.file_type().ok().is_some_and(|ft| ft.is_dir()) {
                    let marker = entry.path().join(".project_root");
                    if marker.exists()
                        && let Ok(text) = fs::read_to_string(&marker)
                    {
                        let p = text.trim().to_string();
                        if !p.is_empty() && seen.insert(p.clone()) {
                            paths.push(p);
                        }
                    }
                }
            }
        }

        paths.sort();
        Ok(paths)
    }

    /// List sessions under a project's `chats/` directory.
    ///
    /// A session is either a top-level `session-*.json` main-chat file
    /// (listed by its file stem) or an orphan `<uuid>/` directory that
    /// has no corresponding main file (listed by the dir name).
    ///
    /// When both a `session-*.json` *and* a `<uuid>/` dir point at the
    /// same `sessionId`, the UUID dir is considered the main file's
    /// sub-agent bucket and is **not** surfaced as a separate session —
    /// it gets merged into the main session by `read_session`.
    pub fn list_sessions(&self, project_path: &str) -> Result<Vec<String>> {
        let chats = match self.chats_dir(project_path) {
            Ok(p) => p,
            Err(_) => return Ok(Vec::new()),
        };
        if !chats.exists() {
            return Ok(Vec::new());
        }

        let mut main_stems: Vec<String> = Vec::new();
        let mut main_session_uuids: std::collections::HashSet<String> = Default::default();
        let mut dir_uuids: Vec<String> = Vec::new();

        for entry in fs::read_dir(&chats)?.flatten() {
            let ft = match entry.file_type() {
                Ok(ft) => ft,
                Err(_) => continue,
            };
            let path = entry.path();
            if ft.is_file() {
                if path.extension().and_then(|s| s.to_str()) != Some("json") {
                    continue;
                }
                let stem = match path.file_stem().and_then(|s| s.to_str()) {
                    Some(s) => s.to_string(),
                    None => continue,
                };
                main_stems.push(stem);
                if let Some(uuid) = peek_session_id(&path) {
                    main_session_uuids.insert(uuid);
                }
            } else if ft.is_dir()
                && let Some(name) = entry.file_name().to_str()
            {
                dir_uuids.push(name.to_string());
            }
        }

        let mut out = main_stems;
        for uuid in dir_uuids {
            if !main_session_uuids.contains(&uuid) {
                out.push(uuid);
            }
        }
        out.sort();
        Ok(out)
    }

    /// List just the top-level main session file stems (no UUID dirs).
    pub fn list_main_session_stems(&self, project_path: &str) -> Result<Vec<String>> {
        let chats = match self.chats_dir(project_path) {
            Ok(p) => p,
            Err(_) => return Ok(Vec::new()),
        };
        if !chats.exists() {
            return Ok(Vec::new());
        }
        let mut out = Vec::new();
        for entry in fs::read_dir(&chats)?.flatten() {
            let path = entry.path();
            if path.is_file()
                && path.extension().and_then(|s| s.to_str()) == Some("json")
                && let Some(stem) = path.file_stem().and_then(|s| s.to_str())
            {
                out.push(stem.to_string());
            }
        }
        out.sort();
        Ok(out)
    }

    /// Path to a main session JSON at the top of `chats/`.
    pub fn main_session_file(&self, project_path: &str, stem: &str) -> Result<PathBuf> {
        let name = if stem.ends_with(".json") {
            stem.to_string()
        } else {
            format!("{}.json", stem)
        };
        Ok(self.chats_dir(project_path)?.join(name))
    }

    /// Locate a main chat file whose *identity* (either the filename stem
    /// or the inner `sessionId` field) matches `session_id`.
    ///
    /// This mirrors how Gemini CLI itself resolves `--resume <id>`: it
    /// accepts both the on-disk stem (e.g. `session-2026-04-17T18-09-b26d7f99`)
    /// and the full session UUID (which lives inside the file as
    /// `"sessionId"`). Returns `Ok(None)` if nothing matches.
    ///
    /// Does *not* consider UUID subdirectories — those are handled
    /// separately in [`crate::ConvoIO::read_session`] as an orphan
    /// sub-agent bucket.
    pub fn resolve_main_file(
        &self,
        project_path: &str,
        session_id: &str,
    ) -> Result<Option<PathBuf>> {
        // Fast path: direct stem match at chats/<session_id>.json.
        let direct = self.main_session_file(project_path, session_id)?;
        if direct.exists() {
            return Ok(Some(direct));
        }

        // Fallback: scan chats/*.json and match on inner sessionId.
        let chats = match self.chats_dir(project_path) {
            Ok(p) => p,
            Err(_) => return Ok(None),
        };
        if !chats.exists() {
            return Ok(None);
        }
        for entry in fs::read_dir(&chats)?.flatten() {
            let p = entry.path();
            if !p.is_file() || p.extension().and_then(|s| s.to_str()) != Some("json") {
                continue;
            }
            if let Some(inner) = peek_session_id(&p)
                && inner == session_id
            {
                return Ok(Some(p));
            }
        }
        Ok(None)
    }

    /// List chat file stems in a session directory (without `.json`).
    pub fn list_chat_files(&self, project_path: &str, session_uuid: &str) -> Result<Vec<String>> {
        let dir = match self.session_dir(project_path, session_uuid) {
            Ok(p) => p,
            Err(_) => return Ok(Vec::new()),
        };
        if !dir.exists() {
            return Ok(Vec::new());
        }
        let mut stems: Vec<String> = Vec::new();
        for entry in fs::read_dir(&dir)?.flatten() {
            let path = entry.path();
            if path.extension().and_then(|s| s.to_str()) == Some("json")
                && let Some(stem) = path.file_stem().and_then(|s| s.to_str())
            {
                stems.push(stem.to_string());
            }
        }
        stems.sort();
        Ok(stems)
    }

    pub fn exists(&self) -> bool {
        self.gemini_dir().map(|p| p.exists()).unwrap_or(false)
    }
}

#[derive(Debug, Deserialize)]
struct ProjectsFile {
    #[serde(default)]
    projects: HashMap<String, String>,
}

/// Read just the top-level `sessionId` field from a chat JSON file
/// without materialising the whole document. Used by `list_sessions` to
/// correlate main files with sibling sub-agent UUID directories.
fn peek_session_id(path: &std::path::Path) -> Option<String> {
    #[derive(Deserialize)]
    struct Peek {
        #[serde(rename = "sessionId")]
        session_id: Option<String>,
    }
    let bytes = fs::read(path).ok()?;
    let peek: Peek = serde_json::from_slice(&bytes).ok()?;
    peek.session_id.filter(|s| !s.is_empty())
}

/// Canonical `projectHash`: SHA-256 hex of the absolute project path.
pub fn project_hash(project_path: &str) -> String {
    let mut hasher = Sha256::new();
    hasher.update(project_path.as_bytes());
    let digest = hasher.finalize();
    let mut s = String::with_capacity(64);
    for byte in digest {
        use std::fmt::Write;
        let _ = write!(s, "{:02x}", byte);
    }
    s
}

mod dirs {
    use std::env;
    use std::path::PathBuf;

    pub fn home_dir() -> Option<PathBuf> {
        env::var_os("HOME")
            .or_else(|| env::var_os("USERPROFILE"))
            .map(PathBuf::from)
    }
}

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

    fn setup() -> (TempDir, PathResolver) {
        let temp = TempDir::new().unwrap();
        let gemini = temp.path().join(".gemini");
        fs::create_dir_all(&gemini).unwrap();
        let resolver = PathResolver::new()
            .with_home(temp.path())
            .with_gemini_dir(&gemini);
        (temp, resolver)
    }

    #[test]
    fn test_project_hash_stable() {
        let h1 = project_hash("/Users/ben/empathic/oss/toolpath");
        let h2 = project_hash("/Users/ben/empathic/oss/toolpath");
        assert_eq!(h1, h2);
        assert_eq!(h1.len(), 64);
        assert!(h1.chars().all(|c| c.is_ascii_hexdigit()));
    }

    #[test]
    fn test_project_hash_matches_known_value() {
        // Value observed in real local chat file for this project
        let h = project_hash("/Users/ben/empathic/oss/toolpath");
        assert_eq!(
            h,
            "384e9530e99733805bc2c98a596ab23e67d4c29a6ef263cdc1c89b3bcd022c69"
        );
    }

    #[test]
    fn test_gemini_dir_default() {
        let (temp, resolver) = setup();
        let dir = resolver.gemini_dir().unwrap();
        assert_eq!(dir, temp.path().join(".gemini"));
    }

    #[test]
    fn test_gemini_dir_from_home() {
        let temp = TempDir::new().unwrap();
        let resolver = PathResolver::new().with_home(temp.path());
        assert_eq!(resolver.gemini_dir().unwrap(), temp.path().join(".gemini"));
    }

    #[test]
    fn test_project_dir_friendly_name() {
        let (_temp, resolver) = setup();
        let gemini = resolver.gemini_dir().unwrap();
        fs::write(
            gemini.join("projects.json"),
            r#"{"projects":{"/abs/myrepo":"myrepo"}}"#,
        )
        .unwrap();
        fs::create_dir_all(gemini.join("tmp/myrepo")).unwrap();

        let dir = resolver.project_dir("/abs/myrepo").unwrap();
        assert_eq!(dir, gemini.join("tmp/myrepo"));
    }

    #[test]
    fn test_project_dir_hash_fallback() {
        let (_temp, resolver) = setup();
        let gemini = resolver.gemini_dir().unwrap();
        let hashed = project_hash("/abs/other");
        fs::create_dir_all(gemini.join("tmp").join(&hashed)).unwrap();

        let dir = resolver.project_dir("/abs/other").unwrap();
        assert_eq!(dir, gemini.join("tmp").join(hashed));
    }

    #[test]
    fn test_project_dir_no_dir_returns_hash_path() {
        let (_temp, resolver) = setup();
        let gemini = resolver.gemini_dir().unwrap();
        let dir = resolver.project_dir("/never/exists").unwrap();
        assert_eq!(dir, gemini.join("tmp").join(project_hash("/never/exists")));
    }

    #[test]
    fn test_project_dir_prefers_friendly_name_even_without_tmp() {
        let (_temp, resolver) = setup();
        let gemini = resolver.gemini_dir().unwrap();
        // Friendly name is present in projects.json, but tmp/<friendly>/
        // doesn't exist. When no slot exists, we still prefer the friendly
        // path so callers targeting the known name work.
        fs::write(
            gemini.join("projects.json"),
            r#"{"projects":{"/abs/myrepo":"myrepo"}}"#,
        )
        .unwrap();
        let dir = resolver.project_dir("/abs/myrepo").unwrap();
        assert_eq!(dir, gemini.join("tmp/myrepo"));
    }

    #[test]
    fn test_session_dir_chat_file() {
        let (_temp, resolver) = setup();
        let gemini = resolver.gemini_dir().unwrap();
        fs::create_dir_all(gemini.join("tmp/myrepo/chats/session-uuid")).unwrap();
        fs::write(
            gemini.join("projects.json"),
            r#"{"projects":{"/abs/myrepo":"myrepo"}}"#,
        )
        .unwrap();

        let session = resolver.session_dir("/abs/myrepo", "session-uuid").unwrap();
        assert_eq!(session, gemini.join("tmp/myrepo/chats/session-uuid"));

        let file = resolver
            .chat_file("/abs/myrepo", "session-uuid", "main")
            .unwrap();
        assert_eq!(file, gemini.join("tmp/myrepo/chats/session-uuid/main.json"));

        let file_with_ext = resolver
            .chat_file("/abs/myrepo", "session-uuid", "main.json")
            .unwrap();
        assert_eq!(file, file_with_ext);
    }

    #[test]
    fn test_logs_file() {
        let (_temp, resolver) = setup();
        let gemini = resolver.gemini_dir().unwrap();
        let logs = resolver.logs_file("/abs/myrepo").unwrap();
        assert!(logs.ends_with("logs.json"));
        // Should live inside the project slot
        assert!(logs.starts_with(gemini.join("tmp")));
    }

    #[test]
    fn test_friendly_name_lookup_missing_file() {
        let (_temp, resolver) = setup();
        assert_eq!(resolver.friendly_name_for("/nope").unwrap(), None);
    }

    #[test]
    fn test_friendly_name_lookup_malformed_file() {
        let (_temp, resolver) = setup();
        let gemini = resolver.gemini_dir().unwrap();
        fs::write(gemini.join("projects.json"), "not json").unwrap();
        assert_eq!(resolver.friendly_name_for("/nope").unwrap(), None);
    }

    #[test]
    fn test_list_project_dirs_union() {
        let (_temp, resolver) = setup();
        let gemini = resolver.gemini_dir().unwrap();

        fs::write(
            gemini.join("projects.json"),
            r#"{"projects":{"/a":"a","/b":"b"}}"#,
        )
        .unwrap();

        // Add a C slot that only has a .project_root marker
        fs::create_dir_all(gemini.join("tmp/c")).unwrap();
        fs::write(gemini.join("tmp/c/.project_root"), "/c\n").unwrap();

        let projects = resolver.list_project_dirs().unwrap();
        assert!(projects.contains(&"/a".to_string()));
        assert!(projects.contains(&"/b".to_string()));
        assert!(projects.contains(&"/c".to_string()));
        assert_eq!(projects.len(), 3);
    }

    #[test]
    fn test_list_project_dirs_empty() {
        let (_temp, resolver) = setup();
        let projects = resolver.list_project_dirs().unwrap();
        assert!(projects.is_empty());
    }

    #[test]
    fn test_list_sessions() {
        let (_temp, resolver) = setup();
        let gemini = resolver.gemini_dir().unwrap();
        fs::write(gemini.join("projects.json"), r#"{"projects":{"/p":"p"}}"#).unwrap();
        fs::create_dir_all(gemini.join("tmp/p/chats/session-a")).unwrap();
        fs::create_dir_all(gemini.join("tmp/p/chats/session-b")).unwrap();
        // A stray file should be ignored
        fs::write(gemini.join("tmp/p/chats/stray.txt"), "x").unwrap();

        let sessions = resolver.list_sessions("/p").unwrap();
        assert_eq!(
            sessions,
            vec!["session-a".to_string(), "session-b".to_string()]
        );
    }

    #[test]
    fn test_list_sessions_no_project() {
        let (_temp, resolver) = setup();
        let sessions = resolver.list_sessions("/never").unwrap();
        assert!(sessions.is_empty());
    }

    #[test]
    fn test_list_chat_files() {
        let (_temp, resolver) = setup();
        let gemini = resolver.gemini_dir().unwrap();
        fs::write(gemini.join("projects.json"), r#"{"projects":{"/p":"p"}}"#).unwrap();
        fs::create_dir_all(gemini.join("tmp/p/chats/session-x")).unwrap();
        fs::write(gemini.join("tmp/p/chats/session-x/main.json"), "{}").unwrap();
        fs::write(gemini.join("tmp/p/chats/session-x/qclszz.json"), "{}").unwrap();
        fs::write(gemini.join("tmp/p/chats/session-x/ignore.txt"), "x").unwrap();

        let stems = resolver.list_chat_files("/p", "session-x").unwrap();
        assert_eq!(stems, vec!["main".to_string(), "qclszz".to_string()]);
    }

    #[test]
    fn test_exists() {
        let (_temp, resolver) = setup();
        assert!(resolver.exists());

        let missing = PathResolver::new().with_gemini_dir("/never/exists");
        assert!(!missing.exists());
    }

    #[test]
    fn test_home_dir_from_env() {
        let home = dirs::home_dir();
        // Most test environments have one of HOME/USERPROFILE set
        assert!(home.is_some());
    }

    #[test]
    fn test_tmp_dir() {
        let (_t, r) = setup();
        let tmp = r.tmp_dir().unwrap();
        assert!(tmp.ends_with(".gemini/tmp"));
    }

    #[test]
    fn test_chats_dir() {
        let (_t, r) = setup();
        let gemini = r.gemini_dir().unwrap();
        fs::write(gemini.join("projects.json"), r#"{"projects":{"/p":"p"}}"#).unwrap();
        let chats = r.chats_dir("/p").unwrap();
        assert_eq!(chats, gemini.join("tmp/p/chats"));
    }

    #[test]
    fn test_list_main_session_stems() {
        // Flat main files at the top of `chats/` are enumerated; UUID
        // subdirectories are not.
        let (_t, r) = setup();
        let gemini = r.gemini_dir().unwrap();
        fs::write(gemini.join("projects.json"), r#"{"projects":{"/p":"p"}}"#).unwrap();
        let chats = gemini.join("tmp/p/chats");
        fs::create_dir_all(&chats).unwrap();
        fs::write(
            chats.join("session-2026-04-17-abc.json"),
            r#"{"sessionId":"abc","projectHash":"","messages":[]}"#,
        )
        .unwrap();
        fs::write(
            chats.join("session-2026-04-18-def.json"),
            r#"{"sessionId":"def","projectHash":"","messages":[]}"#,
        )
        .unwrap();
        // UUID dir next to the main files — ignored by this listing
        fs::create_dir_all(chats.join("abc-1234-5678-9abc")).unwrap();

        let stems = r.list_main_session_stems("/p").unwrap();
        assert_eq!(
            stems,
            vec![
                "session-2026-04-17-abc".to_string(),
                "session-2026-04-18-def".to_string(),
            ]
        );
    }

    #[test]
    fn test_main_session_file_path() {
        let (_t, r) = setup();
        let gemini = r.gemini_dir().unwrap();
        fs::write(gemini.join("projects.json"), r#"{"projects":{"/p":"p"}}"#).unwrap();
        let p = r.main_session_file("/p", "session-2026-04-17-abc").unwrap();
        assert_eq!(p, gemini.join("tmp/p/chats/session-2026-04-17-abc.json"));
        // .json suffix is optional
        let p2 = r
            .main_session_file("/p", "session-2026-04-17-abc.json")
            .unwrap();
        assert_eq!(p, p2);
    }

    #[test]
    fn test_resolve_main_file_by_stem() {
        let (_t, r) = setup();
        let gemini = r.gemini_dir().unwrap();
        fs::write(gemini.join("projects.json"), r#"{"projects":{"/p":"p"}}"#).unwrap();
        let chats = gemini.join("tmp/p/chats");
        fs::create_dir_all(&chats).unwrap();
        fs::write(
            chats.join("session-2026-04-17-abc.json"),
            r#"{"sessionId":"abc-uuid","projectHash":"","messages":[]}"#,
        )
        .unwrap();

        let found = r.resolve_main_file("/p", "session-2026-04-17-abc").unwrap();
        assert_eq!(found, Some(chats.join("session-2026-04-17-abc.json")));
    }

    #[test]
    fn test_resolve_main_file_by_inner_session_id() {
        // Matches the way Gemini CLI's `--resume <uuid>` resolves: scans
        // all main files and matches on inner `sessionId`.
        let (_t, r) = setup();
        let gemini = r.gemini_dir().unwrap();
        fs::write(gemini.join("projects.json"), r#"{"projects":{"/p":"p"}}"#).unwrap();
        let chats = gemini.join("tmp/p/chats");
        fs::create_dir_all(&chats).unwrap();
        fs::write(
            chats.join("session-2026-04-17-abc.json"),
            r#"{"sessionId":"f7cc36c0-980c-4914-ae79-439567272478","projectHash":"","messages":[]}"#,
        )
        .unwrap();

        // `--resume f7cc36c0-...` should resolve to the file above even
        // though its on-disk stem is different.
        let found = r
            .resolve_main_file("/p", "f7cc36c0-980c-4914-ae79-439567272478")
            .unwrap();
        assert_eq!(found, Some(chats.join("session-2026-04-17-abc.json")));
    }

    #[test]
    fn test_resolve_main_file_prefers_stem_over_inner_id() {
        // If a file's stem *and* another file's inner sessionId both
        // match, the direct stem lookup wins — it's the fast path and
        // mirrors CLI lookup order.
        let (_t, r) = setup();
        let gemini = r.gemini_dir().unwrap();
        fs::write(gemini.join("projects.json"), r#"{"projects":{"/p":"p"}}"#).unwrap();
        let chats = gemini.join("tmp/p/chats");
        fs::create_dir_all(&chats).unwrap();
        // File whose stem matches the query
        fs::write(
            chats.join("my-id.json"),
            r#"{"sessionId":"other-uuid","projectHash":"","messages":[]}"#,
        )
        .unwrap();
        // File whose inner sessionId matches the query
        fs::write(
            chats.join("session-other.json"),
            r#"{"sessionId":"my-id","projectHash":"","messages":[]}"#,
        )
        .unwrap();

        let found = r.resolve_main_file("/p", "my-id").unwrap();
        assert_eq!(found, Some(chats.join("my-id.json")));
    }

    #[test]
    fn test_resolve_main_file_returns_none_when_unmatched() {
        let (_t, r) = setup();
        let gemini = r.gemini_dir().unwrap();
        fs::write(gemini.join("projects.json"), r#"{"projects":{"/p":"p"}}"#).unwrap();
        let chats = gemini.join("tmp/p/chats");
        fs::create_dir_all(&chats).unwrap();
        fs::write(
            chats.join("session-other.json"),
            r#"{"sessionId":"uuid-a","projectHash":"","messages":[]}"#,
        )
        .unwrap();

        let found = r.resolve_main_file("/p", "uuid-that-doesnt-exist").unwrap();
        assert_eq!(found, None);
    }

    #[test]
    fn test_list_sessions_dedupes_main_and_sibling_uuid() {
        // A main file whose inner sessionId matches a sibling UUID dir
        // should surface once as the main stem, not twice.
        let (_t, r) = setup();
        let gemini = r.gemini_dir().unwrap();
        fs::write(gemini.join("projects.json"), r#"{"projects":{"/p":"p"}}"#).unwrap();
        let chats = gemini.join("tmp/p/chats");
        fs::create_dir_all(&chats).unwrap();
        // Main file carrying sessionId "sess-uuid-full"
        fs::write(
            chats.join("session-2026-abc.json"),
            r#"{"sessionId":"sess-uuid-full","projectHash":"","messages":[]}"#,
        )
        .unwrap();
        // Sibling sub-agent dir matching that UUID — should NOT be listed
        // as its own session.
        fs::create_dir_all(chats.join("sess-uuid-full")).unwrap();
        // An orphan UUID dir that does NOT correspond to any main — should
        // be listed.
        fs::create_dir_all(chats.join("orphan-uuid-zzz")).unwrap();

        let sessions = r.list_sessions("/p").unwrap();
        assert!(sessions.contains(&"session-2026-abc".to_string()));
        assert!(sessions.contains(&"orphan-uuid-zzz".to_string()));
        assert!(!sessions.contains(&"sess-uuid-full".to_string()));
        assert_eq!(sessions.len(), 2);
    }
}