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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adhdev",
3
- "version": "0.1.49",
3
+ "version": "0.1.50",
4
4
  "description": "ADHDev CLI — Detect, install and configure your IDE + AI agent extensions",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -3,8 +3,11 @@
3
3
  *
4
4
  * Category: acp (Agent Client Protocol — JSON-RPC over stdio)
5
5
  *
6
- * OpenAI Codex CLI: https://developers.openai.com/codex/cli
7
- * ACP support: https://github.com/openai/codex/blob/main/docs/acp.md
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: ['--acp'],
24
+ command: 'codex-acp',
25
+ args: [],
23
26
  shell: false,
24
27
  },
25
28