-
Notifications
You must be signed in to change notification settings - Fork 5
feat: LLM-25394 support Codex persist approval #129
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
NikolaiSviridov
wants to merge
18
commits into
main
Choose a base branch
from
nikolaisv/main/LLM-25394
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
5bf4259
feat: LLM-25394 support Codex persist approval
NikolaiSviridov 8e49347
fix: remove deleted api field availableDecisions
NikolaiSviridov e8efa9f
fix: ApprovalOptionId duplication
NikolaiSviridov ede1a5d
fix: align approval text with codex
NikolaiSviridov 4b7ecf2
fix: comment file link to new file
NikolaiSviridov f6cf1bc
fix: don't pass empty env on mcp config creation
NikolaiSviridov eb8ae54
review: simplify sessionMcpServers map -> array
NikolaiSviridov 755652a
fix: hide allow_always for runtime mcp tools, remove mcp tool add to …
NikolaiSviridov 4ef44af
fix: tests
NikolaiSviridov df89dd5
Revert "fix: don't pass empty env on mcp config creation"
NikolaiSviridov 520158e
fix: tests
NikolaiSviridov a8f2d99
chore: rename configuredMcpServerNames -> mcpServerNamesFromConfig
NikolaiSviridov c253630
chore: rename mcpServerNamesFromConfig -> configBackedMcpServerNames
NikolaiSviridov 0461285
refactor: review comment sessionMcpServers: Array<acp.McpServer> ->se…
NikolaiSviridov 52eee0c
chore: remove unused code
NikolaiSviridov f78faee
fix: remove description for elicitation option _meta
NikolaiSviridov 78d8bd2
feat: rebase, add test
NikolaiSviridov 54b5414
fix: rebase
NikolaiSviridov File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -57,7 +57,8 @@ export interface SessionState { | |
| cwd: string; | ||
| fastModeEnabled: boolean; | ||
| currentModelSupportsFast: boolean; | ||
| sessionMcpServers?: Array<string>; | ||
| sessionMcpServers: Array<string>; | ||
| configBackedMcpServerNames?: Set<string>; | ||
| } | ||
|
|
||
| interface PendingMcpStartupSession { | ||
|
|
@@ -120,7 +121,6 @@ export class CodexAcpServer implements acp.Agent { | |
| list: { } | ||
| }, | ||
| mcpCapabilities: { | ||
| acp: false, | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this expected change? |
||
| http: true, | ||
| sse: false | ||
| } | ||
|
|
@@ -179,7 +179,6 @@ export class CodexAcpServer implements acp.Agent { | |
|
|
||
| const account = await this.getActiveAccount(); | ||
| const {sessionId, currentModelId, models} = sessionMetadata; | ||
| const sessionMcpServers = this.resolveSessionMcpServers(requestedMcpServers, "sessionId" in request); | ||
| const currentModel = this.findCurrentModel(models, currentModelId); | ||
| const currentModelSupportsFast = modelSupportsFast(currentModel); | ||
| const sessionState: SessionState = { | ||
|
|
@@ -197,7 +196,8 @@ export class CodexAcpServer implements acp.Agent { | |
| cwd: request.cwd, | ||
| fastModeEnabled: sessionMetadata.currentServiceTier === "fast", | ||
| currentModelSupportsFast: currentModelSupportsFast, | ||
| sessionMcpServers: sessionMcpServers, | ||
| sessionMcpServers: this.createSessionMcpServers(requestedMcpServers, "sessionId" in request), | ||
| configBackedMcpServerNames: sessionMetadata.configBackedMcpServerNames ?? new Set(), | ||
| } | ||
| this.sessions.set(sessionId, sessionState); | ||
|
|
||
|
|
@@ -439,7 +439,6 @@ export class CodexAcpServer implements acp.Agent { | |
|
|
||
| const account = await this.getActiveAccount(); | ||
| const {sessionId, currentModelId, models, thread} = sessionMetadata; | ||
| const sessionMcpServers = this.resolveSessionMcpServers(requestedMcpServers, true); | ||
|
NikolaiSviridov marked this conversation as resolved.
|
||
| const currentModel = this.findCurrentModel(models, currentModelId); | ||
| const currentModelSupportsFast = modelSupportsFast(currentModel); | ||
| const sessionState: SessionState = { | ||
|
|
@@ -457,7 +456,8 @@ export class CodexAcpServer implements acp.Agent { | |
| cwd: request.cwd, | ||
| fastModeEnabled: sessionMetadata.currentServiceTier === "fast", | ||
| currentModelSupportsFast: currentModelSupportsFast, | ||
| sessionMcpServers: sessionMcpServers, | ||
| sessionMcpServers: this.createSessionMcpServers(requestedMcpServers, true), | ||
| configBackedMcpServerNames: sessionMetadata.configBackedMcpServerNames ?? new Set(), | ||
| }; | ||
| this.sessions.set(sessionId, sessionState); | ||
|
|
||
|
|
@@ -711,14 +711,13 @@ export class CodexAcpServer implements acp.Agent { | |
| return sessionState; | ||
| } | ||
|
|
||
| private resolveSessionMcpServers( | ||
| private createSessionMcpServers( | ||
| mcpServers: Array<acp.McpServer>, | ||
| recoverFromStartup: boolean, | ||
| ): Array<string> { | ||
| // Explicit MCP servers from the request are the primary source of truth for the session. | ||
| const requestedServerNames = getRequestedMcpServerNames(mcpServers); | ||
| if (requestedServerNames.length > 0) { | ||
| return requestedServerNames; | ||
| if (mcpServers.length > 0) { | ||
| return mcpServers.map(server => server.name); | ||
| } | ||
| // Fresh sessions without MCP config should not inherit any session MCP state. | ||
| if (!recoverFromStartup) { | ||
|
|
@@ -942,7 +941,3 @@ export class CodexAcpServer implements acp.Agent { | |
| } | ||
| } | ||
| } | ||
|
|
||
| function getRequestedMcpServerNames(mcpServers: Array<acp.McpServer>): Array<string> { | ||
| return Array.from(new Set(mcpServers.map(server => server.name))); | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What if it's globally configured MCP?
Why this field is needed at all if you can get names from sessionMcpServers?