acp-extension-codex 0.8.3 → 0.8.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -44,10 +44,10 @@ Read the docs on [External Agent](https://zed.dev/docs/ai/external-agents) suppo
44
44
 
45
45
  Install the adapter from the latest release for your architecture and OS: https://github.com/Leeeon233/acp-extension/releases
46
46
 
47
- You can then use `codex-acp` as a regular ACP agent:
47
+ You can then use `acp-extension-codex` as a regular ACP agent:
48
48
 
49
49
  ```
50
- OPENAI_API_KEY=sk-... codex-acp
50
+ OPENAI_API_KEY=sk-... acp-extension-codex
51
51
  ```
52
52
 
53
53
  Or via npm:
@@ -44,7 +44,9 @@ function getPlatformPackage() {
44
44
  function getBinaryPath() {
45
45
  const packageName = getPlatformPackage();
46
46
  const binaryName =
47
- process.platform === "win32" ? "codex-acp.exe" : "codex-acp";
47
+ process.platform === "win32"
48
+ ? "acp-extension-codex.exe"
49
+ : "acp-extension-codex";
48
50
 
49
51
  try {
50
52
  // Try to resolve the platform-specific package
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "acp-extension-codex",
3
- "version": "0.8.3",
3
+ "version": "0.8.5",
4
4
  "type": "module",
5
5
  "description": "An ACP-compatible coding agent powered by Codex",
6
6
  "license": "Apache-2.0",
@@ -22,17 +22,17 @@
22
22
  "assistant"
23
23
  ],
24
24
  "bin": {
25
- "codex-acp": "bin/codex-acp.js"
25
+ "acp-extension-codex": "bin/acp-extension-codex.js"
26
26
  },
27
27
  "files": [
28
28
  "bin"
29
29
  ],
30
30
  "optionalDependencies": {
31
- "acp-extension-codex-darwin-arm64": "0.8.3",
32
- "acp-extension-codex-darwin-x64": "0.8.3",
33
- "acp-extension-codex-linux-arm64": "0.8.3",
34
- "acp-extension-codex-linux-x64": "0.8.3",
35
- "acp-extension-codex-win32-arm64": "0.8.3",
36
- "acp-extension-codex-win32-x64": "0.8.3"
31
+ "acp-extension-codex-darwin-arm64": "0.8.5",
32
+ "acp-extension-codex-darwin-x64": "0.8.5",
33
+ "acp-extension-codex-linux-arm64": "0.8.5",
34
+ "acp-extension-codex-linux-x64": "0.8.5",
35
+ "acp-extension-codex-win32-arm64": "0.8.5",
36
+ "acp-extension-codex-win32-x64": "0.8.5"
37
37
  }
38
38
  }