adhdev 0.1.53 → 0.2.0

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 (109) hide show
  1. package/dist/cli-entrypoint.js +12020 -0
  2. package/dist/cli-entrypoint.js.map +1 -0
  3. package/dist/index.js +9789 -9864
  4. package/dist/index.js.map +1 -0
  5. package/package.json +19 -16
  6. package/providers/_builtin/CONTRIBUTING.md +141 -0
  7. package/providers/_builtin/README.md +51 -0
  8. package/providers/_builtin/acp/agentpool/provider.json +47 -0
  9. package/providers/_builtin/acp/amp/provider.json +45 -0
  10. package/providers/_builtin/acp/auggie/provider.json +50 -0
  11. package/providers/_builtin/acp/autodev/provider.json +47 -0
  12. package/providers/_builtin/acp/autohand/provider.json +45 -0
  13. package/providers/_builtin/acp/blackbox-ai/provider.json +47 -0
  14. package/providers/_builtin/acp/claude-agent/provider.json +50 -0
  15. package/providers/_builtin/acp/cline-acp/provider.json +47 -0
  16. package/providers/_builtin/acp/code-assistant/provider.json +47 -0
  17. package/providers/_builtin/acp/codebuddy/provider.json +47 -0
  18. package/providers/_builtin/acp/codex-cli/provider.json +50 -0
  19. package/providers/_builtin/acp/corust-agent/provider.json +45 -0
  20. package/providers/_builtin/acp/crow-cli/provider.json +47 -0
  21. package/providers/_builtin/acp/cursor-acp/provider.json +47 -0
  22. package/providers/_builtin/acp/deepagents/provider.json +45 -0
  23. package/providers/_builtin/acp/dimcode/provider.json +47 -0
  24. package/providers/_builtin/acp/docker-cagent/provider.json +50 -0
  25. package/providers/_builtin/acp/factory-droid/provider.json +53 -0
  26. package/providers/_builtin/acp/fast-agent/provider.json +45 -0
  27. package/providers/_builtin/acp/fount/provider.json +47 -0
  28. package/providers/_builtin/acp/gemini-cli/provider.json +107 -0
  29. package/providers/_builtin/acp/github-copilot/provider.json +47 -0
  30. package/providers/_builtin/acp/goose/provider.json +50 -0
  31. package/providers/_builtin/acp/junie/provider.json +45 -0
  32. package/providers/_builtin/acp/kilo/provider.json +45 -0
  33. package/providers/_builtin/acp/kimi-cli/provider.json +50 -0
  34. package/providers/_builtin/acp/kiro-cli/provider.json +47 -0
  35. package/providers/_builtin/acp/minion-code/provider.json +45 -0
  36. package/providers/_builtin/acp/mistral-vibe/provider.json +50 -0
  37. package/providers/_builtin/acp/nova/provider.json +47 -0
  38. package/providers/_builtin/acp/openclaw/provider.json +47 -0
  39. package/providers/_builtin/acp/opencode/provider.json +45 -0
  40. package/providers/_builtin/acp/openhands/provider.json +47 -0
  41. package/providers/_builtin/acp/pi-acp/provider.json +45 -0
  42. package/providers/_builtin/acp/qoder/provider.json +47 -0
  43. package/providers/_builtin/acp/qwen-code/provider.json +53 -0
  44. package/providers/_builtin/acp/stakpak/provider.json +47 -0
  45. package/providers/_builtin/acp/vtcode/provider.json +47 -0
  46. package/providers/_builtin/cli/claude-cli/provider.json +78 -0
  47. package/providers/_builtin/cli/codex-cli/provider.json +60 -0
  48. package/providers/_builtin/cli/gemini-cli/provider.json +64 -0
  49. package/providers/_builtin/extension/cline/provider.json +11 -0
  50. package/providers/_builtin/extension/cline/scripts/open_panel.js +1 -1
  51. package/providers/_builtin/extension/cline/{provider.js → scripts.js} +29 -55
  52. package/providers/_builtin/extension/roo-code/provider.json +11 -0
  53. package/providers/_builtin/extension/roo-code/{provider.js → scripts.js} +27 -97
  54. package/providers/_builtin/ide/antigravity/provider.json +32 -0
  55. package/providers/_builtin/ide/antigravity/scripts.js +73 -0
  56. package/providers/_builtin/ide/cursor/provider.json +35 -0
  57. package/providers/_builtin/ide/cursor/{provider.js → scripts.js} +31 -69
  58. package/providers/_builtin/ide/kiro/provider.json +36 -0
  59. package/providers/_builtin/ide/kiro/scripts/webview_send_message.js +72 -0
  60. package/providers/_builtin/ide/kiro/scripts.js +62 -0
  61. package/providers/_builtin/ide/pearai/provider.json +36 -0
  62. package/providers/_builtin/ide/pearai/scripts/list_sessions.js +38 -0
  63. package/providers/_builtin/ide/pearai/scripts/new_session.js +55 -0
  64. package/providers/_builtin/ide/pearai/scripts/webview_list_sessions.js +62 -0
  65. package/providers/_builtin/ide/pearai/scripts/webview_new_session.js +32 -4
  66. package/providers/_builtin/ide/pearai/scripts/webview_send_message.js +72 -0
  67. package/providers/_builtin/ide/pearai/scripts/webview_switch_session.js +34 -0
  68. package/providers/_builtin/ide/pearai/scripts.js +74 -0
  69. package/providers/_builtin/ide/trae/provider.json +35 -0
  70. package/providers/_builtin/ide/trae/scripts/send_message.js +53 -3
  71. package/providers/_builtin/ide/trae/scripts.js +57 -0
  72. package/providers/_builtin/ide/vscode/provider.json +33 -0
  73. package/providers/_builtin/ide/vscode-insiders/provider.json +31 -0
  74. package/providers/_builtin/ide/vscodium/provider.json +32 -0
  75. package/providers/_builtin/ide/windsurf/provider.json +22 -0
  76. package/providers/_builtin/ide/windsurf/scripts.js +57 -0
  77. package/providers/_builtin/validate.js +156 -0
  78. package/README.md +0 -43
  79. package/dist/dev-console-monaco.js +0 -176
  80. package/dist/dev-console.css +0 -326
  81. package/dist/dev-console.html +0 -148
  82. package/dist/dev-console.js +0 -1165
  83. package/dist/index.d.ts +0 -2
  84. package/dist/node_datachannel-LPY6EJH5.node +0 -0
  85. package/providers/_builtin/acp/codex-cli/provider.js +0 -54
  86. package/providers/_builtin/acp/goose/provider.js +0 -32
  87. package/providers/_builtin/acp/opencode/provider.js +0 -32
  88. package/providers/_builtin/cli/claude-cli/provider.js +0 -125
  89. package/providers/_builtin/cli/codex-cli/provider.js +0 -77
  90. package/providers/_builtin/cli/gemini-cli/provider.js +0 -121
  91. package/providers/_builtin/ide/antigravity/provider.js +0 -114
  92. package/providers/_builtin/ide/cursor/provider.js.backup +0 -116
  93. package/providers/_builtin/ide/cursor/provider.js.bak +0 -127
  94. package/providers/_builtin/ide/cursor/scripts_backup/focus_editor.js +0 -20
  95. package/providers/_builtin/ide/cursor/scripts_backup/list_chats.js +0 -111
  96. package/providers/_builtin/ide/cursor/scripts_backup/new_session.js +0 -62
  97. package/providers/_builtin/ide/cursor/scripts_backup/open_panel.js +0 -31
  98. package/providers/_builtin/ide/cursor/scripts_backup/read_chat.js +0 -433
  99. package/providers/_builtin/ide/cursor/scripts_backup/resolve_action.js +0 -90
  100. package/providers/_builtin/ide/cursor/scripts_backup/send_message.js +0 -86
  101. package/providers/_builtin/ide/cursor/scripts_backup/switch_session.js +0 -63
  102. package/providers/_builtin/ide/kiro/provider.js +0 -86
  103. package/providers/_builtin/ide/pearai/provider.js +0 -88
  104. package/providers/_builtin/ide/trae/provider.js +0 -83
  105. package/providers/_builtin/ide/vscode/provider.js +0 -36
  106. package/providers/_builtin/ide/vscode-insiders/provider.js +0 -27
  107. package/providers/_builtin/ide/vscodium/provider.js +0 -27
  108. package/providers/_builtin/ide/windsurf/provider.js +0 -76
  109. /package/providers/{_helpers → _builtin/_helpers}/index.js +0 -0
