deepcode-ai 0.1.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.
- package/LICENSE +21 -0
- package/README.md +9 -0
- package/dist/chunk-4KEEGKT2.js +5060 -0
- package/dist/chunk-4KEEGKT2.js.map +1 -0
- package/dist/chunk-AAXRI5RV.js +5129 -0
- package/dist/chunk-AAXRI5RV.js.map +1 -0
- package/dist/chunk-APWRVQPJ.js +5173 -0
- package/dist/chunk-APWRVQPJ.js.map +1 -0
- package/dist/chunk-CAHOGANP.js +5168 -0
- package/dist/chunk-CAHOGANP.js.map +1 -0
- package/dist/chunk-FJJL7EIW.js +5168 -0
- package/dist/chunk-FJJL7EIW.js.map +1 -0
- package/dist/chunk-GJCDWQFZ.js +5168 -0
- package/dist/chunk-GJCDWQFZ.js.map +1 -0
- package/dist/chunk-KOC7P5XI.js +5112 -0
- package/dist/chunk-KOC7P5XI.js.map +1 -0
- package/dist/chunk-RM2LOG7S.js +5173 -0
- package/dist/chunk-RM2LOG7S.js.map +1 -0
- package/dist/chunk-RZVJYHLY.js +5094 -0
- package/dist/chunk-RZVJYHLY.js.map +1 -0
- package/dist/chunk-U7CBV2OO.js +5077 -0
- package/dist/chunk-U7CBV2OO.js.map +1 -0
- package/dist/chunk-ULBBL2CT.js +5173 -0
- package/dist/chunk-ULBBL2CT.js.map +1 -0
- package/dist/dist-666VPXNY.js +134 -0
- package/dist/dist-666VPXNY.js.map +1 -0
- package/dist/dist-6KFIWVBN.js +134 -0
- package/dist/dist-6KFIWVBN.js.map +1 -0
- package/dist/dist-GZFQHTL6.js +130 -0
- package/dist/dist-GZFQHTL6.js.map +1 -0
- package/dist/dist-JJUMR3R7.js +130 -0
- package/dist/dist-JJUMR3R7.js.map +1 -0
- package/dist/dist-O5DFAJW3.js +130 -0
- package/dist/dist-O5DFAJW3.js.map +1 -0
- package/dist/dist-OJ34KP2R.js +134 -0
- package/dist/dist-OJ34KP2R.js.map +1 -0
- package/dist/dist-SYNK3FFE.js +130 -0
- package/dist/dist-SYNK3FFE.js.map +1 -0
- package/dist/dist-VGP7VJCS.js +130 -0
- package/dist/dist-VGP7VJCS.js.map +1 -0
- package/dist/dist-WGPZ5MGT.js +130 -0
- package/dist/dist-WGPZ5MGT.js.map +1 -0
- package/dist/dist-WRI7RF64.js +130 -0
- package/dist/dist-WRI7RF64.js.map +1 -0
- package/dist/dist-ZKESO7K3.js +130 -0
- package/dist/dist-ZKESO7K3.js.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +14134 -0
- package/dist/index.js.map +1 -0
- package/package.json +61 -0
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import {
|
|
3
|
+
Agent,
|
|
4
|
+
AnthropicProvider,
|
|
5
|
+
AuditLogger,
|
|
6
|
+
ChainWorkflow,
|
|
7
|
+
ConfigError,
|
|
8
|
+
ConfigLoader,
|
|
9
|
+
DeepCodeError,
|
|
10
|
+
EvaluatorOptimizerWorkflow,
|
|
11
|
+
EventBus,
|
|
12
|
+
GitHubClient,
|
|
13
|
+
GitHubOAuthDeviceFlow,
|
|
14
|
+
LspClient,
|
|
15
|
+
OpenAICompatibleProvider,
|
|
16
|
+
ParallelWorkflow,
|
|
17
|
+
PathNotAllowedError,
|
|
18
|
+
PathSecurity,
|
|
19
|
+
PermissionDeniedError,
|
|
20
|
+
PermissionGateway,
|
|
21
|
+
ProviderError,
|
|
22
|
+
ProviderManager,
|
|
23
|
+
SessionManager,
|
|
24
|
+
SubagentManager,
|
|
25
|
+
TaskPlanSchema,
|
|
26
|
+
TaskPlanner,
|
|
27
|
+
TaskSchema,
|
|
28
|
+
TaskStatusSchema,
|
|
29
|
+
TelemetryCollector,
|
|
30
|
+
ToolCache,
|
|
31
|
+
ToolExecutionError,
|
|
32
|
+
ToolRegistry,
|
|
33
|
+
WorkflowError,
|
|
34
|
+
analyzeCodeTool,
|
|
35
|
+
bashTool,
|
|
36
|
+
cacheKey,
|
|
37
|
+
classifyShellCommand,
|
|
38
|
+
collectSecretValues,
|
|
39
|
+
createDefaultToolRegistry,
|
|
40
|
+
defineTool,
|
|
41
|
+
editFileTool,
|
|
42
|
+
execFileAsync,
|
|
43
|
+
formatErrorChain,
|
|
44
|
+
gitTool,
|
|
45
|
+
githubHostnameFromEnterpriseUrl,
|
|
46
|
+
isSecretPath,
|
|
47
|
+
lintTool,
|
|
48
|
+
listDirTool,
|
|
49
|
+
loginWithGitHubCli,
|
|
50
|
+
normalizeGitHubWebBase,
|
|
51
|
+
openExternalUrl,
|
|
52
|
+
parseGitHubRemote,
|
|
53
|
+
pickLanguageServer,
|
|
54
|
+
readFileTool,
|
|
55
|
+
readGitHubCliToken,
|
|
56
|
+
redactSecrets,
|
|
57
|
+
redactText,
|
|
58
|
+
runShell,
|
|
59
|
+
runToolEffect,
|
|
60
|
+
searchFilesTool,
|
|
61
|
+
searchSymbolsTool,
|
|
62
|
+
searchTextTool,
|
|
63
|
+
testTool,
|
|
64
|
+
toOpenAICompatibleMessages,
|
|
65
|
+
traverseErrorChain,
|
|
66
|
+
writeFileTool
|
|
67
|
+
} from "./chunk-APWRVQPJ.js";
|
|
68
|
+
export {
|
|
69
|
+
Agent,
|
|
70
|
+
AnthropicProvider,
|
|
71
|
+
AuditLogger,
|
|
72
|
+
ChainWorkflow,
|
|
73
|
+
ConfigError,
|
|
74
|
+
ConfigLoader,
|
|
75
|
+
DeepCodeError,
|
|
76
|
+
EvaluatorOptimizerWorkflow,
|
|
77
|
+
EventBus,
|
|
78
|
+
GitHubClient,
|
|
79
|
+
GitHubOAuthDeviceFlow,
|
|
80
|
+
LspClient,
|
|
81
|
+
OpenAICompatibleProvider,
|
|
82
|
+
ParallelWorkflow,
|
|
83
|
+
PathNotAllowedError,
|
|
84
|
+
PathSecurity,
|
|
85
|
+
PermissionDeniedError,
|
|
86
|
+
PermissionGateway,
|
|
87
|
+
ProviderError,
|
|
88
|
+
ProviderManager,
|
|
89
|
+
SessionManager,
|
|
90
|
+
SubagentManager,
|
|
91
|
+
TaskPlanSchema,
|
|
92
|
+
TaskPlanner,
|
|
93
|
+
TaskSchema,
|
|
94
|
+
TaskStatusSchema,
|
|
95
|
+
TelemetryCollector,
|
|
96
|
+
ToolCache,
|
|
97
|
+
ToolExecutionError,
|
|
98
|
+
ToolRegistry,
|
|
99
|
+
WorkflowError,
|
|
100
|
+
analyzeCodeTool,
|
|
101
|
+
bashTool,
|
|
102
|
+
cacheKey,
|
|
103
|
+
classifyShellCommand,
|
|
104
|
+
collectSecretValues,
|
|
105
|
+
createDefaultToolRegistry,
|
|
106
|
+
defineTool,
|
|
107
|
+
editFileTool,
|
|
108
|
+
execFileAsync,
|
|
109
|
+
formatErrorChain,
|
|
110
|
+
gitTool,
|
|
111
|
+
githubHostnameFromEnterpriseUrl,
|
|
112
|
+
isSecretPath,
|
|
113
|
+
lintTool,
|
|
114
|
+
listDirTool,
|
|
115
|
+
loginWithGitHubCli,
|
|
116
|
+
normalizeGitHubWebBase,
|
|
117
|
+
openExternalUrl,
|
|
118
|
+
parseGitHubRemote,
|
|
119
|
+
pickLanguageServer,
|
|
120
|
+
readFileTool,
|
|
121
|
+
readGitHubCliToken,
|
|
122
|
+
redactSecrets,
|
|
123
|
+
redactText,
|
|
124
|
+
runShell,
|
|
125
|
+
runToolEffect,
|
|
126
|
+
searchFilesTool,
|
|
127
|
+
searchSymbolsTool,
|
|
128
|
+
searchTextTool,
|
|
129
|
+
testTool,
|
|
130
|
+
toOpenAICompatibleMessages,
|
|
131
|
+
traverseErrorChain,
|
|
132
|
+
writeFileTool
|
|
133
|
+
};
|
|
134
|
+
//# sourceMappingURL=dist-666VPXNY.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import {
|
|
3
|
+
Agent,
|
|
4
|
+
AnthropicProvider,
|
|
5
|
+
AuditLogger,
|
|
6
|
+
ChainWorkflow,
|
|
7
|
+
ConfigError,
|
|
8
|
+
ConfigLoader,
|
|
9
|
+
DeepCodeError,
|
|
10
|
+
EvaluatorOptimizerWorkflow,
|
|
11
|
+
EventBus,
|
|
12
|
+
GitHubClient,
|
|
13
|
+
GitHubOAuthDeviceFlow,
|
|
14
|
+
LspClient,
|
|
15
|
+
OpenAICompatibleProvider,
|
|
16
|
+
ParallelWorkflow,
|
|
17
|
+
PathNotAllowedError,
|
|
18
|
+
PathSecurity,
|
|
19
|
+
PermissionDeniedError,
|
|
20
|
+
PermissionGateway,
|
|
21
|
+
ProviderError,
|
|
22
|
+
ProviderManager,
|
|
23
|
+
SessionManager,
|
|
24
|
+
SubagentManager,
|
|
25
|
+
TaskPlanSchema,
|
|
26
|
+
TaskPlanner,
|
|
27
|
+
TaskSchema,
|
|
28
|
+
TaskStatusSchema,
|
|
29
|
+
TelemetryCollector,
|
|
30
|
+
ToolCache,
|
|
31
|
+
ToolExecutionError,
|
|
32
|
+
ToolRegistry,
|
|
33
|
+
WorkflowError,
|
|
34
|
+
analyzeCodeTool,
|
|
35
|
+
bashTool,
|
|
36
|
+
cacheKey,
|
|
37
|
+
classifyShellCommand,
|
|
38
|
+
collectSecretValues,
|
|
39
|
+
createDefaultToolRegistry,
|
|
40
|
+
defineTool,
|
|
41
|
+
editFileTool,
|
|
42
|
+
execFileAsync,
|
|
43
|
+
formatErrorChain,
|
|
44
|
+
gitTool,
|
|
45
|
+
githubHostnameFromEnterpriseUrl,
|
|
46
|
+
isSecretPath,
|
|
47
|
+
lintTool,
|
|
48
|
+
listDirTool,
|
|
49
|
+
loginWithGitHubCli,
|
|
50
|
+
normalizeGitHubWebBase,
|
|
51
|
+
openExternalUrl,
|
|
52
|
+
parseGitHubRemote,
|
|
53
|
+
pickLanguageServer,
|
|
54
|
+
readFileTool,
|
|
55
|
+
readGitHubCliToken,
|
|
56
|
+
redactSecrets,
|
|
57
|
+
redactText,
|
|
58
|
+
runShell,
|
|
59
|
+
runToolEffect,
|
|
60
|
+
searchFilesTool,
|
|
61
|
+
searchSymbolsTool,
|
|
62
|
+
searchTextTool,
|
|
63
|
+
testTool,
|
|
64
|
+
toOpenAICompatibleMessages,
|
|
65
|
+
traverseErrorChain,
|
|
66
|
+
writeFileTool
|
|
67
|
+
} from "./chunk-RM2LOG7S.js";
|
|
68
|
+
export {
|
|
69
|
+
Agent,
|
|
70
|
+
AnthropicProvider,
|
|
71
|
+
AuditLogger,
|
|
72
|
+
ChainWorkflow,
|
|
73
|
+
ConfigError,
|
|
74
|
+
ConfigLoader,
|
|
75
|
+
DeepCodeError,
|
|
76
|
+
EvaluatorOptimizerWorkflow,
|
|
77
|
+
EventBus,
|
|
78
|
+
GitHubClient,
|
|
79
|
+
GitHubOAuthDeviceFlow,
|
|
80
|
+
LspClient,
|
|
81
|
+
OpenAICompatibleProvider,
|
|
82
|
+
ParallelWorkflow,
|
|
83
|
+
PathNotAllowedError,
|
|
84
|
+
PathSecurity,
|
|
85
|
+
PermissionDeniedError,
|
|
86
|
+
PermissionGateway,
|
|
87
|
+
ProviderError,
|
|
88
|
+
ProviderManager,
|
|
89
|
+
SessionManager,
|
|
90
|
+
SubagentManager,
|
|
91
|
+
TaskPlanSchema,
|
|
92
|
+
TaskPlanner,
|
|
93
|
+
TaskSchema,
|
|
94
|
+
TaskStatusSchema,
|
|
95
|
+
TelemetryCollector,
|
|
96
|
+
ToolCache,
|
|
97
|
+
ToolExecutionError,
|
|
98
|
+
ToolRegistry,
|
|
99
|
+
WorkflowError,
|
|
100
|
+
analyzeCodeTool,
|
|
101
|
+
bashTool,
|
|
102
|
+
cacheKey,
|
|
103
|
+
classifyShellCommand,
|
|
104
|
+
collectSecretValues,
|
|
105
|
+
createDefaultToolRegistry,
|
|
106
|
+
defineTool,
|
|
107
|
+
editFileTool,
|
|
108
|
+
execFileAsync,
|
|
109
|
+
formatErrorChain,
|
|
110
|
+
gitTool,
|
|
111
|
+
githubHostnameFromEnterpriseUrl,
|
|
112
|
+
isSecretPath,
|
|
113
|
+
lintTool,
|
|
114
|
+
listDirTool,
|
|
115
|
+
loginWithGitHubCli,
|
|
116
|
+
normalizeGitHubWebBase,
|
|
117
|
+
openExternalUrl,
|
|
118
|
+
parseGitHubRemote,
|
|
119
|
+
pickLanguageServer,
|
|
120
|
+
readFileTool,
|
|
121
|
+
readGitHubCliToken,
|
|
122
|
+
redactSecrets,
|
|
123
|
+
redactText,
|
|
124
|
+
runShell,
|
|
125
|
+
runToolEffect,
|
|
126
|
+
searchFilesTool,
|
|
127
|
+
searchSymbolsTool,
|
|
128
|
+
searchTextTool,
|
|
129
|
+
testTool,
|
|
130
|
+
toOpenAICompatibleMessages,
|
|
131
|
+
traverseErrorChain,
|
|
132
|
+
writeFileTool
|
|
133
|
+
};
|
|
134
|
+
//# sourceMappingURL=dist-6KFIWVBN.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import {
|
|
3
|
+
Agent,
|
|
4
|
+
AnthropicProvider,
|
|
5
|
+
AuditLogger,
|
|
6
|
+
ChainWorkflow,
|
|
7
|
+
ConfigError,
|
|
8
|
+
ConfigLoader,
|
|
9
|
+
DeepCodeError,
|
|
10
|
+
EvaluatorOptimizerWorkflow,
|
|
11
|
+
EventBus,
|
|
12
|
+
GitHubClient,
|
|
13
|
+
GitHubOAuthDeviceFlow,
|
|
14
|
+
LspClient,
|
|
15
|
+
OpenAICompatibleProvider,
|
|
16
|
+
ParallelWorkflow,
|
|
17
|
+
PathNotAllowedError,
|
|
18
|
+
PathSecurity,
|
|
19
|
+
PermissionDeniedError,
|
|
20
|
+
PermissionGateway,
|
|
21
|
+
ProviderError,
|
|
22
|
+
ProviderManager,
|
|
23
|
+
SessionManager,
|
|
24
|
+
SubagentManager,
|
|
25
|
+
TaskPlanSchema,
|
|
26
|
+
TaskPlanner,
|
|
27
|
+
TaskSchema,
|
|
28
|
+
TaskStatusSchema,
|
|
29
|
+
TelemetryCollector,
|
|
30
|
+
ToolCache,
|
|
31
|
+
ToolExecutionError,
|
|
32
|
+
ToolRegistry,
|
|
33
|
+
WorkflowError,
|
|
34
|
+
analyzeCodeTool,
|
|
35
|
+
bashTool,
|
|
36
|
+
cacheKey,
|
|
37
|
+
classifyShellCommand,
|
|
38
|
+
collectSecretValues,
|
|
39
|
+
createDefaultToolRegistry,
|
|
40
|
+
defineTool,
|
|
41
|
+
editFileTool,
|
|
42
|
+
execFileAsync,
|
|
43
|
+
gitTool,
|
|
44
|
+
githubHostnameFromEnterpriseUrl,
|
|
45
|
+
isSecretPath,
|
|
46
|
+
lintTool,
|
|
47
|
+
listDirTool,
|
|
48
|
+
loginWithGitHubCli,
|
|
49
|
+
normalizeGitHubWebBase,
|
|
50
|
+
openExternalUrl,
|
|
51
|
+
parseGitHubRemote,
|
|
52
|
+
pickLanguageServer,
|
|
53
|
+
readFileTool,
|
|
54
|
+
readGitHubCliToken,
|
|
55
|
+
redactSecrets,
|
|
56
|
+
redactText,
|
|
57
|
+
runShell,
|
|
58
|
+
runToolEffect,
|
|
59
|
+
searchFilesTool,
|
|
60
|
+
searchSymbolsTool,
|
|
61
|
+
searchTextTool,
|
|
62
|
+
testTool,
|
|
63
|
+
toOpenAICompatibleMessages,
|
|
64
|
+
writeFileTool
|
|
65
|
+
} from "./chunk-U7CBV2OO.js";
|
|
66
|
+
export {
|
|
67
|
+
Agent,
|
|
68
|
+
AnthropicProvider,
|
|
69
|
+
AuditLogger,
|
|
70
|
+
ChainWorkflow,
|
|
71
|
+
ConfigError,
|
|
72
|
+
ConfigLoader,
|
|
73
|
+
DeepCodeError,
|
|
74
|
+
EvaluatorOptimizerWorkflow,
|
|
75
|
+
EventBus,
|
|
76
|
+
GitHubClient,
|
|
77
|
+
GitHubOAuthDeviceFlow,
|
|
78
|
+
LspClient,
|
|
79
|
+
OpenAICompatibleProvider,
|
|
80
|
+
ParallelWorkflow,
|
|
81
|
+
PathNotAllowedError,
|
|
82
|
+
PathSecurity,
|
|
83
|
+
PermissionDeniedError,
|
|
84
|
+
PermissionGateway,
|
|
85
|
+
ProviderError,
|
|
86
|
+
ProviderManager,
|
|
87
|
+
SessionManager,
|
|
88
|
+
SubagentManager,
|
|
89
|
+
TaskPlanSchema,
|
|
90
|
+
TaskPlanner,
|
|
91
|
+
TaskSchema,
|
|
92
|
+
TaskStatusSchema,
|
|
93
|
+
TelemetryCollector,
|
|
94
|
+
ToolCache,
|
|
95
|
+
ToolExecutionError,
|
|
96
|
+
ToolRegistry,
|
|
97
|
+
WorkflowError,
|
|
98
|
+
analyzeCodeTool,
|
|
99
|
+
bashTool,
|
|
100
|
+
cacheKey,
|
|
101
|
+
classifyShellCommand,
|
|
102
|
+
collectSecretValues,
|
|
103
|
+
createDefaultToolRegistry,
|
|
104
|
+
defineTool,
|
|
105
|
+
editFileTool,
|
|
106
|
+
execFileAsync,
|
|
107
|
+
gitTool,
|
|
108
|
+
githubHostnameFromEnterpriseUrl,
|
|
109
|
+
isSecretPath,
|
|
110
|
+
lintTool,
|
|
111
|
+
listDirTool,
|
|
112
|
+
loginWithGitHubCli,
|
|
113
|
+
normalizeGitHubWebBase,
|
|
114
|
+
openExternalUrl,
|
|
115
|
+
parseGitHubRemote,
|
|
116
|
+
pickLanguageServer,
|
|
117
|
+
readFileTool,
|
|
118
|
+
readGitHubCliToken,
|
|
119
|
+
redactSecrets,
|
|
120
|
+
redactText,
|
|
121
|
+
runShell,
|
|
122
|
+
runToolEffect,
|
|
123
|
+
searchFilesTool,
|
|
124
|
+
searchSymbolsTool,
|
|
125
|
+
searchTextTool,
|
|
126
|
+
testTool,
|
|
127
|
+
toOpenAICompatibleMessages,
|
|
128
|
+
writeFileTool
|
|
129
|
+
};
|
|
130
|
+
//# sourceMappingURL=dist-GZFQHTL6.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import {
|
|
3
|
+
Agent,
|
|
4
|
+
AnthropicProvider,
|
|
5
|
+
AuditLogger,
|
|
6
|
+
ChainWorkflow,
|
|
7
|
+
ConfigError,
|
|
8
|
+
ConfigLoader,
|
|
9
|
+
DeepCodeError,
|
|
10
|
+
EvaluatorOptimizerWorkflow,
|
|
11
|
+
EventBus,
|
|
12
|
+
GitHubClient,
|
|
13
|
+
GitHubOAuthDeviceFlow,
|
|
14
|
+
LspClient,
|
|
15
|
+
OpenAICompatibleProvider,
|
|
16
|
+
ParallelWorkflow,
|
|
17
|
+
PathNotAllowedError,
|
|
18
|
+
PathSecurity,
|
|
19
|
+
PermissionDeniedError,
|
|
20
|
+
PermissionGateway,
|
|
21
|
+
ProviderError,
|
|
22
|
+
ProviderManager,
|
|
23
|
+
SessionManager,
|
|
24
|
+
SubagentManager,
|
|
25
|
+
TaskPlanSchema,
|
|
26
|
+
TaskPlanner,
|
|
27
|
+
TaskSchema,
|
|
28
|
+
TaskStatusSchema,
|
|
29
|
+
TelemetryCollector,
|
|
30
|
+
ToolCache,
|
|
31
|
+
ToolExecutionError,
|
|
32
|
+
ToolRegistry,
|
|
33
|
+
WorkflowError,
|
|
34
|
+
analyzeCodeTool,
|
|
35
|
+
bashTool,
|
|
36
|
+
cacheKey,
|
|
37
|
+
classifyShellCommand,
|
|
38
|
+
collectSecretValues,
|
|
39
|
+
createDefaultToolRegistry,
|
|
40
|
+
defineTool,
|
|
41
|
+
editFileTool,
|
|
42
|
+
execFileAsync,
|
|
43
|
+
gitTool,
|
|
44
|
+
githubHostnameFromEnterpriseUrl,
|
|
45
|
+
isSecretPath,
|
|
46
|
+
lintTool,
|
|
47
|
+
listDirTool,
|
|
48
|
+
loginWithGitHubCli,
|
|
49
|
+
normalizeGitHubWebBase,
|
|
50
|
+
openExternalUrl,
|
|
51
|
+
parseGitHubRemote,
|
|
52
|
+
pickLanguageServer,
|
|
53
|
+
readFileTool,
|
|
54
|
+
readGitHubCliToken,
|
|
55
|
+
redactSecrets,
|
|
56
|
+
redactText,
|
|
57
|
+
runShell,
|
|
58
|
+
runToolEffect,
|
|
59
|
+
searchFilesTool,
|
|
60
|
+
searchSymbolsTool,
|
|
61
|
+
searchTextTool,
|
|
62
|
+
testTool,
|
|
63
|
+
toOpenAICompatibleMessages,
|
|
64
|
+
writeFileTool
|
|
65
|
+
} from "./chunk-FJJL7EIW.js";
|
|
66
|
+
export {
|
|
67
|
+
Agent,
|
|
68
|
+
AnthropicProvider,
|
|
69
|
+
AuditLogger,
|
|
70
|
+
ChainWorkflow,
|
|
71
|
+
ConfigError,
|
|
72
|
+
ConfigLoader,
|
|
73
|
+
DeepCodeError,
|
|
74
|
+
EvaluatorOptimizerWorkflow,
|
|
75
|
+
EventBus,
|
|
76
|
+
GitHubClient,
|
|
77
|
+
GitHubOAuthDeviceFlow,
|
|
78
|
+
LspClient,
|
|
79
|
+
OpenAICompatibleProvider,
|
|
80
|
+
ParallelWorkflow,
|
|
81
|
+
PathNotAllowedError,
|
|
82
|
+
PathSecurity,
|
|
83
|
+
PermissionDeniedError,
|
|
84
|
+
PermissionGateway,
|
|
85
|
+
ProviderError,
|
|
86
|
+
ProviderManager,
|
|
87
|
+
SessionManager,
|
|
88
|
+
SubagentManager,
|
|
89
|
+
TaskPlanSchema,
|
|
90
|
+
TaskPlanner,
|
|
91
|
+
TaskSchema,
|
|
92
|
+
TaskStatusSchema,
|
|
93
|
+
TelemetryCollector,
|
|
94
|
+
ToolCache,
|
|
95
|
+
ToolExecutionError,
|
|
96
|
+
ToolRegistry,
|
|
97
|
+
WorkflowError,
|
|
98
|
+
analyzeCodeTool,
|
|
99
|
+
bashTool,
|
|
100
|
+
cacheKey,
|
|
101
|
+
classifyShellCommand,
|
|
102
|
+
collectSecretValues,
|
|
103
|
+
createDefaultToolRegistry,
|
|
104
|
+
defineTool,
|
|
105
|
+
editFileTool,
|
|
106
|
+
execFileAsync,
|
|
107
|
+
gitTool,
|
|
108
|
+
githubHostnameFromEnterpriseUrl,
|
|
109
|
+
isSecretPath,
|
|
110
|
+
lintTool,
|
|
111
|
+
listDirTool,
|
|
112
|
+
loginWithGitHubCli,
|
|
113
|
+
normalizeGitHubWebBase,
|
|
114
|
+
openExternalUrl,
|
|
115
|
+
parseGitHubRemote,
|
|
116
|
+
pickLanguageServer,
|
|
117
|
+
readFileTool,
|
|
118
|
+
readGitHubCliToken,
|
|
119
|
+
redactSecrets,
|
|
120
|
+
redactText,
|
|
121
|
+
runShell,
|
|
122
|
+
runToolEffect,
|
|
123
|
+
searchFilesTool,
|
|
124
|
+
searchSymbolsTool,
|
|
125
|
+
searchTextTool,
|
|
126
|
+
testTool,
|
|
127
|
+
toOpenAICompatibleMessages,
|
|
128
|
+
writeFileTool
|
|
129
|
+
};
|
|
130
|
+
//# sourceMappingURL=dist-JJUMR3R7.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import {
|
|
3
|
+
Agent,
|
|
4
|
+
AnthropicProvider,
|
|
5
|
+
AuditLogger,
|
|
6
|
+
ChainWorkflow,
|
|
7
|
+
ConfigError,
|
|
8
|
+
ConfigLoader,
|
|
9
|
+
DeepCodeError,
|
|
10
|
+
EvaluatorOptimizerWorkflow,
|
|
11
|
+
EventBus,
|
|
12
|
+
GitHubClient,
|
|
13
|
+
GitHubOAuthDeviceFlow,
|
|
14
|
+
LspClient,
|
|
15
|
+
OpenAICompatibleProvider,
|
|
16
|
+
ParallelWorkflow,
|
|
17
|
+
PathNotAllowedError,
|
|
18
|
+
PathSecurity,
|
|
19
|
+
PermissionDeniedError,
|
|
20
|
+
PermissionGateway,
|
|
21
|
+
ProviderError,
|
|
22
|
+
ProviderManager,
|
|
23
|
+
SessionManager,
|
|
24
|
+
SubagentManager,
|
|
25
|
+
TaskPlanSchema,
|
|
26
|
+
TaskPlanner,
|
|
27
|
+
TaskSchema,
|
|
28
|
+
TaskStatusSchema,
|
|
29
|
+
TelemetryCollector,
|
|
30
|
+
ToolCache,
|
|
31
|
+
ToolExecutionError,
|
|
32
|
+
ToolRegistry,
|
|
33
|
+
WorkflowError,
|
|
34
|
+
analyzeCodeTool,
|
|
35
|
+
bashTool,
|
|
36
|
+
cacheKey,
|
|
37
|
+
classifyShellCommand,
|
|
38
|
+
collectSecretValues,
|
|
39
|
+
createDefaultToolRegistry,
|
|
40
|
+
defineTool,
|
|
41
|
+
editFileTool,
|
|
42
|
+
execFileAsync,
|
|
43
|
+
gitTool,
|
|
44
|
+
githubHostnameFromEnterpriseUrl,
|
|
45
|
+
isSecretPath,
|
|
46
|
+
lintTool,
|
|
47
|
+
listDirTool,
|
|
48
|
+
loginWithGitHubCli,
|
|
49
|
+
normalizeGitHubWebBase,
|
|
50
|
+
openExternalUrl,
|
|
51
|
+
parseGitHubRemote,
|
|
52
|
+
pickLanguageServer,
|
|
53
|
+
readFileTool,
|
|
54
|
+
readGitHubCliToken,
|
|
55
|
+
redactSecrets,
|
|
56
|
+
redactText,
|
|
57
|
+
runShell,
|
|
58
|
+
runToolEffect,
|
|
59
|
+
searchFilesTool,
|
|
60
|
+
searchSymbolsTool,
|
|
61
|
+
searchTextTool,
|
|
62
|
+
testTool,
|
|
63
|
+
toOpenAICompatibleMessages,
|
|
64
|
+
writeFileTool
|
|
65
|
+
} from "./chunk-RZVJYHLY.js";
|
|
66
|
+
export {
|
|
67
|
+
Agent,
|
|
68
|
+
AnthropicProvider,
|
|
69
|
+
AuditLogger,
|
|
70
|
+
ChainWorkflow,
|
|
71
|
+
ConfigError,
|
|
72
|
+
ConfigLoader,
|
|
73
|
+
DeepCodeError,
|
|
74
|
+
EvaluatorOptimizerWorkflow,
|
|
75
|
+
EventBus,
|
|
76
|
+
GitHubClient,
|
|
77
|
+
GitHubOAuthDeviceFlow,
|
|
78
|
+
LspClient,
|
|
79
|
+
OpenAICompatibleProvider,
|
|
80
|
+
ParallelWorkflow,
|
|
81
|
+
PathNotAllowedError,
|
|
82
|
+
PathSecurity,
|
|
83
|
+
PermissionDeniedError,
|
|
84
|
+
PermissionGateway,
|
|
85
|
+
ProviderError,
|
|
86
|
+
ProviderManager,
|
|
87
|
+
SessionManager,
|
|
88
|
+
SubagentManager,
|
|
89
|
+
TaskPlanSchema,
|
|
90
|
+
TaskPlanner,
|
|
91
|
+
TaskSchema,
|
|
92
|
+
TaskStatusSchema,
|
|
93
|
+
TelemetryCollector,
|
|
94
|
+
ToolCache,
|
|
95
|
+
ToolExecutionError,
|
|
96
|
+
ToolRegistry,
|
|
97
|
+
WorkflowError,
|
|
98
|
+
analyzeCodeTool,
|
|
99
|
+
bashTool,
|
|
100
|
+
cacheKey,
|
|
101
|
+
classifyShellCommand,
|
|
102
|
+
collectSecretValues,
|
|
103
|
+
createDefaultToolRegistry,
|
|
104
|
+
defineTool,
|
|
105
|
+
editFileTool,
|
|
106
|
+
execFileAsync,
|
|
107
|
+
gitTool,
|
|
108
|
+
githubHostnameFromEnterpriseUrl,
|
|
109
|
+
isSecretPath,
|
|
110
|
+
lintTool,
|
|
111
|
+
listDirTool,
|
|
112
|
+
loginWithGitHubCli,
|
|
113
|
+
normalizeGitHubWebBase,
|
|
114
|
+
openExternalUrl,
|
|
115
|
+
parseGitHubRemote,
|
|
116
|
+
pickLanguageServer,
|
|
117
|
+
readFileTool,
|
|
118
|
+
readGitHubCliToken,
|
|
119
|
+
redactSecrets,
|
|
120
|
+
redactText,
|
|
121
|
+
runShell,
|
|
122
|
+
runToolEffect,
|
|
123
|
+
searchFilesTool,
|
|
124
|
+
searchSymbolsTool,
|
|
125
|
+
searchTextTool,
|
|
126
|
+
testTool,
|
|
127
|
+
toOpenAICompatibleMessages,
|
|
128
|
+
writeFileTool
|
|
129
|
+
};
|
|
130
|
+
//# sourceMappingURL=dist-O5DFAJW3.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|