(home: &Path)
| 165 | } |
| 166 | |
| 167 | fn install_ctx(home: &Path) -> InstallContext { |
| 168 | InstallContext { |
| 169 | home: home.to_path_buf(), |
| 170 | tracedecay_bin: "/tmp/tracedecay-test-bin".to_string(), |
| 171 | tool_permissions: expected_tool_perms(), |
| 172 | profile: None, |
| 173 | project_root: None, |
| 174 | dashboard: true, |
| 175 | } |
| 176 | } |
| 177 | |
| 178 | fn staged_cursor_skill_source() -> TempDir { |
| 179 | let staged = TempDir::new().expect("temp cursor skill source"); |