Skip to content

feat(desktop): redesign Codra shell with DP Code-inspired agent workflow#14

Merged
Abdulmuiz44 merged 1 commit into
mainfrom
feat/codra-dpcode-inspired-interface
May 19, 2026
Merged

feat(desktop): redesign Codra shell with DP Code-inspired agent workflow#14
Abdulmuiz44 merged 1 commit into
mainfrom
feat/codra-dpcode-inspired-interface

Conversation

@Abdulmuiz44
Copy link
Copy Markdown
Collaborator

Summary

  • redesign the Codra desktop shell around a DP Code-inspired agent workflow
  • add a nested provider/model picker with search, favorites, runtime labels, and selected-model display
  • introduce Threads and Workspace sidebar modes plus a central composer and refreshed task thread experience
  • add light/dark theme persistence and document the DP Code reference patterns adapted into Codra

Validation

  • pnpm check:task-loop-protocol-sync
  • pnpm --filter desktop build
  • cargo check -p codra-core
  • cargo test -p codra-core
  • cargo check -p desktop

Notes

  • preserves the existing task-loop API flow and protocol integrity
  • does not include .codra runtime files
  • push and handoff remain placeholders in this slice

@Abdulmuiz44 Abdulmuiz44 merged commit da5a573 into main May 19, 2026
1 check passed
Copy link
Copy Markdown

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 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";
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge 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 👍 / 👎.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant