@adhdev/daemon-core 0.5.3

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.
Files changed (217) hide show
  1. package/dist/index.d.ts +2662 -0
  2. package/dist/index.js +11341 -0
  3. package/dist/index.js.map +1 -0
  4. package/package.json +48 -0
  5. package/providers/_builtin/.github/workflows/generate-registry.yml +57 -0
  6. package/providers/_builtin/COMPATIBILITY.md +217 -0
  7. package/providers/_builtin/CONTRIBUTING.md +200 -0
  8. package/providers/_builtin/README.md +119 -0
  9. package/providers/_builtin/_helpers/index.js +188 -0
  10. package/providers/_builtin/acp/agentpool/provider.json +54 -0
  11. package/providers/_builtin/acp/amp/provider.json +52 -0
  12. package/providers/_builtin/acp/auggie/provider.json +57 -0
  13. package/providers/_builtin/acp/autodev/provider.json +54 -0
  14. package/providers/_builtin/acp/autohand/provider.json +52 -0
  15. package/providers/_builtin/acp/blackbox-ai/provider.json +54 -0
  16. package/providers/_builtin/acp/claude-agent/provider.json +57 -0
  17. package/providers/_builtin/acp/cline-acp/provider.json +54 -0
  18. package/providers/_builtin/acp/codebuddy/provider.json +54 -0
  19. package/providers/_builtin/acp/codex-cli/provider.json +57 -0
  20. package/providers/_builtin/acp/corust-agent/provider.json +52 -0
  21. package/providers/_builtin/acp/crow-cli/provider.json +54 -0
  22. package/providers/_builtin/acp/cursor-acp/provider.json +54 -0
  23. package/providers/_builtin/acp/deepagents/provider.json +52 -0
  24. package/providers/_builtin/acp/dimcode/provider.json +54 -0
  25. package/providers/_builtin/acp/docker-cagent/provider.json +57 -0
  26. package/providers/_builtin/acp/factory-droid/provider.json +60 -0
  27. package/providers/_builtin/acp/fast-agent/provider.json +52 -0
  28. package/providers/_builtin/acp/gemini-cli/provider.json +114 -0
  29. package/providers/_builtin/acp/github-copilot/provider.json +54 -0
  30. package/providers/_builtin/acp/goose/provider.json +57 -0
  31. package/providers/_builtin/acp/junie/provider.json +52 -0
  32. package/providers/_builtin/acp/kilo/provider.json +54 -0
  33. package/providers/_builtin/acp/kimi-cli/provider.json +57 -0
  34. package/providers/_builtin/acp/minion-code/provider.json +52 -0
  35. package/providers/_builtin/acp/mistral-vibe/provider.json +57 -0
  36. package/providers/_builtin/acp/nova/provider.json +54 -0
  37. package/providers/_builtin/acp/openclaw/provider.json +54 -0
  38. package/providers/_builtin/acp/opencode/provider.json +52 -0
  39. package/providers/_builtin/acp/openhands/provider.json +54 -0
  40. package/providers/_builtin/acp/pi-acp/provider.json +52 -0
  41. package/providers/_builtin/acp/qoder/provider.json +54 -0
  42. package/providers/_builtin/acp/qwen-code/provider.json +60 -0
  43. package/providers/_builtin/acp/stakpak/provider.json +54 -0
  44. package/providers/_builtin/acp/vtcode/provider.json +54 -0
  45. package/providers/_builtin/cli/claude-cli/provider.json +100 -0
  46. package/providers/_builtin/cli/codex-cli/provider.json +89 -0
  47. package/providers/_builtin/cli/gemini-cli/provider.json +93 -0
  48. package/providers/_builtin/docs/CDP_SELECTOR_GUIDE.md +370 -0
  49. package/providers/_builtin/docs/PROVIDER_GUIDE.md +916 -0
  50. package/providers/_builtin/extension/cline/provider.json +35 -0
  51. package/providers/_builtin/extension/cline/scripts/focus_editor.js +48 -0
  52. package/providers/_builtin/extension/cline/scripts/list_chats.js +100 -0
  53. package/providers/_builtin/extension/cline/scripts/list_models.js +43 -0
  54. package/providers/_builtin/extension/cline/scripts/list_modes.js +35 -0
  55. package/providers/_builtin/extension/cline/scripts/new_session.js +85 -0
  56. package/providers/_builtin/extension/cline/scripts/open_panel.js +25 -0
  57. package/providers/_builtin/extension/cline/scripts/read_chat.js +257 -0
  58. package/providers/_builtin/extension/cline/scripts/resolve_action.js +83 -0
  59. package/providers/_builtin/extension/cline/scripts/send_message.js +95 -0
  60. package/providers/_builtin/extension/cline/scripts/set_mode.js +36 -0
  61. package/providers/_builtin/extension/cline/scripts/set_model.js +36 -0
  62. package/providers/_builtin/extension/cline/scripts/switch_session.js +206 -0
  63. package/providers/_builtin/extension/cline/scripts.js +73 -0
  64. package/providers/_builtin/extension/roo-code/provider.json +35 -0
  65. package/providers/_builtin/extension/roo-code/scripts.js +659 -0
  66. package/providers/_builtin/ide/antigravity/provider.json +68 -0
  67. package/providers/_builtin/ide/antigravity/scripts/1.106/focus_editor.js +20 -0
  68. package/providers/_builtin/ide/antigravity/scripts/1.106/list_chats.js +137 -0
  69. package/providers/_builtin/ide/antigravity/scripts/1.106/list_models.js +38 -0
  70. package/providers/_builtin/ide/antigravity/scripts/1.106/list_modes.js +48 -0
  71. package/providers/_builtin/ide/antigravity/scripts/1.106/new_session.js +75 -0
  72. package/providers/_builtin/ide/antigravity/scripts/1.106/read_chat.js +262 -0
  73. package/providers/_builtin/ide/antigravity/scripts/1.106/resolve_action.js +68 -0
  74. package/providers/_builtin/ide/antigravity/scripts/1.106/scripts.js +57 -0
  75. package/providers/_builtin/ide/antigravity/scripts/1.106/send_message.js +56 -0
  76. package/providers/_builtin/ide/antigravity/scripts/1.106/set_mode.js +34 -0
  77. package/providers/_builtin/ide/antigravity/scripts/1.106/set_model.js +47 -0
  78. package/providers/_builtin/ide/antigravity/scripts/1.106/switch_session.js +114 -0
  79. package/providers/_builtin/ide/antigravity/scripts/1.107/focus_editor.js +20 -0
  80. package/providers/_builtin/ide/antigravity/scripts/1.107/list_chats.js +137 -0
  81. package/providers/_builtin/ide/antigravity/scripts/1.107/list_models.js +61 -0
  82. package/providers/_builtin/ide/antigravity/scripts/1.107/list_modes.js +72 -0
  83. package/providers/_builtin/ide/antigravity/scripts/1.107/new_session.js +75 -0
  84. package/providers/_builtin/ide/antigravity/scripts/1.107/read_chat.js +262 -0
  85. package/providers/_builtin/ide/antigravity/scripts/1.107/resolve_action.js +68 -0
  86. package/providers/_builtin/ide/antigravity/scripts/1.107/scripts.js +67 -0
  87. package/providers/_builtin/ide/antigravity/scripts/1.107/send_message.js +56 -0
  88. package/providers/_builtin/ide/antigravity/scripts/1.107/set_mode.js +67 -0
  89. package/providers/_builtin/ide/antigravity/scripts/1.107/set_model.js +72 -0
  90. package/providers/_builtin/ide/antigravity/scripts/1.107/switch_session.js +114 -0
  91. package/providers/_builtin/ide/cursor/provider.json +70 -0
  92. package/providers/_builtin/ide/cursor/scripts/0.49/dismiss_notification.js +30 -0
  93. package/providers/_builtin/ide/cursor/scripts/0.49/focus_editor.js +13 -0
  94. package/providers/_builtin/ide/cursor/scripts/0.49/list_models.js +78 -0
  95. package/providers/_builtin/ide/cursor/scripts/0.49/list_modes.js +40 -0
  96. package/providers/_builtin/ide/cursor/scripts/0.49/list_notifications.js +23 -0
  97. package/providers/_builtin/ide/cursor/scripts/0.49/list_sessions.js +42 -0
  98. package/providers/_builtin/ide/cursor/scripts/0.49/new_session.js +20 -0
  99. package/providers/_builtin/ide/cursor/scripts/0.49/open_panel.js +23 -0
  100. package/providers/_builtin/ide/cursor/scripts/0.49/read_chat.js +75 -0
  101. package/providers/_builtin/ide/cursor/scripts/0.49/resolve_action.js +19 -0
  102. package/providers/_builtin/ide/cursor/scripts/0.49/scripts.js +78 -0
  103. package/providers/_builtin/ide/cursor/scripts/0.49/send_message.js +23 -0
  104. package/providers/_builtin/ide/cursor/scripts/0.49/set_mode.js +38 -0
  105. package/providers/_builtin/ide/cursor/scripts/0.49/set_model.js +81 -0
  106. package/providers/_builtin/ide/cursor/scripts/0.49/switch_session.js +28 -0
  107. package/providers/_builtin/ide/kiro/provider.json +67 -0
  108. package/providers/_builtin/ide/kiro/scripts/focus_editor.js +20 -0
  109. package/providers/_builtin/ide/kiro/scripts/open_panel.js +47 -0
  110. package/providers/_builtin/ide/kiro/scripts/resolve_action.js +54 -0
  111. package/providers/_builtin/ide/kiro/scripts/send_message.js +29 -0
  112. package/providers/_builtin/ide/kiro/scripts/webview_list_models.js +39 -0
  113. package/providers/_builtin/ide/kiro/scripts/webview_list_modes.js +39 -0
  114. package/providers/_builtin/ide/kiro/scripts/webview_list_sessions.js +21 -0
  115. package/providers/_builtin/ide/kiro/scripts/webview_new_session.js +34 -0
  116. package/providers/_builtin/ide/kiro/scripts/webview_read_chat.js +68 -0
  117. package/providers/_builtin/ide/kiro/scripts/webview_send_message.js +72 -0
  118. package/providers/_builtin/ide/kiro/scripts/webview_set_mode.js +15 -0
  119. package/providers/_builtin/ide/kiro/scripts/webview_set_model.js +15 -0
  120. package/providers/_builtin/ide/kiro/scripts/webview_switch_session.js +26 -0
  121. package/providers/_builtin/ide/kiro/scripts.js +62 -0
  122. package/providers/_builtin/ide/pearai/provider.json +67 -0
  123. package/providers/_builtin/ide/pearai/scripts/focus_editor.js +20 -0
  124. package/providers/_builtin/ide/pearai/scripts/list_sessions.js +38 -0
  125. package/providers/_builtin/ide/pearai/scripts/new_session.js +55 -0
  126. package/providers/_builtin/ide/pearai/scripts/open_panel.js +46 -0
  127. package/providers/_builtin/ide/pearai/scripts/resolve_action.js +54 -0
  128. package/providers/_builtin/ide/pearai/scripts/send_message.js +29 -0
  129. package/providers/_builtin/ide/pearai/scripts/webview_list_models.js +43 -0
  130. package/providers/_builtin/ide/pearai/scripts/webview_list_modes.js +35 -0
  131. package/providers/_builtin/ide/pearai/scripts/webview_list_sessions.js +62 -0
  132. package/providers/_builtin/ide/pearai/scripts/webview_new_session.js +49 -0
  133. package/providers/_builtin/ide/pearai/scripts/webview_read_chat.js +92 -0
  134. package/providers/_builtin/ide/pearai/scripts/webview_resolve_action.js +59 -0
  135. package/providers/_builtin/ide/pearai/scripts/webview_send_message.js +72 -0
  136. package/providers/_builtin/ide/pearai/scripts/webview_set_mode.js +36 -0
  137. package/providers/_builtin/ide/pearai/scripts/webview_set_model.js +36 -0
  138. package/providers/_builtin/ide/pearai/scripts/webview_switch_session.js +34 -0
  139. package/providers/_builtin/ide/pearai/scripts.js +74 -0
  140. package/providers/_builtin/ide/trae/provider.json +66 -0
  141. package/providers/_builtin/ide/trae/scripts/focus_editor.js +20 -0
  142. package/providers/_builtin/ide/trae/scripts/list_chats.js +24 -0
  143. package/providers/_builtin/ide/trae/scripts/list_models.js +39 -0
  144. package/providers/_builtin/ide/trae/scripts/list_modes.js +39 -0
  145. package/providers/_builtin/ide/trae/scripts/new_session.js +30 -0
  146. package/providers/_builtin/ide/trae/scripts/open_panel.js +44 -0
  147. package/providers/_builtin/ide/trae/scripts/read_chat.js +113 -0
  148. package/providers/_builtin/ide/trae/scripts/resolve_action.js +54 -0
  149. package/providers/_builtin/ide/trae/scripts/send_message.js +69 -0
  150. package/providers/_builtin/ide/trae/scripts/set_mode.js +15 -0
  151. package/providers/_builtin/ide/trae/scripts/set_model.js +15 -0
  152. package/providers/_builtin/ide/trae/scripts/switch_session.js +23 -0
  153. package/providers/_builtin/ide/trae/scripts.js +57 -0
  154. package/providers/_builtin/ide/vscode/provider.json +64 -0
  155. package/providers/_builtin/ide/vscode-insiders/provider.json +62 -0
  156. package/providers/_builtin/ide/vscodium/provider.json +63 -0
  157. package/providers/_builtin/ide/windsurf/provider.json +53 -0
  158. package/providers/_builtin/ide/windsurf/scripts/focus_editor.js +30 -0
  159. package/providers/_builtin/ide/windsurf/scripts/list_chats.js +117 -0
  160. package/providers/_builtin/ide/windsurf/scripts/list_models.js +39 -0
  161. package/providers/_builtin/ide/windsurf/scripts/list_modes.js +39 -0
  162. package/providers/_builtin/ide/windsurf/scripts/new_session.js +69 -0
  163. package/providers/_builtin/ide/windsurf/scripts/open_panel.js +58 -0
  164. package/providers/_builtin/ide/windsurf/scripts/read_chat.js +297 -0
  165. package/providers/_builtin/ide/windsurf/scripts/resolve_action.js +68 -0
  166. package/providers/_builtin/ide/windsurf/scripts/send_message.js +87 -0
  167. package/providers/_builtin/ide/windsurf/scripts/set_mode.js +15 -0
  168. package/providers/_builtin/ide/windsurf/scripts/set_model.js +15 -0
  169. package/providers/_builtin/ide/windsurf/scripts/switch_session.js +58 -0
  170. package/providers/_builtin/ide/windsurf/scripts.js +57 -0
  171. package/providers/_builtin/registry.json +266 -0
  172. package/providers/_builtin/validate.js +156 -0
  173. package/src/agent-stream/index.ts +6 -0
  174. package/src/agent-stream/manager.ts +286 -0
  175. package/src/agent-stream/poller.ts +154 -0
  176. package/src/agent-stream/provider-adapter.ts +138 -0
  177. package/src/agent-stream/types.ts +61 -0
  178. package/src/boot/daemon-lifecycle.ts +252 -0
  179. package/src/cdp/devtools.ts +335 -0
  180. package/src/cdp/initializer.ts +191 -0
  181. package/src/cdp/manager.ts +897 -0
  182. package/src/cdp/scanner.ts +185 -0
  183. package/src/cdp/setup.ts +150 -0
  184. package/src/cli-adapter-types.ts +25 -0
  185. package/src/cli-adapters/provider-cli-adapter.ts +448 -0
  186. package/src/commands/cdp-commands.ts +208 -0
  187. package/src/commands/chat-commands.ts +675 -0
  188. package/src/commands/cli-manager.ts +353 -0
  189. package/src/commands/handler.ts +328 -0
  190. package/src/commands/router.ts +258 -0
  191. package/src/commands/stream-commands.ts +325 -0
  192. package/src/config/chat-history.ts +211 -0
  193. package/src/config/config.ts +219 -0
  194. package/src/daemon/dev-server.ts +2378 -0
  195. package/src/daemon/scaffold-template.ts +394 -0
  196. package/src/daemon-core.ts +50 -0
  197. package/src/detection/cli-detector.ts +89 -0
  198. package/src/detection/ide-detector.ts +157 -0
  199. package/src/index.ts +103 -0
  200. package/src/installer.ts +263 -0
  201. package/src/ipc-protocol.ts +133 -0
  202. package/src/launch.ts +433 -0
  203. package/src/logging/command-log.ts +180 -0
  204. package/src/logging/logger.ts +316 -0
  205. package/src/providers/acp-provider-instance.ts +1140 -0
  206. package/src/providers/cli-provider-instance.ts +207 -0
  207. package/src/providers/contracts.ts +524 -0
  208. package/src/providers/extension-provider-instance.ts +156 -0
  209. package/src/providers/ide-provider-instance.ts +377 -0
  210. package/src/providers/index.ts +18 -0
  211. package/src/providers/provider-instance-manager.ts +182 -0
  212. package/src/providers/provider-instance.ts +112 -0
  213. package/src/providers/provider-loader.ts +1031 -0
  214. package/src/providers/status-monitor.ts +125 -0
  215. package/src/providers/version-archive.ts +266 -0
  216. package/src/status/reporter.ts +294 -0
  217. package/src/types.ts +206 -0
@@ -0,0 +1,57 @@
1
+ {
2
+ "type": "codex-acp",
3
+ "name": "Codex (ACP)",
4
+ "category": "acp",
5
+ "displayName": "Codex (ACP)",
6
+ "icon": "🤖",
7
+ "install": "npm install -g @zed-industries/codex-acp (requires OPENAI_API_KEY)",
8
+ "spawn": {
9
+ "command": "codex-acp",
10
+ "args": [],
11
+ "shell": false
12
+ },
13
+ "auth": [
14
+ {
15
+ "type": "env_var",
16
+ "id": "openai",
17
+ "name": "OpenAI API Key",
18
+ "vars": [
19
+ {
20
+ "name": "OPENAI_API_KEY"
21
+ }
22
+ ],
23
+ "link": "https://platform.openai.com/api-keys"
24
+ }
25
+ ],
26
+ "settings": {
27
+ "autoApprove": {
28
+ "type": "boolean",
29
+ "default": false,
30
+ "public": true,
31
+ "label": "Auto Approve",
32
+ "description": "Automatically approve all tool calls without user confirmation"
33
+ },
34
+ "approvalAlert": {
35
+ "type": "boolean",
36
+ "default": true,
37
+ "public": true,
38
+ "label": "Approval Alerts",
39
+ "description": "Show notification when Codex requires approval"
40
+ },
41
+ "longGeneratingAlert": {
42
+ "type": "boolean",
43
+ "default": true,
44
+ "public": true,
45
+ "label": "Long Generation Alert",
46
+ "description": "Alert when generation takes too long"
47
+ },
48
+ "longGeneratingThresholdSec": {
49
+ "type": "number",
50
+ "default": 180,
51
+ "public": true,
52
+ "label": "Long Generation Threshold (sec)",
53
+ "min": 30,
54
+ "max": 600
55
+ }
56
+ }
57
+ }
@@ -0,0 +1,52 @@
1
+ {
2
+ "type": "corust-agent-acp",
3
+ "name": "Corust Agent (ACP)",
4
+ "category": "acp",
5
+ "displayName": "Corust Agent",
6
+ "icon": "🦀",
7
+ "install": "Download from https://github.com/Corust-ai/corust-agent-release/releases",
8
+ "spawn": {
9
+ "command": "corust-agent-acp",
10
+ "args": [],
11
+ "shell": false
12
+ },
13
+ "auth": [
14
+ {
15
+ "type": "agent",
16
+ "id": "corust",
17
+ "name": "Corust Auth",
18
+ "description": "Authenticate through Corust AI setup"
19
+ }
20
+ ],
21
+ "settings": {
22
+ "autoApprove": {
23
+ "type": "boolean",
24
+ "default": false,
25
+ "public": true,
26
+ "label": "Auto Approve",
27
+ "description": "Automatically approve all tool calls without user confirmation"
28
+ },
29
+ "approvalAlert": {
30
+ "type": "boolean",
31
+ "default": true,
32
+ "public": true,
33
+ "label": "Approval Alerts",
34
+ "description": "Show notification when agent requires approval"
35
+ },
36
+ "longGeneratingAlert": {
37
+ "type": "boolean",
38
+ "default": true,
39
+ "public": true,
40
+ "label": "Long Generation Alert",
41
+ "description": "Alert when generation takes too long"
42
+ },
43
+ "longGeneratingThresholdSec": {
44
+ "type": "number",
45
+ "default": 180,
46
+ "public": true,
47
+ "label": "Long Generation Threshold (sec)",
48
+ "min": 30,
49
+ "max": 600
50
+ }
51
+ }
52
+ }
@@ -0,0 +1,54 @@
1
+ {
2
+ "type": "crow-cli-acp",
3
+ "name": "crow-cli (ACP)",
4
+ "category": "acp",
5
+ "displayName": "crow-cli",
6
+ "icon": "🐦‍⬛",
7
+ "install": "pip install crow-cli (Python/uvx)",
8
+ "spawn": {
9
+ "command": "crow-cli",
10
+ "args": [
11
+ "acp"
12
+ ],
13
+ "shell": false
14
+ },
15
+ "auth": [
16
+ {
17
+ "type": "agent",
18
+ "id": "crow",
19
+ "name": "crow-cli Auth",
20
+ "description": "Configure provider through crow-cli setup"
21
+ }
22
+ ],
23
+ "settings": {
24
+ "autoApprove": {
25
+ "type": "boolean",
26
+ "default": false,
27
+ "public": true,
28
+ "label": "Auto Approve",
29
+ "description": "Automatically approve all tool calls without user confirmation"
30
+ },
31
+ "approvalAlert": {
32
+ "type": "boolean",
33
+ "default": true,
34
+ "public": true,
35
+ "label": "Approval Alerts",
36
+ "description": "Show notification when agent requires approval"
37
+ },
38
+ "longGeneratingAlert": {
39
+ "type": "boolean",
40
+ "default": true,
41
+ "public": true,
42
+ "label": "Long Generation Alert",
43
+ "description": "Alert when generation takes too long"
44
+ },
45
+ "longGeneratingThresholdSec": {
46
+ "type": "number",
47
+ "default": 180,
48
+ "public": true,
49
+ "label": "Long Generation Threshold (sec)",
50
+ "min": 30,
51
+ "max": 600
52
+ }
53
+ }
54
+ }
@@ -0,0 +1,54 @@
1
+ {
2
+ "type": "cursor-acp",
3
+ "name": "Cursor (ACP)",
4
+ "category": "acp",
5
+ "displayName": "Cursor Agent",
6
+ "icon": "🔵",
7
+ "install": "Download from https://cursor.com/docs/cli/acp",
8
+ "spawn": {
9
+ "command": "cursor-agent",
10
+ "args": [
11
+ "acp"
12
+ ],
13
+ "shell": false
14
+ },
15
+ "auth": [
16
+ {
17
+ "type": "agent",
18
+ "id": "cursor",
19
+ "name": "Cursor Auth",
20
+ "description": "Authenticate with Cursor account"
21
+ }
22
+ ],
23
+ "settings": {
24
+ "autoApprove": {
25
+ "type": "boolean",
26
+ "default": false,
27
+ "public": true,
28
+ "label": "Auto Approve",
29
+ "description": "Automatically approve all tool calls without user confirmation"
30
+ },
31
+ "approvalAlert": {
32
+ "type": "boolean",
33
+ "default": true,
34
+ "public": true,
35
+ "label": "Approval Alerts",
36
+ "description": "Show notification when agent requires approval"
37
+ },
38
+ "longGeneratingAlert": {
39
+ "type": "boolean",
40
+ "default": true,
41
+ "public": true,
42
+ "label": "Long Generation Alert",
43
+ "description": "Alert when generation takes too long"
44
+ },
45
+ "longGeneratingThresholdSec": {
46
+ "type": "number",
47
+ "default": 180,
48
+ "public": true,
49
+ "label": "Long Generation Threshold (sec)",
50
+ "min": 30,
51
+ "max": 600
52
+ }
53
+ }
54
+ }
@@ -0,0 +1,52 @@
1
+ {
2
+ "type": "deepagents-acp",
3
+ "name": "DeepAgents (ACP)",
4
+ "category": "acp",
5
+ "displayName": "DeepAgents",
6
+ "icon": "🔗",
7
+ "install": "npm install -g deepagents-acp",
8
+ "spawn": {
9
+ "command": "deepagents-acp",
10
+ "args": [],
11
+ "shell": false
12
+ },
13
+ "auth": [
14
+ {
15
+ "type": "agent",
16
+ "id": "deepagents",
17
+ "name": "DeepAgents Auth",
18
+ "description": "Configure provider through DeepAgents setup"
19
+ }
20
+ ],
21
+ "settings": {
22
+ "autoApprove": {
23
+ "type": "boolean",
24
+ "default": false,
25
+ "public": true,
26
+ "label": "Auto Approve",
27
+ "description": "Automatically approve all tool calls without user confirmation"
28
+ },
29
+ "approvalAlert": {
30
+ "type": "boolean",
31
+ "default": true,
32
+ "public": true,
33
+ "label": "Approval Alerts",
34
+ "description": "Show notification when agent requires approval"
35
+ },
36
+ "longGeneratingAlert": {
37
+ "type": "boolean",
38
+ "default": true,
39
+ "public": true,
40
+ "label": "Long Generation Alert",
41
+ "description": "Alert when generation takes too long"
42
+ },
43
+ "longGeneratingThresholdSec": {
44
+ "type": "number",
45
+ "default": 180,
46
+ "public": true,
47
+ "label": "Long Generation Threshold (sec)",
48
+ "min": 30,
49
+ "max": 600
50
+ }
51
+ }
52
+ }
@@ -0,0 +1,54 @@
1
+ {
2
+ "type": "dimcode-acp",
3
+ "name": "DimCode (ACP)",
4
+ "category": "acp",
5
+ "displayName": "DimCode",
6
+ "icon": "💠",
7
+ "install": "npm install -g dimcode",
8
+ "spawn": {
9
+ "command": "dimcode",
10
+ "args": [
11
+ "acp"
12
+ ],
13
+ "shell": false
14
+ },
15
+ "auth": [
16
+ {
17
+ "type": "agent",
18
+ "id": "dimcode",
19
+ "name": "DimCode Auth",
20
+ "description": "Configure provider through DimCode setup"
21
+ }
22
+ ],
23
+ "settings": {
24
+ "autoApprove": {
25
+ "type": "boolean",
26
+ "default": false,
27
+ "public": true,
28
+ "label": "Auto Approve",
29
+ "description": "Automatically approve all tool calls without user confirmation"
30
+ },
31
+ "approvalAlert": {
32
+ "type": "boolean",
33
+ "default": true,
34
+ "public": true,
35
+ "label": "Approval Alerts",
36
+ "description": "Show notification when agent requires approval"
37
+ },
38
+ "longGeneratingAlert": {
39
+ "type": "boolean",
40
+ "default": true,
41
+ "public": true,
42
+ "label": "Long Generation Alert",
43
+ "description": "Alert when generation takes too long"
44
+ },
45
+ "longGeneratingThresholdSec": {
46
+ "type": "number",
47
+ "default": 180,
48
+ "public": true,
49
+ "label": "Long Generation Threshold (sec)",
50
+ "min": 30,
51
+ "max": 600
52
+ }
53
+ }
54
+ }
@@ -0,0 +1,57 @@
1
+ {
2
+ "type": "docker-cagent-acp",
3
+ "name": "Docker cagent (ACP)",
4
+ "category": "acp",
5
+ "displayName": "Docker cagent",
6
+ "icon": "🐳",
7
+ "install": "docker pull docker/cagent",
8
+ "spawn": {
9
+ "command": "docker",
10
+ "args": [
11
+ "run",
12
+ "--rm",
13
+ "-i",
14
+ "docker/cagent"
15
+ ],
16
+ "shell": false
17
+ },
18
+ "auth": [
19
+ {
20
+ "type": "agent",
21
+ "id": "docker",
22
+ "name": "Docker Auth",
23
+ "description": "Authenticate with Docker account"
24
+ }
25
+ ],
26
+ "settings": {
27
+ "autoApprove": {
28
+ "type": "boolean",
29
+ "default": false,
30
+ "public": true,
31
+ "label": "Auto Approve",
32
+ "description": "Automatically approve all tool calls without user confirmation"
33
+ },
34
+ "approvalAlert": {
35
+ "type": "boolean",
36
+ "default": true,
37
+ "public": true,
38
+ "label": "Approval Alerts",
39
+ "description": "Show notification when agent requires approval"
40
+ },
41
+ "longGeneratingAlert": {
42
+ "type": "boolean",
43
+ "default": true,
44
+ "public": true,
45
+ "label": "Long Generation Alert",
46
+ "description": "Alert when generation takes too long"
47
+ },
48
+ "longGeneratingThresholdSec": {
49
+ "type": "number",
50
+ "default": 180,
51
+ "public": true,
52
+ "label": "Long Generation Threshold (sec)",
53
+ "min": 30,
54
+ "max": 600
55
+ }
56
+ }
57
+ }
@@ -0,0 +1,60 @@
1
+ {
2
+ "type": "factory-droid-acp",
3
+ "name": "Factory Droid (ACP)",
4
+ "category": "acp",
5
+ "displayName": "Factory Droid",
6
+ "icon": "🏭",
7
+ "install": "npm install -g droid",
8
+ "spawn": {
9
+ "command": "droid",
10
+ "args": [
11
+ "exec",
12
+ "--output-format",
13
+ "acp"
14
+ ],
15
+ "shell": false,
16
+ "env": {
17
+ "DROID_DISABLE_AUTO_UPDATE": "1",
18
+ "FACTORY_DROID_AUTO_UPDATE_ENABLED": "false"
19
+ }
20
+ },
21
+ "auth": [
22
+ {
23
+ "type": "agent",
24
+ "id": "factory",
25
+ "name": "Factory Auth",
26
+ "description": "Authenticate with Factory AI account"
27
+ }
28
+ ],
29
+ "settings": {
30
+ "autoApprove": {
31
+ "type": "boolean",
32
+ "default": false,
33
+ "public": true,
34
+ "label": "Auto Approve",
35
+ "description": "Automatically approve all tool calls without user confirmation"
36
+ },
37
+ "approvalAlert": {
38
+ "type": "boolean",
39
+ "default": true,
40
+ "public": true,
41
+ "label": "Approval Alerts",
42
+ "description": "Show notification when agent requires approval"
43
+ },
44
+ "longGeneratingAlert": {
45
+ "type": "boolean",
46
+ "default": true,
47
+ "public": true,
48
+ "label": "Long Generation Alert",
49
+ "description": "Alert when generation takes too long"
50
+ },
51
+ "longGeneratingThresholdSec": {
52
+ "type": "number",
53
+ "default": 180,
54
+ "public": true,
55
+ "label": "Long Generation Threshold (sec)",
56
+ "min": 30,
57
+ "max": 600
58
+ }
59
+ }
60
+ }
@@ -0,0 +1,52 @@
1
+ {
2
+ "type": "fast-agent-acp",
3
+ "name": "fast-agent (ACP)",
4
+ "category": "acp",
5
+ "displayName": "fast-agent",
6
+ "icon": "⚡",
7
+ "install": "pip install fast-agent-acp (Python/uvx)",
8
+ "spawn": {
9
+ "command": "fast-agent-acp",
10
+ "args": [],
11
+ "shell": false
12
+ },
13
+ "auth": [
14
+ {
15
+ "type": "agent",
16
+ "id": "fast-agent",
17
+ "name": "fast-agent Auth",
18
+ "description": "Configure provider through fast-agent setup"
19
+ }
20
+ ],
21
+ "settings": {
22
+ "autoApprove": {
23
+ "type": "boolean",
24
+ "default": false,
25
+ "public": true,
26
+ "label": "Auto Approve",
27
+ "description": "Automatically approve all tool calls without user confirmation"
28
+ },
29
+ "approvalAlert": {
30
+ "type": "boolean",
31
+ "default": true,
32
+ "public": true,
33
+ "label": "Approval Alerts",
34
+ "description": "Show notification when agent requires approval"
35
+ },
36
+ "longGeneratingAlert": {
37
+ "type": "boolean",
38
+ "default": true,
39
+ "public": true,
40
+ "label": "Long Generation Alert",
41
+ "description": "Alert when generation takes too long"
42
+ },
43
+ "longGeneratingThresholdSec": {
44
+ "type": "number",
45
+ "default": 180,
46
+ "public": true,
47
+ "label": "Long Generation Threshold (sec)",
48
+ "min": 30,
49
+ "max": 600
50
+ }
51
+ }
52
+ }
@@ -0,0 +1,114 @@
1
+ {
2
+ "type": "gemini-acp",
3
+ "name": "Gemini CLI (ACP)",
4
+ "category": "acp",
5
+ "displayName": "Gemini (ACP)",
6
+ "icon": "♊",
7
+ "install": "npm install -g @google/gemini-cli",
8
+ "spawn": {
9
+ "command": "gemini",
10
+ "args": [
11
+ "--experimental-acp"
12
+ ],
13
+ "shell": false
14
+ },
15
+ "auth": [
16
+ {
17
+ "type": "env_var",
18
+ "id": "google",
19
+ "name": "Google API Key",
20
+ "vars": [
21
+ {
22
+ "name": "GOOGLE_API_KEY"
23
+ }
24
+ ],
25
+ "link": "https://aistudio.google.com/apikey"
26
+ },
27
+ {
28
+ "type": "agent",
29
+ "id": "gcloud",
30
+ "name": "Google Cloud Auth",
31
+ "description": "Authenticate via gcloud auth application-default login"
32
+ }
33
+ ],
34
+ "staticConfigOptions": [
35
+ {
36
+ "category": "model",
37
+ "configId": "model",
38
+ "defaultValue": "gemini-2.5-pro",
39
+ "options": [
40
+ {
41
+ "value": "gemini-2.5-pro",
42
+ "name": "Gemini 2.5 Pro",
43
+ "group": "2.5"
44
+ },
45
+ {
46
+ "value": "gemini-2.5-flash",
47
+ "name": "Gemini 2.5 Flash",
48
+ "group": "2.5"
49
+ },
50
+ {
51
+ "value": "gemini-2.0-flash",
52
+ "name": "Gemini 2.0 Flash",
53
+ "group": "2.0"
54
+ }
55
+ ]
56
+ },
57
+ {
58
+ "category": "mode",
59
+ "configId": "approval_mode",
60
+ "defaultValue": "default",
61
+ "options": [
62
+ {
63
+ "value": "default",
64
+ "name": "Default",
65
+ "description": "Prompt for approval"
66
+ },
67
+ {
68
+ "value": "auto_edit",
69
+ "name": "Auto Edit",
70
+ "description": "Auto-approve file edits"
71
+ },
72
+ {
73
+ "value": "yolo",
74
+ "name": "YOLO",
75
+ "description": "Auto-approve all actions"
76
+ },
77
+ {
78
+ "value": "plan",
79
+ "name": "Plan",
80
+ "description": "Read-only planning mode"
81
+ }
82
+ ]
83
+ }
84
+ ],
85
+ "settings": {
86
+ "autoApprove": {
87
+ "type": "boolean",
88
+ "default": false,
89
+ "public": true,
90
+ "label": "Auto Approve",
91
+ "description": "Automatically approve all tool calls without user confirmation"
92
+ },
93
+ "approvalAlert": {
94
+ "type": "boolean",
95
+ "default": true,
96
+ "public": true,
97
+ "label": "Approval Alerts"
98
+ },
99
+ "longGeneratingAlert": {
100
+ "type": "boolean",
101
+ "default": true,
102
+ "public": true,
103
+ "label": "Long Generation Alert"
104
+ },
105
+ "longGeneratingThresholdSec": {
106
+ "type": "number",
107
+ "default": 180,
108
+ "public": true,
109
+ "label": "Long Generation Threshold (sec)",
110
+ "min": 30,
111
+ "max": 600
112
+ }
113
+ }
114
+ }
@@ -0,0 +1,54 @@
1
+ {
2
+ "type": "github-copilot-acp",
3
+ "name": "GitHub Copilot (ACP)",
4
+ "category": "acp",
5
+ "displayName": "GitHub Copilot",
6
+ "icon": "🐙",
7
+ "install": "npm install -g @github/copilot (requires GitHub auth)",
8
+ "spawn": {
9
+ "command": "copilot",
10
+ "args": [
11
+ "--acp"
12
+ ],
13
+ "shell": false
14
+ },
15
+ "auth": [
16
+ {
17
+ "type": "agent",
18
+ "id": "github",
19
+ "name": "GitHub Authentication",
20
+ "description": "Authenticate via GitHub OAuth device flow (gh auth login)"
21
+ }
22
+ ],
23
+ "settings": {
24
+ "autoApprove": {
25
+ "type": "boolean",
26
+ "default": false,
27
+ "public": true,
28
+ "label": "Auto Approve",
29
+ "description": "Automatically approve all tool calls without user confirmation"
30
+ },
31
+ "approvalAlert": {
32
+ "type": "boolean",
33
+ "default": true,
34
+ "public": true,
35
+ "label": "Approval Alerts",
36
+ "description": "Show notification when Copilot requires approval"
37
+ },
38
+ "longGeneratingAlert": {
39
+ "type": "boolean",
40
+ "default": true,
41
+ "public": true,
42
+ "label": "Long Generation Alert",
43
+ "description": "Alert when generation takes too long"
44
+ },
45
+ "longGeneratingThresholdSec": {
46
+ "type": "number",
47
+ "default": 180,
48
+ "public": true,
49
+ "label": "Long Generation Threshold (sec)",
50
+ "min": 30,
51
+ "max": 600
52
+ }
53
+ }
54
+ }