feat(desktop): redesign Codra shell with DP Code-inspired agent workflow#14
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: f28ba9444c
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| const groups = new Map<string, Task[]>(); | ||
|
|
||
| for (const task of filteredTasks) { | ||
| const workspace = basename(task.workspacePath) || "Workspace"; |
There was a problem hiding this comment.
Group threads by full workspace path
Using basename(task.workspacePath) as the grouping key merges unrelated workspaces that share the same last directory name (for example, /work/client-a/app and /work/client-b/app both become app). In this commit that causes cross-workspace threads to be displayed in one bucket, which makes thread navigation and workspace context attribution ambiguous. Use the full workspacePath as the internal group key and derive a display label separately.
Useful? React with 👍 / 👎.
Summary
Validation
Notes