feat(ui): open a list's findings folder

This commit is contained in:
mika kuns
2026-08-10 10:45:51 +02:00
parent 696abd0a7a
commit 0568f003d9
4 changed files with 24 additions and 0 deletions
@@ -120,6 +120,24 @@ public sealed partial class ListsIslandViewModel : ViewModelBase, IDisposable
catch { /* best-effort */ }
}
[RelayCommand]
private void OpenFindings(ListNavItemViewModel? row)
{
var dir = row?.WorkingDir;
if (string.IsNullOrWhiteSpace(dir)) return;
var findings = System.IO.Path.Combine(dir, ".claudedo");
if (!System.IO.Directory.Exists(findings)) return;
try
{
System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo
{
FileName = findings,
UseShellExecute = true,
});
}
catch { /* best-effort */ }
}
[RelayCommand]
private void OpenInTerminal(ListNavItemViewModel? row)
{