Description
When generating an error diagnostics file, the temporary filename still uses the old roo-diagnostics- prefix instead of the new zoo-diagnostics- brand name. This is a leftover from the Roo → Zoo rename.
Steps to Reproduce
- Trigger any error diagnostic generation (e.g., API error → "Export Diagnostics")
- Observe the temp file created in
os.tmpdir()
Expected Behavior
The temp file should be named:
zoo-diagnostics-{taskId}-{timestamp}.json
Actual Behavior
The temp file is named:
roo-diagnostics-{taskId}-{timestamp}.json
Location
File: src/core/webview/diagnosticsHandler.ts, line 73
// Current (incorrect):
const tempFileName = `roo-diagnostics-${taskId.slice(0, 8)}-${timestamp}.json`
// Should be:
const tempFileName = `zoo-diagnostics-${taskId.slice(0, 8)}-${timestamp}.json`
Notes
This is a cosmetic issue (the diagnostics file content and functionality are unaffected), but it's inconsistent with the Zoo Code branding and could confuse users who see a roo- prefixed file in their temp directory.
The fix is a single-line change: replace roo-diagnostics- with zoo-diagnostics- on line 73.
Description
When generating an error diagnostics file, the temporary filename still uses the old
roo-diagnostics-prefix instead of the newzoo-diagnostics-brand name. This is a leftover from the Roo → Zoo rename.Steps to Reproduce
os.tmpdir()Expected Behavior
The temp file should be named:
Actual Behavior
The temp file is named:
Location
File:
src/core/webview/diagnosticsHandler.ts, line 73Notes
This is a cosmetic issue (the diagnostics file content and functionality are unaffected), but it's inconsistent with the Zoo Code branding and could confuse users who see a
roo-prefixed file in their temp directory.The fix is a single-line change: replace
roo-diagnostics-withzoo-diagnostics-on line 73.