Skip to content

[3/3] feat(desktop): intro agent-owned session and ghost pointer phases#1649

Merged
nekomeowww merged 30 commits intomoeru-ai:mainfrom
3361559784:codex/desktop-v3-agent-session
Apr 24, 2026
Merged

[3/3] feat(desktop): intro agent-owned session and ghost pointer phases#1649
nekomeowww merged 30 commits intomoeru-ai:mainfrom
3361559784:codex/desktop-v3-agent-session

Conversation

@3361559784
Copy link
Copy Markdown
Contributor

这是 Desktop 线路的基础形态收官 3 / 3 步。正式剥离了用户会话和 agent 会话的概念权责,引入 Chrome 专属 Session Lifecycle,并在 Overlay 层加入了指针执行阶段的视觉分离。使得从侦测、拦截、派发到视觉反馈形成逻辑回环。

本次包含:

  • 新建 ChromeSessionManager 托管 agent 自建窗口的 PID 与存活感知。
  • 新增与清理 CDP bridge lifecycle (在 Session 崩溃时自动完成 cleanup 与断连)。
  • Overlay 指针加入 preview -> executing -> completed 状态流,并挂载波纹淡出动画。

不在本次范围:

  • 坚决不使用任何私有 API 或野路子来实现 macOS 多桌面(Mission Control Space)切分。当前不涉及强后台无头挂载设计。

⚠️ 高危与后续债 (Known Debts):

  • 强行夺权依然存在:遇到跨进程调用时,目前的设计为了让 OS Event 不点错地方,遇到失焦依然会进行 bringToFront,依然会有短时间的输入打扰。
  • 此分支尚未涵盖将各类弹窗(Dialog/Alert)拉平到 CDP 的能力,在极端 Native 弹出阻滞时流程依然会卡死。后续必须拆分新的 branch 应对纯无头后置路由 (pure-cdp-background-action-router) 开发。

@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented Apr 12, 2026

⏳ Approval required for deploying to Cloudflare Workers (Preview) for stage-web.

Name Link
🔭 Waiting for approval For maintainers, approve here

Hey, maintainers, kindly take some time to review and approve this deployment when you are available. Thank you! 🙏

Copy link
Copy Markdown
Contributor

@gemini-code-assist gemini-code-assist Bot left a comment

Choose a reason for hiding this comment

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

Code Review

This pull request introduces a comprehensive desktop grounding layer for macOS, enabling high-precision automation through a unified observation system that integrates screenshots, accessibility trees, and Chrome DOM data. Key additions include a transparent Electron overlay for ghost pointer visualization, a Chrome extension for read-only DOM observation, and a suite of MCP tools for target discovery and snap-resolved interactions. Feedback focuses on improving code maintainability by refactoring complex routing logic into helper functions and optimizing the initialization sequence of the desktop overlay window.

Comment thread apps/stage-tamagotchi/src/main/index.ts
Comment thread apps/stage-tamagotchi/src/main/windows/desktop-overlay/index.ts
Comment thread services/computer-use-mcp/src/server/action-executor.ts
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: 1a7371c4a0

ℹ️ 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".

Comment thread services/computer-use-mcp/chrome-extension/background.js
Comment thread services/computer-use-mcp/src/chrome-semantic-adapter.ts Outdated
@github-actions github-actions Bot added apps/stage-tamagotchi Desktop App: Windows & macOS & Linux feature Related to feature scope/agent Scope related to how we harness agent, or build the agent workflow scope/ui Scope related to UI/UX, or interface improve, perf, and bugs labels Apr 13, 2026
@github-actions github-actions Bot mentioned this pull request Apr 13, 2026
@m13v
Copy link
Copy Markdown

m13v commented Apr 13, 2026

the session lifecycle separation between user and agent is the right architectural call. we deal with the same problem in our macOS desktop automation, where the agent needs to click and type without interfering with the user's real mouse and keyboard.

for the ghost pointer approach, one thing to watch out on macOS: CGEvent posts always move the real system cursor. there's no native way to have a "virtual cursor" that only affects a specific app window. the workaround we use is to save the real cursor position before the agent acts (CGEvent.getLocation), post the agent's events, then immediately restore the cursor position via CGWarpMouseCursorPosition. this creates a brief flicker but is functionally invisible at 60fps.

for the preview -> executing -> completed state flow, the visual feedback is important. but make sure the overlay layer doesn't intercept mouse events from the user during the executing phase. on macOS, NSWindow with level .floating and ignoresMouseEvents = true lets you render the pointer animation without blocking real input.

