Severity
P1
Affected area
Desktop Spotlight / command palette
Build/run evidence
Built from source on 2026-05-27:
cd frontend && bun run build
cd ..
go build -o bin/DevToolbox-discovery .
./bin/DevToolbox-discovery
Startup log from the built binary:
[AssetFileServerFS] Handling request url=/spotlight file=spotlight
Asset Request: code=404 method=GET path=/spotlight
Repro
- Build and run the desktop app from source.
- Inspect the app startup logs or trigger/open the Spotlight window.
- The app creates the Spotlight webview with
URL: "/spotlight".
Actual
The built asset server returns 404 for /spotlight.
Expected
The Spotlight command palette should load reliably in the built desktop app.
Likely cause
The frontend build emits frontend/dist/spotlight.html, but the desktop window requests /spotlight.
Recommended fix
Resolve /spotlight to spotlight.html, or change the window URL to the built asset path. Also align the public hotkey docs/checklist with the runtime shortcut; the built app reports Cmd+Shift+Space, while README/testing docs mention Cmd+Ctrl+M / Ctrl+Alt+M.
Severity
P1
Affected area
Desktop Spotlight / command palette
Build/run evidence
Built from source on 2026-05-27:
Startup log from the built binary:
Repro
URL: "/spotlight".Actual
The built asset server returns 404 for
/spotlight.Expected
The Spotlight command palette should load reliably in the built desktop app.
Likely cause
The frontend build emits
frontend/dist/spotlight.html, but the desktop window requests/spotlight.Recommended fix
Resolve
/spotlighttospotlight.html, or change the window URL to the built asset path. Also align the public hotkey docs/checklist with the runtime shortcut; the built app reportsCmd+Shift+Space, while README/testing docs mentionCmd+Ctrl+M/Ctrl+Alt+M.