@@ -0,0 +1,47 @@
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
+ "approvalAlert": {
25
+ "type": "boolean",
26
+ "default": true,
27
+ "public": true,
28
+ "label": "Approval Alerts",
29
+ "description": "Show notification when Copilot requires approval"
30
+ },
31
+ "longGeneratingAlert": {
32
+ "type": "boolean",
33
+ "default": true,
34
+ "public": true,
35
+ "label": "Long Generation Alert",
36
+ "description": "Alert when generation takes too long"
37
+ },
38
+ "longGeneratingThresholdSec": {
39
+ "type": "number",
40
+ "default": 180,
41
+ "public": true,
42
+ "label": "Long Generation Threshold (sec)",
43
+ "min": 30,
44
+ "max": 600
45
+ }
46
+ }
47
+ }
@@ -0,0 +1,50 @@
1
+ {
2
+ "type": "goose-acp",
3
+ "name": "Goose (ACP)",
4
+ "category": "acp",
5
+ "displayName": "Goose",
6
+ "icon": "🪿",
7
+ "install": "brew install goose or download from https://github.com/block/goose/releases",
8
+ "spawn": {
9
+ "command": "goose",
10
+ "args": [
11
+ "acp"
12
+ ],
13
+ "shell": false
14
+ },
15
+ "auth": [
16
+ {
17
+ "type": "terminal",
18
+ "id": "goose-configure",
19
+ "name": "Goose Configure",
20
+ "description": "Run goose configure to set up provider and API keys",
21
+ "args": [
22
+ "configure"
23
+ ]
24
+ }
25
+ ],
26
+ "settings": {
27
+ "approvalAlert": {
28
+ "type": "boolean",
29
+ "default": true,
30
+ "public": true,
31
+ "label": "Approval Alerts",
32
+ "description": "Show notification when Goose requires approval"
33
+ },
34
+ "longGeneratingAlert": {
35
+ "type": "boolean",
36
+ "default": true,
37
+ "public": true,
38
+ "label": "Long Generation Alert",
39
+ "description": "Alert when generation takes too long"
40
+ },
41
+ "longGeneratingThresholdSec": {
42
+ "type": "number",
43
+ "default": 180,
44
+ "public": true,
45
+ "label": "Long Generation Threshold (sec)",
46
+ "min": 30,
47
+ "max": 600
48
+ }
49
+ }
50
+ }
@@ -0,0 +1,45 @@
1
+ {
2
+ "type": "junie-acp",
3
+ "name": "Junie (ACP)",
4
+ "category": "acp",
5
+ "displayName": "Junie",
6
+ "icon": "🟣",
7
+ "install": "Download from https://github.com/JetBrains/junie/releases",
8
+ "spawn": {
9
+ "command": "junie",
10
+ "args": [],
11
+ "shell": false
12
+ },
13
+ "auth": [
14
+ {
15
+ "type": "agent",
16
+ "id": "jetbrains",
17
+ "name": "JetBrains Account",
18
+ "description": "Authenticate with JetBrains account"
19
+ }
20
+ ],
21
+ "settings": {
22
+ "approvalAlert": {
23
+ "type": "boolean",
24
+ "default": true,
25
+ "public": true,
26
+ "label": "Approval Alerts",
27
+ "description": "Show notification when Junie requires approval"
28
+ },
29
+ "longGeneratingAlert": {
30
+ "type": "boolean",
31
+ "default": true,
32
+ "public": true,
33
+ "label": "Long Generation Alert",
34
+ "description": "Alert when generation takes too long"
35
+ },
36
+ "longGeneratingThresholdSec": {
37
+ "type": "number",
38
+ "default": 180,
39
+ "public": true,
40
+ "label": "Long Generation Threshold (sec)",
41
+ "min": 30,
42
+ "max": 600
43
+ }
44
+ }
45
+ }
@@ -0,0 +1,45 @@
1
+ {
2
+ "type": "kilo-acp",
3
+ "name": "Kilo (ACP)",
4
+ "category": "acp",
5
+ "displayName": "Kilo",
6
+ "icon": "🟢",
7
+ "install": "npm install -g @kilocode/cli",
8
+ "spawn": {
9
+ "command": "kilo",
10
+ "args": ["acp"],
11
+ "shell": false
12
+ },
13
+ "auth": [
14
+ {
15
+ "type": "agent",
16
+ "id": "kilo-settings",
17
+ "name": "Kilo Settings",
18
+ "description": "Configure API keys through Kilo interactive setup"
19
+ }
20
+ ],
21
+ "settings": {
22
+ "approvalAlert": {
23
+ "type": "boolean",
24
+ "default": true,
25
+ "public": true,
26
+ "label": "Approval Alerts",
27
+ "description": "Show notification when Kilo requires approval"
28
+ },
29
+ "longGeneratingAlert": {
30
+ "type": "boolean",
31
+ "default": true,
32
+ "public": true,
33
+ "label": "Long Generation Alert",
34
+ "description": "Alert when generation takes too long"
35
+ },
36
+ "longGeneratingThresholdSec": {
37
+ "type": "number",
38
+ "default": 180,
39
+ "public": true,
40
+ "label": "Long Generation Threshold (sec)",
41
+ "min": 30,
42
+ "max": 600
43
+ }
44
+ }
45
+ }
@@ -0,0 +1,50 @@
1
+ {
2
+ "type": "kimi-acp",
3
+ "name": "Kimi CLI (ACP)",
4
+ "category": "acp",
5
+ "displayName": "Kimi CLI",
6
+ "icon": "🌙",
7
+ "install": "Download from https://github.com/MoonshotAI/kimi-cli/releases (requires MOONSHOT_API_KEY)",
8
+ "spawn": {
9
+ "command": "kimi",
10
+ "args": [],
11
+ "shell": false
12
+ },
13
+ "auth": [
14
+ {
15
+ "type": "env_var",
16
+ "id": "moonshot",
17
+ "name": "Moonshot API Key",
18
+ "vars": [
19
+ {
20
+ "name": "MOONSHOT_API_KEY"
21
+ }
22
+ ],
23
+ "link": "https://platform.moonshot.cn/console/api-keys"
24
+ }
25
+ ],
26
+ "settings": {
27
+ "approvalAlert": {
28
+ "type": "boolean",
29
+ "default": true,
30
+ "public": true,
31
+ "label": "Approval Alerts",
32
+ "description": "Show notification when Kimi requires approval"
33
+ },
34
+ "longGeneratingAlert": {
35
+ "type": "boolean",
36
+ "default": true,
37
+ "public": true,
38
+ "label": "Long Generation Alert",
39
+ "description": "Alert when generation takes too long"
40
+ },
41
+ "longGeneratingThresholdSec": {
42
+ "type": "number",
43
+ "default": 180,
44
+ "public": true,
45
+ "label": "Long Generation Threshold (sec)",
46
+ "min": 30,
47
+ "max": 600
48
+ }
49
+ }
50
+ }
@@ -0,0 +1,47 @@
1
+ {
2
+ "type": "kiro-cli-acp",
3
+ "name": "Kiro CLI (ACP)",
4
+ "category": "acp",
5
+ "displayName": "Kiro CLI",
6
+ "icon": "🟠",
7
+ "install": "Download from https://kiro.dev/docs/cli/",
8
+ "spawn": {
9
+ "command": "kiro",
10
+ "args": [
11
+ "acp"
12
+ ],
13
+ "shell": false
14
+ },
15
+ "auth": [
16
+ {
17
+ "type": "agent",
18
+ "id": "kiro",
19
+ "name": "Kiro Auth",
20
+ "description": "Authenticate with AWS/Kiro account"
21
+ }
22
+ ],
23
+ "settings": {
24
+ "approvalAlert": {
25
+ "type": "boolean",
26
+ "default": true,
27
+ "public": true,
28
+ "label": "Approval Alerts",
29
+ "description": "Show notification when agent requires approval"
30
+ },
31
+ "longGeneratingAlert": {
32
+ "type": "boolean",
33
+ "default": true,
34
+ "public": true,
35
+ "label": "Long Generation Alert",
36
+ "description": "Alert when generation takes too long"
37
+ },
38
+ "longGeneratingThresholdSec": {
39
+ "type": "number",
40
+ "default": 180,
41
+ "public": true,
42
+ "label": "Long Generation Threshold (sec)",
43
+ "min": 30,
44
+ "max": 600
45
+ }
46
+ }
47
+ }
@@ -0,0 +1,45 @@
1
+ {
2
+ "type": "minion-code-acp",
3
+ "name": "Minion Code (ACP)",
4
+ "category": "acp",
5
+ "displayName": "Minion Code",
6
+ "icon": "👾",
7
+ "install": "pip install minion-code (Python/uvx)",
8
+ "spawn": {
9
+ "command": "minion-code",
10
+ "args": [],
11
+ "shell": false
12
+ },
13
+ "auth": [
14
+ {
15
+ "type": "agent",
16
+ "id": "minion",
17
+ "name": "Minion Code Auth",
18
+ "description": "Configure provider through Minion Code setup"
19
+ }
20
+ ],
21
+ "settings": {
22
+ "approvalAlert": {
23
+ "type": "boolean",
24
+ "default": true,
25
+ "public": true,
26
+ "label": "Approval Alerts",
27
+ "description": "Show notification when agent requires approval"
28
+ },
29
+ "longGeneratingAlert": {
30
+ "type": "boolean",
31
+ "default": true,
32
+ "public": true,
33
+ "label": "Long Generation Alert",
34
+ "description": "Alert when generation takes too long"
35
+ },
36
+ "longGeneratingThresholdSec": {
37
+ "type": "number",
38
+ "default": 180,
39
+ "public": true,
40
+ "label": "Long Generation Threshold (sec)",
41
+ "min": 30,
42
+ "max": 600
43
+ }
44
+ }
45
+ }
@@ -0,0 +1,50 @@
1
+ {
2
+ "type": "mistral-vibe-acp",
3
+ "name": "Mistral Vibe (ACP)",
4
+ "category": "acp",
5
+ "displayName": "Mistral Vibe",
6
+ "icon": "🟧",
7
+ "install": "Download from https://github.com/mistralai/mistral-vibe/releases (requires MISTRAL_API_KEY)",
8
+ "spawn": {
9
+ "command": "mistral-vibe",
10
+ "args": [],
11
+ "shell": false
12
+ },
13
+ "auth": [
14
+ {
15
+ "type": "env_var",
16
+ "id": "mistral",
17
+ "name": "Mistral API Key",
18
+ "vars": [
19
+ {
20
+ "name": "MISTRAL_API_KEY"
21
+ }
22
+ ],
23
+ "link": "https://console.mistral.ai/api-keys/"
24
+ }
25
+ ],
26
+ "settings": {
27
+ "approvalAlert": {
28
+ "type": "boolean",
29
+ "default": true,
30
+ "public": true,
31
+ "label": "Approval Alerts",
32
+ "description": "Show notification when Mistral Vibe requires approval"
33
+ },
34
+ "longGeneratingAlert": {
35
+ "type": "boolean",
36
+ "default": true,
37
+ "public": true,
38
+ "label": "Long Generation Alert",
39
+ "description": "Alert when generation takes too long"
40
+ },
41
+ "longGeneratingThresholdSec": {
42
+ "type": "number",
43
+ "default": 180,
44
+ "public": true,
45
+ "label": "Long Generation Threshold (sec)",
46
+ "min": 30,
47
+ "max": 600
48
+ }
49
+ }
50
+ }
@@ -0,0 +1,47 @@
1
+ {
2
+ "type": "nova-acp",
3
+ "name": "Nova (ACP)",
4
+ "category": "acp",
5
+ "displayName": "Nova",
6
+ "icon": "⭐",
7
+ "install": "npm install -g @compass-ai/nova",
8
+ "spawn": {
9
+ "command": "nova",
10
+ "args": [
11
+ "acp"
12
+ ],
13
+ "shell": false
14
+ },
15
+ "auth": [
16
+ {
17
+ "type": "agent",
18
+ "id": "nova",
19
+ "name": "Nova Auth",
20
+ "description": "Authenticate with Compass AI account"
21
+ }
22
+ ],
23
+ "settings": {
24
+ "approvalAlert": {
25
+ "type": "boolean",
26
+ "default": true,
27
+ "public": true,
28
+ "label": "Approval Alerts",
29
+ "description": "Show notification when agent requires approval"
30
+ },
31
+ "longGeneratingAlert": {
32
+ "type": "boolean",
33
+ "default": true,
34
+ "public": true,
35
+ "label": "Long Generation Alert",
36
+ "description": "Alert when generation takes too long"
37
+ },
38
+ "longGeneratingThresholdSec": {
39
+ "type": "number",
40
+ "default": 180,
41
+ "public": true,
42
+ "label": "Long Generation Threshold (sec)",
43
+ "min": 30,
44
+ "max": 600
45
+ }
46
+ }
47
+ }
@@ -0,0 +1,47 @@
1
+ {
2
+ "type": "openclaw-acp",
3
+ "name": "OpenClaw (ACP)",
4
+ "category": "acp",
5
+ "displayName": "OpenClaw",
6
+ "icon": "🦞",
7
+ "install": "See https://docs.openclaw.ai/cli/",
8
+ "spawn": {
9
+ "command": "openclaw",
10
+ "args": [
11
+ "acp"
12
+ ],
13
+ "shell": false
14
+ },
15
+ "auth": [
16
+ {
17
+ "type": "agent",
18
+ "id": "openclaw",
19
+ "name": "OpenClaw Auth",
20
+ "description": "Authenticate with OpenClaw account"
21
+ }
22
+ ],
23
+ "settings": {
24
+ "approvalAlert": {
25
+ "type": "boolean",
26
+ "default": true,
27
+ "public": true,
28
+ "label": "Approval Alerts",
29
+ "description": "Show notification when agent requires approval"
30
+ },
31
+ "longGeneratingAlert": {
32
+ "type": "boolean",
33
+ "default": true,
34
+ "public": true,
35
+ "label": "Long Generation Alert",
36
+ "description": "Alert when generation takes too long"
37
+ },
38
+ "longGeneratingThresholdSec": {
39
+ "type": "number",
40
+ "default": 180,
41
+ "public": true,
42
+ "label": "Long Generation Threshold (sec)",
43
+ "min": 30,
44
+ "max": 600
45
+ }
46
+ }
47
+ }
@@ -0,0 +1,45 @@
1
+ {
2
+ "type": "opencode-acp",
3
+ "name": "OpenCode (ACP)",
4
+ "category": "acp",
5
+ "displayName": "OpenCode",
6
+ "icon": "📦",
7
+ "install": "Download from https://github.com/anomalyco/opencode/releases",
8
+ "spawn": {
9
+ "command": "opencode",
10
+ "args": [],
11
+ "shell": false
12
+ },
13
+ "auth": [
14
+ {
15
+ "type": "agent",
16
+ "id": "opencode-settings",
17
+ "name": "OpenCode Settings",
18
+ "description": "Configure provider through OpenCode interactive setup"
19
+ }
20
+ ],
21
+ "settings": {
22
+ "approvalAlert": {
23
+ "type": "boolean",
24
+ "default": true,
25
+ "public": true,
26
+ "label": "Approval Alerts",
27
+ "description": "Show notification when OpenCode requires approval"
28
+ },
29
+ "longGeneratingAlert": {
30
+ "type": "boolean",
31
+ "default": true,
32
+ "public": true,
33
+ "label": "Long Generation Alert",
34
+ "description": "Alert when generation takes too long"
35
+ },
36
+ "longGeneratingThresholdSec": {
37
+ "type": "number",
38
+ "default": 180,
39
+ "public": true,
40
+ "label": "Long Generation Threshold (sec)",
41
+ "min": 30,
42
+ "max": 600
43
+ }
44
+ }
45
+ }
@@ -0,0 +1,47 @@
1
+ {
2
+ "type": "openhands-acp",
3
+ "name": "OpenHands (ACP)",
4
+ "category": "acp",
5
+ "displayName": "OpenHands",
6
+ "icon": "✋",
7
+ "install": "pip install openhands (Python/Docker)",
8
+ "spawn": {
9
+ "command": "openhands",
10
+ "args": [
11
+ "acp"
12
+ ],
13
+ "shell": false
14
+ },
15
+ "auth": [
16
+ {
17
+ "type": "agent",
18
+ "id": "openhands",
19
+ "name": "OpenHands Auth",
20
+ "description": "Configure provider through OpenHands setup"
21
+ }
22
+ ],
23
+ "settings": {
24
+ "approvalAlert": {
25
+ "type": "boolean",
26
+ "default": true,
27
+ "public": true,
28
+ "label": "Approval Alerts",
29
+ "description": "Show notification when agent requires approval"
30
+ },
31
+ "longGeneratingAlert": {
32
+ "type": "boolean",
33
+ "default": true,
34
+ "public": true,
35
+ "label": "Long Generation Alert",
36
+ "description": "Alert when generation takes too long"
37
+ },
38
+ "longGeneratingThresholdSec": {
39
+ "type": "number",
40
+ "default": 180,
41
+ "public": true,
42
+ "label": "Long Generation Threshold (sec)",
43
+ "min": 30,
44
+ "max": 600
45
+ }
46
+ }
47
+ }
@@ -0,0 +1,45 @@
1
+ {
2
+ "type": "pi-acp",
3
+ "name": "pi ACP",
4
+ "category": "acp",
5
+ "displayName": "pi ACP",
6
+ "icon": "🥧",
7
+ "install": "npm install -g pi-acp",
8
+ "spawn": {
9
+ "command": "pi-acp",
10
+ "args": [],
11
+ "shell": false
12
+ },
13
+ "auth": [
14
+ {
15
+ "type": "agent",
16
+ "id": "pi",
17
+ "name": "pi Auth",
18
+ "description": "Configure provider through pi setup"
19
+ }
20
+ ],
21
+ "settings": {
22
+ "approvalAlert": {
23
+ "type": "boolean",
24
+ "default": true,
25
+ "public": true,
26
+ "label": "Approval Alerts",
27
+ "description": "Show notification when agent requires approval"
28
+ },
29
+ "longGeneratingAlert": {
30
+ "type": "boolean",
31
+ "default": true,
32
+ "public": true,
33
+ "label": "Long Generation Alert",
34
+ "description": "Alert when generation takes too long"
35
+ },
36
+ "longGeneratingThresholdSec": {
37
+ "type": "number",
38
+ "default": 180,
39
+ "public": true,
40
+ "label": "Long Generation Threshold (sec)",
41
+ "min": 30,
42
+ "max": 600
43
+ }
44
+ }
45
+ }
@@ -0,0 +1,47 @@
1
+ {
2
+ "type": "qoder-acp",
3
+ "name": "Qoder CLI (ACP)",
4
+ "category": "acp",
5
+ "displayName": "Qoder CLI",
6
+ "icon": "🔷",
7
+ "install": "npm install -g @qoder-ai/qodercli",
8
+ "spawn": {
9
+ "command": "qodercli",
10
+ "args": [
11
+ "--acp"
12
+ ],
13
+ "shell": false
14
+ },
15
+ "auth": [
16
+ {
17
+ "type": "agent",
18
+ "id": "qoder",
19
+ "name": "Qoder Auth",
20
+ "description": "Authenticate through Qoder setup"
21
+ }
22
+ ],
23
+ "settings": {
24
+ "approvalAlert": {
25
+ "type": "boolean",
26
+ "default": true,
27
+ "public": true,
28
+ "label": "Approval Alerts",
29
+ "description": "Show notification when agent requires approval"
30
+ },
31
+ "longGeneratingAlert": {
32
+ "type": "boolean",
33
+ "default": true,
34
+ "public": true,
35
+ "label": "Long Generation Alert",
36
+ "description": "Alert when generation takes too long"
37
+ },
38
+ "longGeneratingThresholdSec": {
39
+ "type": "number",
40
+ "default": 180,
41
+ "public": true,
42
+ "label": "Long Generation Threshold (sec)",
43
+ "min": 30,
44
+ "max": 600
45
+ }
46
+ }
47
+ }