the CDP bridge lifecycle cleanup on session crash is critical. we've seen orphaned Chrome DevTools sessions consume GBs of memory over time. a heartbeat ping every 5 seconds with automatic teardown on 3 consecutive failures works well.

@m13v
Copy link
Copy Markdown

m13v commented Apr 13, 2026

our macOS MCP server with the CGEvent cursor save/restore pattern and AXUIElement window management for agent actions without stealing user focus: https://github.com/mediar-ai/mcp-server-macos-use/blob/main/Sources/MCPServer/main.swift

and the desktop element interaction layer in Rust (cross-platform, handles the same cursor management concerns): https://github.com/mediar-ai/terminator/blob/main/crates/terminator/src/element.rs

@3361559784
Copy link
Copy Markdown
Contributor Author

the session lifecycle separation between user and agent is the right architectural call. we deal with the same problem in our macOS desktop automation, where the agent needs to click and type without interfering with the user's real mouse and keyboard.

for the ghost pointer approach, one thing to watch out on macOS: CGEvent posts always move the real system cursor. there's no native way to have a "virtual cursor" that only affects a specific app window. the workaround we use is to save the real cursor position before the agent acts (CGEvent.getLocation), post the agent's events, then immediately restore the cursor position via CGWarpMouseCursorPosition. this creates a brief flicker but is functionally invisible at 60fps.

for the preview -> executing -> completed state flow, the visual feedback is important. but make sure the overlay layer doesn't intercept mouse events from the user during the executing phase. on macOS, NSWindow with level .floating and ignoresMouseEvents = true lets you render the pointer animation without blocking real input.

the CDP bridge lifecycle cleanup on session crash is critical. we've seen orphaned Chrome DevTools sessions consume GBs of memory over time. a heartbeat ping every 5 seconds with automatic teardown on 3 consecutive failures works well.

Thanks, this is very helpful.

The point about CGEvent always moving the real system cursor is especially useful. Our current ghost-pointer phase is only a visual separation layer, so the save → act → restore cursor pattern is exactly the kind of practical mitigation I need to look at next on macOS.

Good call as well on keeping the overlay fully non-intercepting during execution, and on adding a stricter bridge heartbeat / teardown path. Those are both real debt items on this branch, so I appreciate the concrete warning signs here.

@3361559784
Copy link
Copy Markdown
Contributor Author

our macOS MCP server with the CGEvent cursor save/restore pattern and AXUIElement window management for agent actions without stealing user focus: https://github.com/mediar-ai/mcp-server-macos-use/blob/main/Sources/MCPServer/main.swift

and the desktop element interaction layer in Rust (cross-platform, handles the same cursor management concerns): https://github.com/mediar-ai/terminator/blob/main/crates/terminator/src/element.rs

This is gold, thank you.

I’ll study both references closely, especially the cursor save/restore flow and the AXUIElement-based window/session handling on macOS. That is very close to the problem boundary of this PR, so having a real implementation to compare against is extremely valuable.

Really appreciate you sharing concrete code instead of just high-level advice.

Appreciate the references — this gives me a much better implementation target than guessing through the macOS edge cases blind.

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: eb2888a8a9

ℹ️ 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".

Comment thread services/computer-use-mcp/chrome-extension/background.js
Comment thread services/computer-use-mcp/src/server/register-desktop-grounding.ts Outdated
@3361559784
Copy link
Copy Markdown
Contributor Author

@codex review this PR and verify that the critical bug fix is correct

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: b776261021

ℹ️ 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".

Comment thread services/computer-use-mcp/src/chrome-session-manager.ts Outdated
Comment thread services/computer-use-mcp/src/server/register-desktop-grounding.ts Outdated
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: a385738fca

ℹ️ 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".

Comment thread services/computer-use-mcp/chrome-extension/background.js
Comment thread services/computer-use-mcp/chrome-extension/content.js
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: 5f447f81be

ℹ️ 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".

Comment thread services/computer-use-mcp/src/server/action-executor.ts
Comment thread services/computer-use-mcp/chrome-extension/background.js
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


P2 Badge Clear started flag after extension bridge startup failure

start() sets this.started = true before the websocket server has successfully bound. If binding fails (e.g. transient port collision), the catch block records the error but never resets started, and subsequent start() calls short-circuit forever; combined with close() not resetting started, the bridge cannot be restarted in-process after failure.

ℹ️ 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".

