Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 28 additions & 28 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
},
"dependencies": {
"@agentclientprotocol/sdk": "^0.25.1",
"@openai/codex": "^0.140.0",
"@openai/codex": "^0.141.0",
"diff": "^8.0.3",
"open": "^11.0.0",
"vscode-jsonrpc": "^8.2.1"
Expand Down
1 change: 1 addition & 0 deletions src/CodexAcpServer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -866,6 +866,7 @@ export class CodexAcpServer implements acp.Agent {
return this.createUserMessageUpdates(item);
case "hookPrompt":
case "subAgentActivity":
case "sleep":
return [];
case "agentMessage":
return [{
Expand Down
2 changes: 2 additions & 0 deletions src/CodexEventHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -354,6 +354,7 @@ export class CodexEventHandler {
return createImageGenerationStartUpdate(event.item);
case "collabAgentToolCall":
case "subAgentActivity":
case "sleep":
case "userMessage":
case "hookPrompt":
case "agentMessage":
Expand Down Expand Up @@ -409,6 +410,7 @@ export class CodexEventHandler {
//ignored types
case "collabAgentToolCall":
case "subAgentActivity":
case "sleep":
case "userMessage":
case "hookPrompt":
case "agentMessage":
Expand Down
26 changes: 26 additions & 0 deletions src/app-server/ApiPathString.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
// GENERATED CODE! DO NOT MODIFY BY HAND!

// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.

/**
* A UTF-8 path for preserving raw path compatibility at the app-server API
* boundary while Codex migrates to [`PathUri`].
*
* Supports storing arbitrary strings read from the API and converting to and
* from [`PathUri`] using an explicitly selected native path convention.
*
* When converting from [`PathUri`], "native" refers to the supplied
* [`PathConvention`], which may be foreign to the operating system running
* this process. The inner string is private so path-producing code must convert
* from [`AbsolutePathBuf`] or use [`Self::from_path_uri`] instead of bypassing
* the intended conversion boundary. Non-UTF-8 paths are converted to UTF-8
* lossily because this API value is serialized as a JSON string.
*
* Deserialization accepts any UTF-8 string without interpreting or validating
* it. That unrestricted construction path is intentionally available only to
* serde: Codex-internal code cannot construct this type directly from a raw
* `String` and is instead encouraged to convert through [`PathUri`] or
* [`AbsolutePathBuf`]. Relative path text remains valid until an operation
* such as [`Self::to_path_uri`] requires an absolute path.
*/
export type ApiPathString = string;
Loading
Loading