adhdev 0.1.49 → 0.1.50
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/package.json
CHANGED
|
@@ -3,8 +3,11 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Category: acp (Agent Client Protocol — JSON-RPC over stdio)
|
|
5
5
|
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
6
|
+
* Uses @zed-industries/codex-acp adapter:
|
|
7
|
+
* https://github.com/zed-industries/codex-acp
|
|
8
|
+
*
|
|
9
|
+
* Install: npm install -g @zed-industries/codex-acp
|
|
10
|
+
* Auth: OPENAI_API_KEY or CODEX_API_KEY environment variable
|
|
8
11
|
*
|
|
9
12
|
* @type {import('../../../../src/providers/contracts').ProviderModule}
|
|
10
13
|
*/
|
|
@@ -16,10 +19,10 @@ module.exports = {
|
|
|
16
19
|
displayName: 'Codex',
|
|
17
20
|
icon: '🤖',
|
|
18
21
|
|
|
19
|
-
// ACP spawn config
|
|
22
|
+
// ACP spawn config — uses codex-acp adapter
|
|
20
23
|
spawn: {
|
|
21
|
-
command: 'codex',
|
|
22
|
-
args: [
|
|
24
|
+
command: 'codex-acp',
|
|
25
|
+
args: [],
|
|
23
26
|
shell: false,
|
|
24
27
|
},
|
|
25
28
|
|