-
-
Notifications
You must be signed in to change notification settings - Fork 80.7k
[Feature]: Make OpenClaw sessions first-class in the Codex plugin #103621
Copy link
Copy link
Open
Labels
P3Low-priority cleanup, docs, polish, ergonomics, or speculative work.Low-priority cleanup, docs, polish, ergonomics, or speculative work.clawsweeper:needs-maintainer-reviewClawSweeper marked this issue as needing maintainer review before automation.ClawSweeper marked this issue as needing maintainer review before automation.clawsweeper:needs-product-decisionClawSweeper marked this issue as needing a product or behavior decision.ClawSweeper marked this issue as needing a product or behavior decision.clawsweeper:no-new-fix-prClawSweeper does not recommend queueing a new automated fix PR for this issue.ClawSweeper does not recommend queueing a new automated fix PR for this issue.enhancementNew feature or requestNew feature or requestimpact:ux-frictionUser-facing flow adds avoidable confusion or support burden without fully blocking progress.User-facing flow adds avoidable confusion or support burden without fully blocking progress.issue-rating: 🌊 off-meta tidepoolIssue quality rating does not apply to this item.Issue quality rating does not apply to this item.maintainerMaintainer-authored PRMaintainer-authored PRmaturity:stableIssue affects a taxonomy feature currently scored M4/M5.Issue affects a taxonomy feature currently scored M4/M5.
Description
Metadata
Metadata
Assignees
Labels
P3Low-priority cleanup, docs, polish, ergonomics, or speculative work.Low-priority cleanup, docs, polish, ergonomics, or speculative work.clawsweeper:needs-maintainer-reviewClawSweeper marked this issue as needing maintainer review before automation.ClawSweeper marked this issue as needing maintainer review before automation.clawsweeper:needs-product-decisionClawSweeper marked this issue as needing a product or behavior decision.ClawSweeper marked this issue as needing a product or behavior decision.clawsweeper:no-new-fix-prClawSweeper does not recommend queueing a new automated fix PR for this issue.ClawSweeper does not recommend queueing a new automated fix PR for this issue.enhancementNew feature or requestNew feature or requestimpact:ux-frictionUser-facing flow adds avoidable confusion or support burden without fully blocking progress.User-facing flow adds avoidable confusion or support burden without fully blocking progress.issue-rating: 🌊 off-meta tidepoolIssue quality rating does not apply to this item.Issue quality rating does not apply to this item.maintainerMaintainer-authored PRMaintainer-authored PRmaturity:stableIssue affects a taxonomy feature currently scored M4/M5.Issue affects a taxonomy feature currently scored M4/M5.
Type
Fields
Priority
None yet
Summary
Make OpenClaw sessions a first-class interactive surface in the official Codex plugin, including browsing, creating, reading, messaging, stopping, archiving, and restoring sessions.
Problem to solve
The official
@openclaw/codexintegration runs Codex through OpenClaw, but it does not currently give the Codex desktop app a useful OpenClaw session surface. A separate prototype can show Gateway health as a global plugin page, but that is not the user goal: people need their OpenClaw sessions, agent identity, live state, transcript, and composer where they already work in Codex.The missing bridge also tempts integrations to parse OpenClaw config, vendor a Gateway client, expose raw session keys, or duplicate connection lifecycle. Those approaches drift quickly and risk leaking channel identifiers or internal transcript content.
Proposed solution
openclaw mcp servebridge with capability-detected session operations for list, history, create, send, abort, and safe session updates.extensions/codexso the published@openclaw/codexpackage can be installed directly as a Codex plugin.Alternatives considered
openclaw.jsoninside a separate Codex-only repository. This duplicates the supported MCP bridge and becomes stale as OpenClaw changes.Impact
Evidence/examples
openclaw mcp servealready owns OpenClaw config resolution, Gateway authentication, connection lifecycle, and live subscription behavior.extensions/codexalready owns the published official Codex integration, so the bundle belongs there rather than in a new repository.Additional information
The host-native sidebar collection is an additive optimization. The global master/detail MCP App remains the compatibility path for Codex versions that do not understand the collection contribution.