Skip to content

[BUG] Diagnostic temp file still uses roo-diagnostics- prefix instead of zoo-diagnostics- #193

Description

@proyectoauraorg

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

  1. Trigger any error diagnostic generation (e.g., API error → "Export Diagnostics")
  2. 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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions