adhdev 0.1.53 → 0.1.54
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/dist/index.js +1870 -819
- package/package.json +1 -1
- package/providers/_builtin/CONTRIBUTING.md +141 -0
- package/providers/_builtin/README.md +51 -0
- package/providers/_builtin/_helpers/index.js +188 -0
- package/providers/_builtin/acp/agentpool/provider.js +59 -0
- package/providers/_builtin/acp/amp/provider.js +61 -0
- package/providers/_builtin/acp/auggie/provider.js +60 -0
- package/providers/_builtin/acp/autodev/provider.js +59 -0
- package/providers/_builtin/acp/autohand/provider.js +59 -0
- package/providers/_builtin/acp/blackbox-ai/provider.js +59 -0
- package/providers/_builtin/acp/claude-agent/provider.js +61 -0
- package/providers/_builtin/acp/cline-acp/provider.js +62 -0
- package/providers/_builtin/acp/code-assistant/provider.js +59 -0
- package/providers/_builtin/acp/codebuddy/provider.js +59 -0
- package/providers/_builtin/acp/codex-cli/provider.js +11 -1
- package/providers/_builtin/acp/corust-agent/provider.js +59 -0
- package/providers/_builtin/acp/crow-cli/provider.js +59 -0
- package/providers/_builtin/acp/cursor-acp/provider.js +59 -0
- package/providers/_builtin/acp/deepagents/provider.js +59 -0
- package/providers/_builtin/acp/dimcode/provider.js +58 -0
- package/providers/_builtin/acp/docker-cagent/provider.js +59 -0
- package/providers/_builtin/acp/factory-droid/provider.js +59 -0
- package/providers/_builtin/acp/fast-agent/provider.js +59 -0
- package/providers/_builtin/acp/fount/provider.js +59 -0
- package/providers/_builtin/acp/gemini-cli/provider.js +104 -0
- package/providers/_builtin/acp/github-copilot/provider.js +60 -0
- package/providers/_builtin/acp/goose/provider.js +37 -5
- package/providers/_builtin/acp/junie/provider.js +62 -0
- package/providers/_builtin/acp/kilo/provider.js +59 -0
- package/providers/_builtin/acp/kimi-cli/provider.js +63 -0
- package/providers/_builtin/acp/kiro-cli/provider.js +59 -0
- package/providers/_builtin/acp/minion-code/provider.js +59 -0
- package/providers/_builtin/acp/mistral-vibe/provider.js +63 -0
- package/providers/_builtin/acp/nova/provider.js +59 -0
- package/providers/_builtin/acp/openclaw/provider.js +59 -0
- package/providers/_builtin/acp/opencode/provider.js +34 -6
- package/providers/_builtin/acp/openhands/provider.js +59 -0
- package/providers/_builtin/acp/pi-acp/provider.js +59 -0
- package/providers/_builtin/acp/qoder/provider.js +58 -0
- package/providers/_builtin/acp/qwen-code/provider.js +61 -0
- package/providers/_builtin/acp/stakpak/provider.js +59 -0
- package/providers/_builtin/acp/vtcode/provider.js +59 -0
- package/providers/_builtin/cli/claude-cli/provider.js +3 -0
- package/providers/_builtin/cli/codex-cli/provider.js +3 -0
- package/providers/_builtin/cli/gemini-cli/provider.js +3 -0
- package/providers/_builtin/ide/kiro/provider.js +6 -2
- package/providers/_builtin/ide/kiro/scripts/webview_send_message.js +72 -0
- package/providers/_builtin/ide/pearai/provider.js +12 -0
- package/providers/_builtin/ide/pearai/scripts/list_sessions.js +38 -0
- package/providers/_builtin/ide/pearai/scripts/new_session.js +55 -0
- package/providers/_builtin/ide/pearai/scripts/webview_list_sessions.js +62 -0
- package/providers/_builtin/ide/pearai/scripts/webview_new_session.js +32 -4
- package/providers/_builtin/ide/pearai/scripts/webview_send_message.js +72 -0
- package/providers/_builtin/ide/pearai/scripts/webview_switch_session.js +34 -0
- package/providers/_builtin/ide/trae/scripts/send_message.js +53 -3
- package/providers/_builtin/validate.js +156 -0
- package/dist/node_datachannel-LPY6EJH5.node +0 -0
- package/providers/_builtin/ide/cursor/provider.js.backup +0 -116
- package/providers/_builtin/ide/cursor/provider.js.bak +0 -127
- package/providers/_builtin/ide/cursor/scripts_backup/focus_editor.js +0 -20
- package/providers/_builtin/ide/cursor/scripts_backup/list_chats.js +0 -111
- package/providers/_builtin/ide/cursor/scripts_backup/new_session.js +0 -62
- package/providers/_builtin/ide/cursor/scripts_backup/open_panel.js +0 -31
- package/providers/_builtin/ide/cursor/scripts_backup/read_chat.js +0 -433
- package/providers/_builtin/ide/cursor/scripts_backup/resolve_action.js +0 -90
- package/providers/_builtin/ide/cursor/scripts_backup/send_message.js +0 -86
- package/providers/_builtin/ide/cursor/scripts_backup/switch_session.js +0 -63
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Minion Code — ACP Provider
|
|
3
|
+
*
|
|
4
|
+
* AI code assistant built on the Minion framework
|
|
5
|
+
* https://github.com/femto/minion-code
|
|
6
|
+
*
|
|
7
|
+
* Install: pip install minion-code (Python/uvx)
|
|
8
|
+
*
|
|
9
|
+
* @type {import('../../../../src/providers/contracts').ProviderModule}
|
|
10
|
+
*/
|
|
11
|
+
module.exports = {
|
|
12
|
+
type: 'minion-code-acp',
|
|
13
|
+
name: 'Minion Code (ACP)',
|
|
14
|
+
category: 'acp',
|
|
15
|
+
|
|
16
|
+
displayName: 'Minion Code',
|
|
17
|
+
icon: '👾',
|
|
18
|
+
install: 'pip install minion-code (Python/uvx)',
|
|
19
|
+
|
|
20
|
+
spawn: {
|
|
21
|
+
command: 'minion-code',
|
|
22
|
+
args: [],
|
|
23
|
+
shell: false,
|
|
24
|
+
},
|
|
25
|
+
|
|
26
|
+
auth: [
|
|
27
|
+
{
|
|
28
|
+
type: 'agent',
|
|
29
|
+
id: 'minion',
|
|
30
|
+
name: 'Minion Code Auth',
|
|
31
|
+
description: 'Configure provider through Minion Code setup',
|
|
32
|
+
},
|
|
33
|
+
],
|
|
34
|
+
|
|
35
|
+
settings: {
|
|
36
|
+
approvalAlert: {
|
|
37
|
+
type: 'boolean',
|
|
38
|
+
default: true,
|
|
39
|
+
public: true,
|
|
40
|
+
label: 'Approval Alerts',
|
|
41
|
+
description: 'Show notification when agent requires approval',
|
|
42
|
+
},
|
|
43
|
+
longGeneratingAlert: {
|
|
44
|
+
type: 'boolean',
|
|
45
|
+
default: true,
|
|
46
|
+
public: true,
|
|
47
|
+
label: 'Long Generation Alert',
|
|
48
|
+
description: 'Alert when generation takes too long',
|
|
49
|
+
},
|
|
50
|
+
longGeneratingThresholdSec: {
|
|
51
|
+
type: 'number',
|
|
52
|
+
default: 180,
|
|
53
|
+
public: true,
|
|
54
|
+
label: 'Long Generation Threshold (sec)',
|
|
55
|
+
min: 30,
|
|
56
|
+
max: 600,
|
|
57
|
+
},
|
|
58
|
+
},
|
|
59
|
+
};
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Mistral Vibe — ACP Provider
|
|
3
|
+
*
|
|
4
|
+
* Mistral's open-source coding assistant
|
|
5
|
+
* https://github.com/mistralai/mistral-vibe
|
|
6
|
+
*
|
|
7
|
+
* Install: Binary download from GitHub releases
|
|
8
|
+
* See: https://github.com/mistralai/mistral-vibe/releases
|
|
9
|
+
*
|
|
10
|
+
* Auth: MISTRAL_API_KEY environment variable
|
|
11
|
+
*
|
|
12
|
+
* @type {import('../../../../src/providers/contracts').ProviderModule}
|
|
13
|
+
*/
|
|
14
|
+
module.exports = {
|
|
15
|
+
type: 'mistral-vibe-acp',
|
|
16
|
+
name: 'Mistral Vibe (ACP)',
|
|
17
|
+
category: 'acp',
|
|
18
|
+
|
|
19
|
+
displayName: 'Mistral Vibe',
|
|
20
|
+
icon: '🟧',
|
|
21
|
+
install: 'Download from https://github.com/mistralai/mistral-vibe/releases (requires MISTRAL_API_KEY)',
|
|
22
|
+
|
|
23
|
+
spawn: {
|
|
24
|
+
command: 'mistral-vibe',
|
|
25
|
+
args: [],
|
|
26
|
+
shell: false,
|
|
27
|
+
},
|
|
28
|
+
|
|
29
|
+
auth: [
|
|
30
|
+
{
|
|
31
|
+
type: 'env_var',
|
|
32
|
+
id: 'mistral',
|
|
33
|
+
name: 'Mistral API Key',
|
|
34
|
+
vars: [{ name: 'MISTRAL_API_KEY' }],
|
|
35
|
+
link: 'https://console.mistral.ai/api-keys/',
|
|
36
|
+
},
|
|
37
|
+
],
|
|
38
|
+
|
|
39
|
+
settings: {
|
|
40
|
+
approvalAlert: {
|
|
41
|
+
type: 'boolean',
|
|
42
|
+
default: true,
|
|
43
|
+
public: true,
|
|
44
|
+
label: 'Approval Alerts',
|
|
45
|
+
description: 'Show notification when Mistral Vibe requires approval',
|
|
46
|
+
},
|
|
47
|
+
longGeneratingAlert: {
|
|
48
|
+
type: 'boolean',
|
|
49
|
+
default: true,
|
|
50
|
+
public: true,
|
|
51
|
+
label: 'Long Generation Alert',
|
|
52
|
+
description: 'Alert when generation takes too long',
|
|
53
|
+
},
|
|
54
|
+
longGeneratingThresholdSec: {
|
|
55
|
+
type: 'number',
|
|
56
|
+
default: 180,
|
|
57
|
+
public: true,
|
|
58
|
+
label: 'Long Generation Threshold (sec)',
|
|
59
|
+
min: 30,
|
|
60
|
+
max: 600,
|
|
61
|
+
},
|
|
62
|
+
},
|
|
63
|
+
};
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Nova — ACP Provider
|
|
3
|
+
*
|
|
4
|
+
* Nova by Compass AI - a fully-fledged software engineer
|
|
5
|
+
* https://github.com/Compass-Agentic-Platform/nova
|
|
6
|
+
*
|
|
7
|
+
* Install: npm install -g @compass-ai/nova
|
|
8
|
+
*
|
|
9
|
+
* @type {import('../../../../src/providers/contracts').ProviderModule}
|
|
10
|
+
*/
|
|
11
|
+
module.exports = {
|
|
12
|
+
type: 'nova-acp',
|
|
13
|
+
name: 'Nova (ACP)',
|
|
14
|
+
category: 'acp',
|
|
15
|
+
|
|
16
|
+
displayName: 'Nova',
|
|
17
|
+
icon: '⭐',
|
|
18
|
+
install: 'npm install -g @compass-ai/nova',
|
|
19
|
+
|
|
20
|
+
spawn: {
|
|
21
|
+
command: 'nova',
|
|
22
|
+
args: ['acp'],
|
|
23
|
+
shell: false,
|
|
24
|
+
},
|
|
25
|
+
|
|
26
|
+
auth: [
|
|
27
|
+
{
|
|
28
|
+
type: 'agent',
|
|
29
|
+
id: 'nova',
|
|
30
|
+
name: 'Nova Auth',
|
|
31
|
+
description: 'Authenticate with Compass AI account',
|
|
32
|
+
},
|
|
33
|
+
],
|
|
34
|
+
|
|
35
|
+
settings: {
|
|
36
|
+
approvalAlert: {
|
|
37
|
+
type: 'boolean',
|
|
38
|
+
default: true,
|
|
39
|
+
public: true,
|
|
40
|
+
label: 'Approval Alerts',
|
|
41
|
+
description: 'Show notification when agent requires approval',
|
|
42
|
+
},
|
|
43
|
+
longGeneratingAlert: {
|
|
44
|
+
type: 'boolean',
|
|
45
|
+
default: true,
|
|
46
|
+
public: true,
|
|
47
|
+
label: 'Long Generation Alert',
|
|
48
|
+
description: 'Alert when generation takes too long',
|
|
49
|
+
},
|
|
50
|
+
longGeneratingThresholdSec: {
|
|
51
|
+
type: 'number',
|
|
52
|
+
default: 180,
|
|
53
|
+
public: true,
|
|
54
|
+
label: 'Long Generation Threshold (sec)',
|
|
55
|
+
min: 30,
|
|
56
|
+
max: 600,
|
|
57
|
+
},
|
|
58
|
+
},
|
|
59
|
+
};
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OpenClaw — ACP Provider
|
|
3
|
+
*
|
|
4
|
+
* AI coding assistant by OpenClaw
|
|
5
|
+
* https://docs.openclaw.ai/cli/acp
|
|
6
|
+
*
|
|
7
|
+
* Install: See https://docs.openclaw.ai/cli/
|
|
8
|
+
*
|
|
9
|
+
* @type {import('../../../../src/providers/contracts').ProviderModule}
|
|
10
|
+
*/
|
|
11
|
+
module.exports = {
|
|
12
|
+
type: 'openclaw-acp',
|
|
13
|
+
name: 'OpenClaw (ACP)',
|
|
14
|
+
category: 'acp',
|
|
15
|
+
|
|
16
|
+
displayName: 'OpenClaw',
|
|
17
|
+
icon: '🦞',
|
|
18
|
+
install: 'See https://docs.openclaw.ai/cli/',
|
|
19
|
+
|
|
20
|
+
spawn: {
|
|
21
|
+
command: 'openclaw',
|
|
22
|
+
args: ['acp'],
|
|
23
|
+
shell: false,
|
|
24
|
+
},
|
|
25
|
+
|
|
26
|
+
auth: [
|
|
27
|
+
{
|
|
28
|
+
type: 'agent',
|
|
29
|
+
id: 'openclaw',
|
|
30
|
+
name: 'OpenClaw Auth',
|
|
31
|
+
description: 'Authenticate with OpenClaw account',
|
|
32
|
+
},
|
|
33
|
+
],
|
|
34
|
+
|
|
35
|
+
settings: {
|
|
36
|
+
approvalAlert: {
|
|
37
|
+
type: 'boolean',
|
|
38
|
+
default: true,
|
|
39
|
+
public: true,
|
|
40
|
+
label: 'Approval Alerts',
|
|
41
|
+
description: 'Show notification when agent requires approval',
|
|
42
|
+
},
|
|
43
|
+
longGeneratingAlert: {
|
|
44
|
+
type: 'boolean',
|
|
45
|
+
default: true,
|
|
46
|
+
public: true,
|
|
47
|
+
label: 'Long Generation Alert',
|
|
48
|
+
description: 'Alert when generation takes too long',
|
|
49
|
+
},
|
|
50
|
+
longGeneratingThresholdSec: {
|
|
51
|
+
type: 'number',
|
|
52
|
+
default: 180,
|
|
53
|
+
public: true,
|
|
54
|
+
label: 'Long Generation Threshold (sec)',
|
|
55
|
+
min: 30,
|
|
56
|
+
max: 600,
|
|
57
|
+
},
|
|
58
|
+
},
|
|
59
|
+
};
|
|
@@ -1,32 +1,60 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* OpenCode — ACP Provider
|
|
3
3
|
*
|
|
4
|
-
*
|
|
4
|
+
* The open source coding agent
|
|
5
|
+
* https://github.com/anomalyco/opencode
|
|
5
6
|
*
|
|
6
|
-
*
|
|
7
|
+
* Install: Binary download from GitHub releases
|
|
8
|
+
* See: https://github.com/anomalyco/opencode/releases
|
|
7
9
|
*
|
|
8
10
|
* @type {import('../../../../src/providers/contracts').ProviderModule}
|
|
9
11
|
*/
|
|
10
12
|
module.exports = {
|
|
11
|
-
type: 'opencode',
|
|
12
|
-
name: 'OpenCode',
|
|
13
|
+
type: 'opencode-acp',
|
|
14
|
+
name: 'OpenCode (ACP)',
|
|
13
15
|
category: 'acp',
|
|
14
16
|
|
|
15
17
|
displayName: 'OpenCode',
|
|
16
|
-
icon: '
|
|
18
|
+
icon: '📦',
|
|
19
|
+
install: 'Download from https://github.com/anomalyco/opencode/releases',
|
|
17
20
|
|
|
18
21
|
spawn: {
|
|
19
22
|
command: 'opencode',
|
|
20
|
-
args: [
|
|
23
|
+
args: [],
|
|
21
24
|
shell: false,
|
|
22
25
|
},
|
|
23
26
|
|
|
27
|
+
auth: [
|
|
28
|
+
{
|
|
29
|
+
type: 'agent',
|
|
30
|
+
id: 'opencode-settings',
|
|
31
|
+
name: 'OpenCode Settings',
|
|
32
|
+
description: 'Configure provider through OpenCode interactive setup',
|
|
33
|
+
},
|
|
34
|
+
],
|
|
35
|
+
|
|
24
36
|
settings: {
|
|
25
37
|
approvalAlert: {
|
|
26
38
|
type: 'boolean',
|
|
27
39
|
default: true,
|
|
28
40
|
public: true,
|
|
29
41
|
label: 'Approval Alerts',
|
|
42
|
+
description: 'Show notification when OpenCode 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,
|
|
30
58
|
},
|
|
31
59
|
},
|
|
32
60
|
};
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OpenHands — ACP Provider
|
|
3
|
+
*
|
|
4
|
+
* Open-source AI developer platform by AllHands AI
|
|
5
|
+
* https://docs.openhands.dev/openhands/usage/run-openhands/acp
|
|
6
|
+
*
|
|
7
|
+
* Install: pip install openhands (Python/Docker)
|
|
8
|
+
*
|
|
9
|
+
* @type {import('../../../../src/providers/contracts').ProviderModule}
|
|
10
|
+
*/
|
|
11
|
+
module.exports = {
|
|
12
|
+
type: 'openhands-acp',
|
|
13
|
+
name: 'OpenHands (ACP)',
|
|
14
|
+
category: 'acp',
|
|
15
|
+
|
|
16
|
+
displayName: 'OpenHands',
|
|
17
|
+
icon: '✋',
|
|
18
|
+
install: 'pip install openhands (Python/Docker)',
|
|
19
|
+
|
|
20
|
+
spawn: {
|
|
21
|
+
command: 'openhands',
|
|
22
|
+
args: ['acp'],
|
|
23
|
+
shell: false,
|
|
24
|
+
},
|
|
25
|
+
|
|
26
|
+
auth: [
|
|
27
|
+
{
|
|
28
|
+
type: 'agent',
|
|
29
|
+
id: 'openhands',
|
|
30
|
+
name: 'OpenHands Auth',
|
|
31
|
+
description: 'Configure provider through OpenHands setup',
|
|
32
|
+
},
|
|
33
|
+
],
|
|
34
|
+
|
|
35
|
+
settings: {
|
|
36
|
+
approvalAlert: {
|
|
37
|
+
type: 'boolean',
|
|
38
|
+
default: true,
|
|
39
|
+
public: true,
|
|
40
|
+
label: 'Approval Alerts',
|
|
41
|
+
description: 'Show notification when agent requires approval',
|
|
42
|
+
},
|
|
43
|
+
longGeneratingAlert: {
|
|
44
|
+
type: 'boolean',
|
|
45
|
+
default: true,
|
|
46
|
+
public: true,
|
|
47
|
+
label: 'Long Generation Alert',
|
|
48
|
+
description: 'Alert when generation takes too long',
|
|
49
|
+
},
|
|
50
|
+
longGeneratingThresholdSec: {
|
|
51
|
+
type: 'number',
|
|
52
|
+
default: 180,
|
|
53
|
+
public: true,
|
|
54
|
+
label: 'Long Generation Threshold (sec)',
|
|
55
|
+
min: 30,
|
|
56
|
+
max: 600,
|
|
57
|
+
},
|
|
58
|
+
},
|
|
59
|
+
};
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* pi ACP — ACP Provider
|
|
3
|
+
*
|
|
4
|
+
* ACP adapter for pi coding agent
|
|
5
|
+
* https://github.com/svkozak/pi-acp
|
|
6
|
+
*
|
|
7
|
+
* Install: npm install -g pi-acp
|
|
8
|
+
*
|
|
9
|
+
* @type {import('../../../../src/providers/contracts').ProviderModule}
|
|
10
|
+
*/
|
|
11
|
+
module.exports = {
|
|
12
|
+
type: 'pi-acp',
|
|
13
|
+
name: 'pi ACP',
|
|
14
|
+
category: 'acp',
|
|
15
|
+
|
|
16
|
+
displayName: 'pi ACP',
|
|
17
|
+
icon: '🥧',
|
|
18
|
+
install: 'npm install -g pi-acp',
|
|
19
|
+
|
|
20
|
+
spawn: {
|
|
21
|
+
command: 'pi-acp',
|
|
22
|
+
args: [],
|
|
23
|
+
shell: false,
|
|
24
|
+
},
|
|
25
|
+
|
|
26
|
+
auth: [
|
|
27
|
+
{
|
|
28
|
+
type: 'agent',
|
|
29
|
+
id: 'pi',
|
|
30
|
+
name: 'pi Auth',
|
|
31
|
+
description: 'Configure provider through pi setup',
|
|
32
|
+
},
|
|
33
|
+
],
|
|
34
|
+
|
|
35
|
+
settings: {
|
|
36
|
+
approvalAlert: {
|
|
37
|
+
type: 'boolean',
|
|
38
|
+
default: true,
|
|
39
|
+
public: true,
|
|
40
|
+
label: 'Approval Alerts',
|
|
41
|
+
description: 'Show notification when agent requires approval',
|
|
42
|
+
},
|
|
43
|
+
longGeneratingAlert: {
|
|
44
|
+
type: 'boolean',
|
|
45
|
+
default: true,
|
|
46
|
+
public: true,
|
|
47
|
+
label: 'Long Generation Alert',
|
|
48
|
+
description: 'Alert when generation takes too long',
|
|
49
|
+
},
|
|
50
|
+
longGeneratingThresholdSec: {
|
|
51
|
+
type: 'number',
|
|
52
|
+
default: 180,
|
|
53
|
+
public: true,
|
|
54
|
+
label: 'Long Generation Threshold (sec)',
|
|
55
|
+
min: 30,
|
|
56
|
+
max: 600,
|
|
57
|
+
},
|
|
58
|
+
},
|
|
59
|
+
};
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Qoder CLI — ACP Provider
|
|
3
|
+
*
|
|
4
|
+
* AI coding assistant with agentic capabilities
|
|
5
|
+
*
|
|
6
|
+
* Install: npm install -g @qoder-ai/qodercli
|
|
7
|
+
*
|
|
8
|
+
* @type {import('../../../../src/providers/contracts').ProviderModule}
|
|
9
|
+
*/
|
|
10
|
+
module.exports = {
|
|
11
|
+
type: 'qoder-acp',
|
|
12
|
+
name: 'Qoder CLI (ACP)',
|
|
13
|
+
category: 'acp',
|
|
14
|
+
|
|
15
|
+
displayName: 'Qoder CLI',
|
|
16
|
+
icon: '🔷',
|
|
17
|
+
install: 'npm install -g @qoder-ai/qodercli',
|
|
18
|
+
|
|
19
|
+
spawn: {
|
|
20
|
+
command: 'qodercli',
|
|
21
|
+
args: ['--acp'],
|
|
22
|
+
shell: false,
|
|
23
|
+
},
|
|
24
|
+
|
|
25
|
+
auth: [
|
|
26
|
+
{
|
|
27
|
+
type: 'agent',
|
|
28
|
+
id: 'qoder',
|
|
29
|
+
name: 'Qoder Auth',
|
|
30
|
+
description: 'Authenticate through Qoder setup',
|
|
31
|
+
},
|
|
32
|
+
],
|
|
33
|
+
|
|
34
|
+
settings: {
|
|
35
|
+
approvalAlert: {
|
|
36
|
+
type: 'boolean',
|
|
37
|
+
default: true,
|
|
38
|
+
public: true,
|
|
39
|
+
label: 'Approval Alerts',
|
|
40
|
+
description: 'Show notification when agent requires approval',
|
|
41
|
+
},
|
|
42
|
+
longGeneratingAlert: {
|
|
43
|
+
type: 'boolean',
|
|
44
|
+
default: true,
|
|
45
|
+
public: true,
|
|
46
|
+
label: 'Long Generation Alert',
|
|
47
|
+
description: 'Alert when generation takes too long',
|
|
48
|
+
},
|
|
49
|
+
longGeneratingThresholdSec: {
|
|
50
|
+
type: 'number',
|
|
51
|
+
default: 180,
|
|
52
|
+
public: true,
|
|
53
|
+
label: 'Long Generation Threshold (sec)',
|
|
54
|
+
min: 30,
|
|
55
|
+
max: 600,
|
|
56
|
+
},
|
|
57
|
+
},
|
|
58
|
+
};
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Qwen Code — ACP Provider
|
|
3
|
+
*
|
|
4
|
+
* Alibaba's Qwen coding assistant
|
|
5
|
+
* https://github.com/QwenLM/qwen-code
|
|
6
|
+
*
|
|
7
|
+
* Install: npm install -g @qwen-code/qwen-code
|
|
8
|
+
* Auth: DASHSCOPE_API_KEY environment variable
|
|
9
|
+
*
|
|
10
|
+
* @type {import('../../../../src/providers/contracts').ProviderModule}
|
|
11
|
+
*/
|
|
12
|
+
module.exports = {
|
|
13
|
+
type: 'qwen-code-acp',
|
|
14
|
+
name: 'Qwen Code (ACP)',
|
|
15
|
+
category: 'acp',
|
|
16
|
+
|
|
17
|
+
displayName: 'Qwen Code',
|
|
18
|
+
icon: '🟦',
|
|
19
|
+
install: 'npm install -g @qwen-code/qwen-code (requires DASHSCOPE_API_KEY)',
|
|
20
|
+
|
|
21
|
+
spawn: {
|
|
22
|
+
command: 'qwen-code',
|
|
23
|
+
args: ['--acp', '--experimental-skills'],
|
|
24
|
+
shell: false,
|
|
25
|
+
},
|
|
26
|
+
|
|
27
|
+
auth: [
|
|
28
|
+
{
|
|
29
|
+
type: 'env_var',
|
|
30
|
+
id: 'dashscope',
|
|
31
|
+
name: 'DashScope API Key',
|
|
32
|
+
vars: [{ name: 'DASHSCOPE_API_KEY' }],
|
|
33
|
+
link: 'https://dashscope.console.aliyun.com/apiKey',
|
|
34
|
+
},
|
|
35
|
+
],
|
|
36
|
+
|
|
37
|
+
settings: {
|
|
38
|
+
approvalAlert: {
|
|
39
|
+
type: 'boolean',
|
|
40
|
+
default: true,
|
|
41
|
+
public: true,
|
|
42
|
+
label: 'Approval Alerts',
|
|
43
|
+
description: 'Show notification when Qwen Code requires approval',
|
|
44
|
+
},
|
|
45
|
+
longGeneratingAlert: {
|
|
46
|
+
type: 'boolean',
|
|
47
|
+
default: true,
|
|
48
|
+
public: true,
|
|
49
|
+
label: 'Long Generation Alert',
|
|
50
|
+
description: 'Alert when generation takes too long',
|
|
51
|
+
},
|
|
52
|
+
longGeneratingThresholdSec: {
|
|
53
|
+
type: 'number',
|
|
54
|
+
default: 180,
|
|
55
|
+
public: true,
|
|
56
|
+
label: 'Long Generation Threshold (sec)',
|
|
57
|
+
min: 30,
|
|
58
|
+
max: 600,
|
|
59
|
+
},
|
|
60
|
+
},
|
|
61
|
+
};
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Stakpak — ACP Provider
|
|
3
|
+
*
|
|
4
|
+
* Open-source DevOps agent in Rust with enterprise-grade security
|
|
5
|
+
* https://github.com/stakpak/agent
|
|
6
|
+
*
|
|
7
|
+
* Install: Download from https://github.com/stakpak/agent/releases
|
|
8
|
+
*
|
|
9
|
+
* @type {import('../../../../src/providers/contracts').ProviderModule}
|
|
10
|
+
*/
|
|
11
|
+
module.exports = {
|
|
12
|
+
type: 'stakpak-acp',
|
|
13
|
+
name: 'Stakpak (ACP)',
|
|
14
|
+
category: 'acp',
|
|
15
|
+
|
|
16
|
+
displayName: 'Stakpak',
|
|
17
|
+
icon: '🛡️',
|
|
18
|
+
install: 'Download from https://github.com/stakpak/agent/releases',
|
|
19
|
+
|
|
20
|
+
spawn: {
|
|
21
|
+
command: 'stakpak',
|
|
22
|
+
args: ['acp'],
|
|
23
|
+
shell: false,
|
|
24
|
+
},
|
|
25
|
+
|
|
26
|
+
auth: [
|
|
27
|
+
{
|
|
28
|
+
type: 'agent',
|
|
29
|
+
id: 'stakpak',
|
|
30
|
+
name: 'Stakpak Auth',
|
|
31
|
+
description: 'Configure provider through Stakpak setup',
|
|
32
|
+
},
|
|
33
|
+
],
|
|
34
|
+
|
|
35
|
+
settings: {
|
|
36
|
+
approvalAlert: {
|
|
37
|
+
type: 'boolean',
|
|
38
|
+
default: true,
|
|
39
|
+
public: true,
|
|
40
|
+
label: 'Approval Alerts',
|
|
41
|
+
description: 'Show notification when agent requires approval',
|
|
42
|
+
},
|
|
43
|
+
longGeneratingAlert: {
|
|
44
|
+
type: 'boolean',
|
|
45
|
+
default: true,
|
|
46
|
+
public: true,
|
|
47
|
+
label: 'Long Generation Alert',
|
|
48
|
+
description: 'Alert when generation takes too long',
|
|
49
|
+
},
|
|
50
|
+
longGeneratingThresholdSec: {
|
|
51
|
+
type: 'number',
|
|
52
|
+
default: 180,
|
|
53
|
+
public: true,
|
|
54
|
+
label: 'Long Generation Threshold (sec)',
|
|
55
|
+
min: 30,
|
|
56
|
+
max: 600,
|
|
57
|
+
},
|
|
58
|
+
},
|
|
59
|
+
};
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* VT Code — ACP Provider
|
|
3
|
+
*
|
|
4
|
+
* Swift-based coding agent with Zed/ACP integration
|
|
5
|
+
* https://github.com/vinhnx/vtcode
|
|
6
|
+
*
|
|
7
|
+
* Install: npm install -g vtcode
|
|
8
|
+
*
|
|
9
|
+
* @type {import('../../../../src/providers/contracts').ProviderModule}
|
|
10
|
+
*/
|
|
11
|
+
module.exports = {
|
|
12
|
+
type: 'vtcode-acp',
|
|
13
|
+
name: 'VT Code (ACP)',
|
|
14
|
+
category: 'acp',
|
|
15
|
+
|
|
16
|
+
displayName: 'VT Code',
|
|
17
|
+
icon: '🟣',
|
|
18
|
+
install: 'npm install -g vtcode',
|
|
19
|
+
|
|
20
|
+
spawn: {
|
|
21
|
+
command: 'vtcode',
|
|
22
|
+
args: ['acp'],
|
|
23
|
+
shell: false,
|
|
24
|
+
},
|
|
25
|
+
|
|
26
|
+
auth: [
|
|
27
|
+
{
|
|
28
|
+
type: 'agent',
|
|
29
|
+
id: 'vtcode',
|
|
30
|
+
name: 'VT Code Auth',
|
|
31
|
+
description: 'Configure provider through VT Code setup',
|
|
32
|
+
},
|
|
33
|
+
],
|
|
34
|
+
|
|
35
|
+
settings: {
|
|
36
|
+
approvalAlert: {
|
|
37
|
+
type: 'boolean',
|
|
38
|
+
default: true,
|
|
39
|
+
public: true,
|
|
40
|
+
label: 'Approval Alerts',
|
|
41
|
+
description: 'Show notification when agent requires approval',
|
|
42
|
+
},
|
|
43
|
+
longGeneratingAlert: {
|
|
44
|
+
type: 'boolean',
|
|
45
|
+
default: true,
|
|
46
|
+
public: true,
|
|
47
|
+
label: 'Long Generation Alert',
|
|
48
|
+
description: 'Alert when generation takes too long',
|
|
49
|
+
},
|
|
50
|
+
longGeneratingThresholdSec: {
|
|
51
|
+
type: 'number',
|
|
52
|
+
default: 180,
|
|
53
|
+
public: true,
|
|
54
|
+
label: 'Long Generation Threshold (sec)',
|
|
55
|
+
min: 30,
|
|
56
|
+
max: 600,
|
|
57
|
+
},
|
|
58
|
+
},
|
|
59
|
+
};
|