feat: mac computer use#1557
Conversation
* fix(rtk): simplify health check * fix(knowledge): use config ipc * fix(models): persist db model status * fix: harden MCP env and knowledge delete * fix: clean knowledge presenter cleanup paths
…omponents (#1542) - Updated transition classes in MessageActionButtons.vue for smoother animations. - Refactored MessageBlockContent.vue to optimize artifact snapshot handling with computed properties. - Improved transition effects in MessageBlockToolCall.vue for better user experience. - Added a mention icon map in MessageContent.vue to streamline icon retrieval. - Enhanced MessageItemUser.vue with a new line counting function for better text handling. - Optimized MessageToolbar.vue for consistent transition effects on button interactions. - Refactored BrowserPanel.vue to simplify state management for synced bounds. - Improved ChatSidePanel.vue with better resizing and visibility handling. - Updated ChatPage.vue to enhance chat search highlight scheduling. - Cleaned up ChatTabView.vue by removing legacy collapsed new chat button functionality. - Enhanced tests in ChatTabView.test.ts and WindowSideBar.test.ts for improved coverage and accuracy.
|
Important Review skippedToo many files! This PR contains 258 files, which is 108 over the limit of 150. ⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: ⛔ Files ignored due to path filters (10)
📒 Files selected for processing (258)
You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 2a80c97f9f
ℹ️ 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".
| if (path.isAbsolute(command)) { | ||
| const helperAppPath = this.resolveHelperAppPath(command) | ||
| return { | ||
| runtimeId: runtime.id, |
There was a problem hiding this comment.
Continue runtime detection after absolute candidate failures
When --version fails for the first absolute detect candidate, this branch returns state: 'error' immediately instead of trying later candidates in runtime.detect. For CUA, that means a broken bundled helper path can block fallback to /Applications/CuaDriver.app/... even when that runtime is installed and usable, causing unnecessary plugin activation failures.
Useful? React with 👍 / 👎.
| if (!policy.enabled || policy.serverId !== serverId) { | ||
| continue | ||
| } | ||
| const decision = policy.tools[toolName] | ||
| if (decision === 'allow' || decision === 'ask' || decision === 'deny') { |
There was a problem hiding this comment.
Scope plugin tool policies to the owning plugin server
Policy resolution matches only by serverId and toolName, so any registered plugin policy can affect permission decisions for another server with the same id, regardless of ownership. A misconfigured plugin manifest (or future plugin) can therefore silently override allow/ask/deny behavior for unrelated MCP servers; this should be constrained using server ownership metadata before applying the policy.
Useful? React with 👍 / 👎.
No description provided.