Comment thread services/computer-use-mcp/src/chrome-session-manager.ts
Comment thread services/computer-use-mcp/src/server/register-desktop-grounding.ts
@nekomeowww nekomeowww added the priority/urgent Issue, or Pull Request that urgent to be fixed or processed label Apr 16, 2026
@3361559784
Copy link
Copy Markdown
Contributor Author

@codex review

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: ad82245c6d

ℹ️ 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".

Comment thread services/computer-use-mcp/chrome-extension/background.js
Comment thread services/computer-use-mcp/src/chrome-semantic-adapter.ts
@3361559784
Copy link
Copy Markdown
Contributor Author

@codex review and verify that the critical bug fix is correct

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: b3ee33e455

ℹ️ About Codex in GitHub

Codex has been enabled to automatically 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 👍.

When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".

Comment thread services/computer-use-mcp/src/server/register-desktop-grounding.ts
Comment thread services/computer-use-mcp/src/desktop-grounding.ts
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


P2 Badge Reset started flag when bridge startup throws

start() marks the bridge as started before attempting to bind the WebSocket server, but the catch block only records lastError and never clears started. If startup fails once (for example, temporary port bind failure), every later start() call returns early and the extension bridge can never recover without restarting the whole MCP process.


socket.on('close', () => {
if (this.socket === socket) {
this.socket = undefined
this.status.connected = false
}

P2 Badge Reject in-flight bridge calls when socket disconnects

The socket close handler updates connection status but leaves pending requests unresolved, so in-flight actions wait until the full request timeout before failing. In disconnect-prone sessions this adds ~10s stalls before fallback paths (e.g., OS-input fallback in click/type flows) can run, making browser actions appear hung.

ℹ️ 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".

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: cefcd38dd5

ℹ️ 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".

Comment thread services/computer-use-mcp/src/server/register-chrome-session.ts Outdated
Comment thread services/computer-use-mcp/src/browser-dom/extension-bridge.ts
Comment thread apps/stage-tamagotchi/src/renderer/pages/desktop-overlay-polling.ts
Copilot AI review requested due to automatic review settings April 23, 2026 17:21
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

This PR finalizes the “Desktop” baseline by splitting agent-owned vs user sessions, adding a Chrome-specific session lifecycle, and introducing a desktop grounding + overlay pipeline (observe → snap/route → click + visual feedback loop).

Changes:

  • Adds desktop grounding (desktop_observe, desktop_click_target) with snap resolution, staleness guards, and browser-dom routing hooks.
  • Introduces an agent-owned Chrome session lifecycle (ChromeSessionManager, desktop_ensure_chrome) plus desktop session ownership state.
  • Adds an Electron transparent overlay window that polls MCP state and renders ghost pointer phases + candidate boxes.

Reviewed changes

Copilot reviewed 62 out of 65 changed files in this pull request and generated 8 comments.

Show a summary per file
File Description
services/computer-use-mcp/src/utils/sleep.ts Adds mockable async sleep helper for tests.
services/computer-use-mcp/src/types.ts Extends action/types for desktop grounding and Chrome session metadata.
services/computer-use-mcp/src/transparency.ts Adds intent/outcome messaging and run-state summary for grounding + pointer.
services/computer-use-mcp/src/strategy.ts Adds grounding-related advisories (fresh observe required, stale snapshot, duplicate click).
services/computer-use-mcp/src/state.ts Persists grounding snapshot/pointer intent and Chrome/desktop session fields in RunState.
services/computer-use-mcp/src/snap-resolver.ts Implements snap-to-candidate coordinate resolver + geometry helpers.
services/computer-use-mcp/src/snap-resolver.test.ts Unit tests for snap resolver and geometry helpers.
services/computer-use-mcp/src/server/tool-descriptors/vscode.ts Adds tool descriptors for VS Code lane.
services/computer-use-mcp/src/server/tool-descriptors/types.ts Introduces canonical ToolDescriptor types + validation helpers.
services/computer-use-mcp/src/server/tool-descriptors/task-memory.ts Adds tool descriptors for task-memory lane.
services/computer-use-mcp/src/server/tool-descriptors/registry.ts Adds descriptor registry with query/group/validation helpers.
services/computer-use-mcp/src/server/tool-descriptors/registry.test.ts Tests registry initialization, completeness, and grounding tool enablement rules.
services/computer-use-mcp/src/server/tool-descriptors/register-helper.ts Adds descriptor-driven MCP tool registration + descriptor lookup helpers.
services/computer-use-mcp/src/server/tool-descriptors/pty.ts Adds PTY lane descriptors.
services/computer-use-mcp/src/server/tool-descriptors/index.ts Exports consolidated descriptor APIs/registry/types.
services/computer-use-mcp/src/server/tool-descriptors/display.ts Adds display lane descriptors.
services/computer-use-mcp/src/server/tool-descriptors/coding.ts Adds coding lane descriptors.
services/computer-use-mcp/src/server/tool-descriptors/cdp.ts Adds browser_cdp lane descriptors.
services/computer-use-mcp/src/server/tool-descriptors/all.ts Aggregates all descriptors and initializes global registry.
services/computer-use-mcp/src/server/tool-descriptors/accessibility.ts Adds accessibility lane descriptors.
services/computer-use-mcp/src/server/runtime.ts Wires ChromeSessionManager + DesktopSessionController into server runtime.
services/computer-use-mcp/src/server/register-tools.ts Adds browser-dom capability gating to return structured “unsupported actions” errors.
services/computer-use-mcp/src/server/register-tools-pty-approval.test.ts Tests new browser-dom capability gating behaviors.
services/computer-use-mcp/src/server/register-chrome-session.ts Registers desktop_ensure_chrome tool with policy/approval/audit and CDP auto-connect best-effort.
services/computer-use-mcp/src/server/register-chrome-session.test.ts Tests approval-required flow and non-approval execution persistence for Chrome session tool.
services/computer-use-mcp/src/server/action-executor.ts Routes type_text through browser-dom setInputValue for chrome_dom text inputs when applicable.
services/computer-use-mcp/src/server/action-executor.test.ts Tests typing route guardrails (explicit coords bypass; unsupported setInputValue falls back).
services/computer-use-mcp/src/server.ts Registers new desktop grounding + Chrome session tools.
services/computer-use-mcp/src/desktop-session.ts Adds desktop execution ownership model and foreground enforcement hooks.
services/computer-use-mcp/src/desktop-session.test.ts Unit tests for DesktopSessionController behavior.
services/computer-use-mcp/src/desktop-grounding.ts Implements unified desktop observation aggregation and candidate dedup/ranking.
services/computer-use-mcp/src/desktop-grounding.test.ts Tests candidate extraction/dedup, formatting output behavior.
services/computer-use-mcp/src/desktop-grounding-types.ts Adds grounding snapshot/candidate/snap/pointer intent types (incl. ghost pointer phases).
services/computer-use-mcp/src/chrome-session-manager.ts Adds macOS Chrome lifecycle manager (launch/join/new window, CDP port, focus restore).
services/computer-use-mcp/src/chrome-session-manager.test.ts Tests ChromeSessionManager flows with mocked shell interactions.
services/computer-use-mcp/src/chrome-semantic-adapter.ts Captures Chrome semantic snapshot via extension/CDP and maps to target candidates w/ coordinate transforms.
services/computer-use-mcp/src/browser-dom/extension-bridge.ts Adds action capability gating, pending-request rejection on disconnect, and start retry hygiene.
services/computer-use-mcp/src/browser-dom/extension-bridge.test.ts Tests read-only transport behavior, retryable startup, and in-flight rejection on disconnect.
services/computer-use-mcp/src/browser-dom/capabilities.ts Adds capability helpers to detect unsupported browser-dom actions.
services/computer-use-mcp/src/browser-action-router.ts Adds deterministic routing rules (browser_dom vs os_input) for click/type/checkbox/select.
services/computer-use-mcp/chrome-extension/msg_bridge.js Adds isolated-world message relay between background and MAIN-world content API.
services/computer-use-mcp/chrome-extension/manifest.json Adds MV3 manifest for read-only grounding extension.
services/computer-use-mcp/chrome-extension/icon48.png Adds extension icon asset.
services/computer-use-mcp/chrome-extension/icon16.png Adds extension icon asset.
services/computer-use-mcp/chrome-extension/icon128.png Adds extension icon asset.
services/computer-use-mcp/chrome-extension/content.js Adds MAIN-world read-only DOM observation API (window.__AIRI_DG__).
services/computer-use-mcp/chrome-extension/README.md Documents extension behavior, architecture, and supported commands.
packages/plugin-sdk/src/plugin-host/core.ts Refactors Object.fromEntries construction to avoid spread+map allocation.
packages/pipelines-audio/src/processors/tts-chunker.ts Uses stack.at(-1) for cleaner stack top access.
apps/stage-tamagotchi/src/shared/eventa/index.ts Adds DesktopOverlay readiness invoke contract.
apps/stage-tamagotchi/src/renderer/pages/desktop-overlay.vue Adds transparent renderer page for ghost pointer/candidate rendering and ripple animation.
apps/stage-tamagotchi/src/renderer/pages/desktop-overlay-polling.ts Adds pure polling/state-extraction logic with bootstrap readiness handshake and timeouts.
apps/stage-tamagotchi/src/renderer/pages/desktop-overlay-coordinates.ts Adds pure coordinate mapping helpers (screen ↔ overlay-local) and intersection tests.
apps/stage-tamagotchi/src/renderer/pages/desktop-overlay-coordinates.test.ts Unit tests for overlay coordinate helpers.
apps/stage-tamagotchi/src/main/windows/desktop-overlay/rpc/index.electron.ts Adds eventa RPC bootstrap for overlay window + readiness reporting.
apps/stage-tamagotchi/src/main/windows/desktop-overlay/rpc/contracts.ts Re-exports overlay readiness contract/types.
apps/stage-tamagotchi/src/main/windows/desktop-overlay/index.ts Creates always-on-top, click-through overlay BrowserWindow gated by env var.
apps/stage-tamagotchi/src/main/index.ts Eagerly instantiates overlay window when AIRI_DESKTOP_OVERLAY=1.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread services/computer-use-mcp/chrome-extension/content.js
Comment thread services/computer-use-mcp/chrome-extension/README.md Outdated
Comment thread apps/stage-tamagotchi/src/renderer/pages/desktop-overlay-polling.ts Outdated
Comment thread services/computer-use-mcp/src/chrome-session-manager.ts Outdated
Comment thread services/computer-use-mcp/src/server/register-chrome-session.ts
Comment thread services/computer-use-mcp/src/desktop-session.ts
Comment thread services/computer-use-mcp/src/server/tool-descriptors/types.ts
Comment thread services/computer-use-mcp/chrome-extension/msg_bridge.js Outdated
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: e12267f977

ℹ️ 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".

Comment thread services/computer-use-mcp/src/desktop-session.ts
Comment thread services/computer-use-mcp/src/server/register-desktop-grounding.ts
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: 94629d5eac

ℹ️ About Codex in GitHub

Codex has been enabled to automatically 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 👍.

When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".

Comment thread services/computer-use-mcp/src/server/register-chrome-session.ts
Comment thread apps/stage-tamagotchi/src/renderer/pages/desktop-overlay-polling.ts Outdated
@3361559784 3361559784 force-pushed the codex/desktop-v3-agent-session branch from 90b1bdc to 18a4784 Compare April 24, 2026 16:23
@3361559784 3361559784 force-pushed the codex/desktop-v3-agent-session branch from dbea76e to 723040f Compare April 24, 2026 16:30
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: 666d652792

ℹ️ About Codex in GitHub

Codex has been enabled to automatically 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 👍.

When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".

Comment thread services/computer-use-mcp/src/chrome-session-manager.ts
Comment thread pnpm-workspace.yaml
@3361559784 3361559784 force-pushed the codex/desktop-v3-agent-session branch from 666d652 to 79d64d5 Compare April 24, 2026 16:45
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: 0912e598c1

ℹ️ About Codex in GitHub

Codex has been enabled to automatically 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 👍.

When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".

Comment thread services/computer-use-mcp/src/server/register-desktop-grounding.ts
Comment thread apps/stage-tamagotchi/src/main/index.ts Outdated
@3361559784 3361559784 force-pushed the codex/desktop-v3-agent-session branch from 0912e59 to bdd16bc Compare April 24, 2026 17:00
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: 2ef6a9db3b

ℹ️ About Codex in GitHub

Codex has been enabled to automatically 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 👍.

When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".

Comment thread apps/stage-tamagotchi/src/renderer/pages/desktop-overlay.vue
Comment thread apps/stage-tamagotchi/src/renderer/pages/desktop-overlay-polling.ts
@3361559784
Copy link
Copy Markdown
Contributor Author

@nekomeowww rebase 好了

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: e6675d8c6d

ℹ️ 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".

Comment thread services/computer-use-mcp/src/server/register-tools.ts
@nekomeowww nekomeowww merged commit d7402ad into moeru-ai:main Apr 24, 2026
10 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

apps/stage-tamagotchi Desktop App: Windows & macOS & Linux feature Related to feature priority/urgent Issue, or Pull Request that urgent to be fixed or processed scope/agent Scope related to how we harness agent, or build the agent workflow scope/ui Scope related to UI/UX, or interface improve, perf, and bugs

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants