neuro-cli 4.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 +510 -0
- package/dist/advisor/advisor.d.ts +50 -0
- package/dist/advisor/advisor.js +178 -0
- package/dist/agents/base.d.ts +62 -0
- package/dist/agents/base.js +215 -0
- package/dist/agents/orchestrator.d.ts +46 -0
- package/dist/agents/orchestrator.js +192 -0
- package/dist/agents/team.d.ts +51 -0
- package/dist/agents/team.js +210 -0
- package/dist/api/models.d.ts +23 -0
- package/dist/api/models.js +514 -0
- package/dist/api/ollama.d.ts +153 -0
- package/dist/api/ollama.js +751 -0
- package/dist/api/openrouter.d.ts +55 -0
- package/dist/api/openrouter.js +223 -0
- package/dist/commands/commands.d.ts +43 -0
- package/dist/commands/commands.js +308 -0
- package/dist/config/config.d.ts +8 -0
- package/dist/config/config.js +311 -0
- package/dist/context/compaction.d.ts +54 -0
- package/dist/context/compaction.js +251 -0
- package/dist/context/custom-agents.d.ts +107 -0
- package/dist/context/custom-agents.js +397 -0
- package/dist/context/custom-tools.d.ts +120 -0
- package/dist/context/custom-tools.js +564 -0
- package/dist/context/git-checkpoint.d.ts +52 -0
- package/dist/context/git-checkpoint.js +240 -0
- package/dist/context/neuro-md.d.ts +48 -0
- package/dist/context/neuro-md.js +202 -0
- package/dist/context/neuroignore.d.ts +102 -0
- package/dist/context/neuroignore.js +441 -0
- package/dist/context/repo-map.d.ts +38 -0
- package/dist/context/repo-map.js +220 -0
- package/dist/context/skill-standard.d.ts +262 -0
- package/dist/context/skill-standard.js +1156 -0
- package/dist/context/skill-system.d.ts +75 -0
- package/dist/context/skill-system.js +578 -0
- package/dist/context/tree-sitter.d.ts +99 -0
- package/dist/context/tree-sitter.js +1956 -0
- package/dist/core/acp.d.ts +325 -0
- package/dist/core/acp.js +1498 -0
- package/dist/core/api-server.d.ts +143 -0
- package/dist/core/api-server.js +550 -0
- package/dist/core/approval.d.ts +81 -0
- package/dist/core/approval.js +432 -0
- package/dist/core/auto-compact.d.ts +127 -0
- package/dist/core/auto-compact.js +436 -0
- package/dist/core/auto-mode.d.ts +232 -0
- package/dist/core/auto-mode.js +831 -0
- package/dist/core/background-session.d.ts +166 -0
- package/dist/core/background-session.js +696 -0
- package/dist/core/cicd.d.ts +257 -0
- package/dist/core/cicd.js +1443 -0
- package/dist/core/cloud-sync.d.ts +156 -0
- package/dist/core/cloud-sync.js +582 -0
- package/dist/core/code-review.d.ts +132 -0
- package/dist/core/code-review.js +1191 -0
- package/dist/core/completion.d.ts +49 -0
- package/dist/core/completion.js +384 -0
- package/dist/core/context.d.ts +38 -0
- package/dist/core/context.js +144 -0
- package/dist/core/diff-preview.d.ts +35 -0
- package/dist/core/diff-preview.js +173 -0
- package/dist/core/doom-loop.d.ts +51 -0
- package/dist/core/doom-loop.js +179 -0
- package/dist/core/engine.d.ts +183 -0
- package/dist/core/engine.js +942 -0
- package/dist/core/extended-thinking.d.ts +103 -0
- package/dist/core/extended-thinking.js +269 -0
- package/dist/core/fallback.d.ts +54 -0
- package/dist/core/fallback.js +104 -0
- package/dist/core/git-worktree.d.ts +139 -0
- package/dist/core/git-worktree.js +614 -0
- package/dist/core/headless.d.ts +30 -0
- package/dist/core/headless.js +101 -0
- package/dist/core/i18n.d.ts +83 -0
- package/dist/core/i18n.js +739 -0
- package/dist/core/linting.d.ts +129 -0
- package/dist/core/linting.js +699 -0
- package/dist/core/model-router.d.ts +109 -0
- package/dist/core/model-router.js +581 -0
- package/dist/core/multi-model.d.ts +243 -0
- package/dist/core/multi-model.js +1099 -0
- package/dist/core/multi-session.d.ts +144 -0
- package/dist/core/multi-session.js +442 -0
- package/dist/core/multimodal.d.ts +125 -0
- package/dist/core/multimodal.js +286 -0
- package/dist/core/observability.d.ts +93 -0
- package/dist/core/observability.js +737 -0
- package/dist/core/os-sandbox.d.ts +122 -0
- package/dist/core/os-sandbox.js +1193 -0
- package/dist/core/outcome-grading.d.ts +228 -0
- package/dist/core/outcome-grading.js +1123 -0
- package/dist/core/output-styles.d.ts +57 -0
- package/dist/core/output-styles.js +382 -0
- package/dist/core/parallel-agents.d.ts +183 -0
- package/dist/core/parallel-agents.js +563 -0
- package/dist/core/plugin-bundle.d.ts +236 -0
- package/dist/core/plugin-bundle.js +887 -0
- package/dist/core/plugin-sdk.d.ts +139 -0
- package/dist/core/plugin-sdk.js +273 -0
- package/dist/core/prompt-cache.d.ts +163 -0
- package/dist/core/prompt-cache.js +599 -0
- package/dist/core/sandbox.d.ts +127 -0
- package/dist/core/sandbox.js +369 -0
- package/dist/core/scheduled-tasks.d.ts +151 -0
- package/dist/core/scheduled-tasks.js +502 -0
- package/dist/core/security-scanner.d.ts +160 -0
- package/dist/core/security-scanner.js +1494 -0
- package/dist/core/session.d.ts +83 -0
- package/dist/core/session.js +269 -0
- package/dist/core/shell-completion.d.ts +51 -0
- package/dist/core/shell-completion.js +674 -0
- package/dist/core/smart-monitor.d.ts +146 -0
- package/dist/core/smart-monitor.js +1199 -0
- package/dist/core/spec-driven.d.ts +233 -0
- package/dist/core/spec-driven.js +1485 -0
- package/dist/core/spending-warnings.d.ts +123 -0
- package/dist/core/spending-warnings.js +456 -0
- package/dist/core/sub-agent.d.ts +298 -0
- package/dist/core/sub-agent.js +1023 -0
- package/dist/core/telemetry.d.ts +157 -0
- package/dist/core/telemetry.js +412 -0
- package/dist/core/terminal-ux.d.ts +134 -0
- package/dist/core/terminal-ux.js +649 -0
- package/dist/core/testing.d.ts +146 -0
- package/dist/core/testing.js +1200 -0
- package/dist/core/types.d.ts +439 -0
- package/dist/core/types.js +6 -0
- package/dist/core/undo-redo.d.ts +112 -0
- package/dist/core/undo-redo.js +290 -0
- package/dist/core/updater.d.ts +159 -0
- package/dist/core/updater.js +608 -0
- package/dist/core/vim-mode.d.ts +151 -0
- package/dist/core/vim-mode.js +771 -0
- package/dist/core/voice.d.ts +137 -0
- package/dist/core/voice.js +538 -0
- package/dist/core/web-dashboard.d.ts +109 -0
- package/dist/core/web-dashboard.js +484 -0
- package/dist/hooks/hooks.d.ts +74 -0
- package/dist/hooks/hooks.js +160 -0
- package/dist/hooks/llm-evaluator.d.ts +165 -0
- package/dist/hooks/llm-evaluator.js +560 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +1186 -0
- package/dist/lsp/lsp-manager.d.ts +63 -0
- package/dist/lsp/lsp-manager.js +351 -0
- package/dist/mcp/client.d.ts +133 -0
- package/dist/mcp/client.js +684 -0
- package/dist/mcp/mcp-apps.d.ts +70 -0
- package/dist/mcp/mcp-apps.js +1007 -0
- package/dist/tools/bash.d.ts +5 -0
- package/dist/tools/bash.js +195 -0
- package/dist/tools/browser.d.ts +92 -0
- package/dist/tools/browser.js +1570 -0
- package/dist/tools/extended.d.ts +6 -0
- package/dist/tools/extended.js +191 -0
- package/dist/tools/file.d.ts +10 -0
- package/dist/tools/file.js +382 -0
- package/dist/tools/github.d.ts +389 -0
- package/dist/tools/github.js +759 -0
- package/dist/tools/index.d.ts +9 -0
- package/dist/tools/index.js +40 -0
- package/dist/tools/memory.d.ts +6 -0
- package/dist/tools/memory.js +197 -0
- package/dist/tools/registry.d.ts +29 -0
- package/dist/tools/registry.js +64 -0
- package/dist/tools/web.d.ts +6 -0
- package/dist/tools/web.js +150 -0
- package/dist/ui/renderer.d.ts +97 -0
- package/dist/ui/renderer.js +279 -0
- package/dist/ui/theme.d.ts +27 -0
- package/dist/ui/theme.js +106 -0
- package/package.json +83 -0
|
@@ -0,0 +1,195 @@
|
|
|
1
|
+
// ============================================================
|
|
2
|
+
// NeuroCLI - Shell/Bash Tool
|
|
3
|
+
// Execute commands with safety checks
|
|
4
|
+
// ============================================================
|
|
5
|
+
import { execSync, spawn } from 'child_process';
|
|
6
|
+
const DANGEROUS_PATTERNS = [
|
|
7
|
+
/rm\s+-rf\s+\//, /mkfs/, /dd\s+if=/, /:\(\)\{.*;\}/,
|
|
8
|
+
/wget.*\|\s*sh/, /curl.*\|\s*sh/, /chmod\s+-R\s+777/,
|
|
9
|
+
/>\s*\/dev\/sda/, /mv\s+.*\s+\/dev\/null/,
|
|
10
|
+
];
|
|
11
|
+
const BLOCKED_COMMANDS = [
|
|
12
|
+
'sudo', 'su', 'passwd', 'shutdown', 'reboot', 'halt',
|
|
13
|
+
'init', 'telinit', 'systemctl', 'service',
|
|
14
|
+
];
|
|
15
|
+
const MAX_OUTPUT = 30000;
|
|
16
|
+
const TIMEOUT = 120000; // 2 minutes
|
|
17
|
+
function isDangerous(command) {
|
|
18
|
+
const trimmed = command.trim();
|
|
19
|
+
for (const blocked of BLOCKED_COMMANDS) {
|
|
20
|
+
if (trimmed.startsWith(blocked) || trimmed.includes(` ${blocked} `)) {
|
|
21
|
+
return { safe: false, reason: `Blocked command: ${blocked}` };
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
for (const pattern of DANGEROUS_PATTERNS) {
|
|
25
|
+
if (pattern.test(trimmed)) {
|
|
26
|
+
return { safe: false, reason: `Dangerous pattern detected` };
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
return { safe: true };
|
|
30
|
+
}
|
|
31
|
+
function truncateOutput(output) {
|
|
32
|
+
if (output.length <= MAX_OUTPUT)
|
|
33
|
+
return output;
|
|
34
|
+
const half = Math.floor(MAX_OUTPUT / 2);
|
|
35
|
+
return output.slice(0, half) + '\n\n... [output truncated] ...\n\n' + output.slice(-half);
|
|
36
|
+
}
|
|
37
|
+
// ---- Run Command ----
|
|
38
|
+
const runCommandDef = {
|
|
39
|
+
name: 'run_command',
|
|
40
|
+
description: `Execute a shell command and return its output. Commands run in the project's working directory. Supports timeout and background execution.`,
|
|
41
|
+
parameters: {
|
|
42
|
+
type: 'object',
|
|
43
|
+
properties: {
|
|
44
|
+
command: { type: 'string', description: 'The shell command to execute' },
|
|
45
|
+
timeout: { type: 'number', description: 'Timeout in milliseconds (default: 120000, max: 300000)' },
|
|
46
|
+
background: { type: 'boolean', description: 'Run command in background (default: false)' },
|
|
47
|
+
},
|
|
48
|
+
required: ['command'],
|
|
49
|
+
},
|
|
50
|
+
};
|
|
51
|
+
export const runCommandTool = {
|
|
52
|
+
name: 'run_command',
|
|
53
|
+
definition: runCommandDef,
|
|
54
|
+
risk: 'high',
|
|
55
|
+
getApprovalRequest(args) {
|
|
56
|
+
const command = args.command;
|
|
57
|
+
const check = isDangerous(command);
|
|
58
|
+
return {
|
|
59
|
+
toolName: 'run_command',
|
|
60
|
+
args,
|
|
61
|
+
risk: check.safe ? 'high' : 'high',
|
|
62
|
+
description: `Execute: ${command}${check.reason ? ` ⚠️ ${check.reason}` : ''}`,
|
|
63
|
+
};
|
|
64
|
+
},
|
|
65
|
+
async execute(args, context) {
|
|
66
|
+
const command = args.command;
|
|
67
|
+
const timeout = Math.min(args.timeout || TIMEOUT, 300000);
|
|
68
|
+
const background = args.background || false;
|
|
69
|
+
// Safety check
|
|
70
|
+
const safety = isDangerous(command);
|
|
71
|
+
if (!safety.safe) {
|
|
72
|
+
return `Error: Command blocked for safety. Reason: ${safety.reason}`;
|
|
73
|
+
}
|
|
74
|
+
context.onProgress?.(`Running: ${command}`);
|
|
75
|
+
if (background) {
|
|
76
|
+
// Run in background
|
|
77
|
+
try {
|
|
78
|
+
const child = spawn('sh', ['-c', command], {
|
|
79
|
+
cwd: context.workingDirectory,
|
|
80
|
+
detached: true,
|
|
81
|
+
stdio: 'ignore',
|
|
82
|
+
});
|
|
83
|
+
child.unref();
|
|
84
|
+
return `Command started in background (PID: ${child.pid}): ${command}`;
|
|
85
|
+
}
|
|
86
|
+
catch (error) {
|
|
87
|
+
return `Error starting background command: ${error.message}`;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
// Run synchronously with timeout
|
|
91
|
+
const startTime = Date.now();
|
|
92
|
+
try {
|
|
93
|
+
const result = execSync(command, {
|
|
94
|
+
encoding: 'utf-8',
|
|
95
|
+
cwd: context.workingDirectory,
|
|
96
|
+
timeout,
|
|
97
|
+
maxBuffer: 50 * 1024 * 1024,
|
|
98
|
+
env: { ...process.env, FORCE_COLOR: '0' },
|
|
99
|
+
});
|
|
100
|
+
const duration = Date.now() - startTime;
|
|
101
|
+
const output = result.trim();
|
|
102
|
+
const formatted = output
|
|
103
|
+
? truncateOutput(output)
|
|
104
|
+
: '(no output)';
|
|
105
|
+
return `Command: ${command}\nDuration: ${duration}ms\nExit code: 0\n\n${formatted}`;
|
|
106
|
+
}
|
|
107
|
+
catch (error) {
|
|
108
|
+
const duration = Date.now() - startTime;
|
|
109
|
+
const stdout = error.stdout?.toString().trim() || '';
|
|
110
|
+
const stderr = error.stderr?.toString().trim() || '';
|
|
111
|
+
const exitCode = error.status || 1;
|
|
112
|
+
let output = `Command: ${command}\nDuration: ${duration}ms\nExit code: ${exitCode}\n\n`;
|
|
113
|
+
if (stdout)
|
|
114
|
+
output += `STDOUT:\n${truncateOutput(stdout)}\n\n`;
|
|
115
|
+
if (stderr)
|
|
116
|
+
output += `STDERR:\n${truncateOutput(stderr)}`;
|
|
117
|
+
return output;
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
};
|
|
121
|
+
// ---- Git Operations ----
|
|
122
|
+
const gitDef = {
|
|
123
|
+
name: 'git_operation',
|
|
124
|
+
description: 'Execute git operations. Supports status, log, diff, branch, and other read operations. Write operations require approval.',
|
|
125
|
+
parameters: {
|
|
126
|
+
type: 'object',
|
|
127
|
+
properties: {
|
|
128
|
+
operation: {
|
|
129
|
+
type: 'string',
|
|
130
|
+
description: 'Git operation to perform',
|
|
131
|
+
enum: ['status', 'log', 'diff', 'branch', 'show', 'stash_list', 'remote', 'blame', 'add', 'commit', 'checkout', 'merge', 'rebase', 'reset', 'stash', 'pull', 'push', 'fetch'],
|
|
132
|
+
},
|
|
133
|
+
args: { type: 'string', description: 'Additional arguments for the git command' },
|
|
134
|
+
},
|
|
135
|
+
required: ['operation'],
|
|
136
|
+
},
|
|
137
|
+
};
|
|
138
|
+
const GIT_READ_OPS = new Set(['status', 'log', 'diff', 'branch', 'show', 'stash_list', 'remote', 'blame']);
|
|
139
|
+
export const gitTool = {
|
|
140
|
+
name: 'git_operation',
|
|
141
|
+
definition: gitDef,
|
|
142
|
+
risk: 'medium',
|
|
143
|
+
getApprovalRequest(args) {
|
|
144
|
+
const op = args.operation;
|
|
145
|
+
const isRead = GIT_READ_OPS.has(op);
|
|
146
|
+
return {
|
|
147
|
+
toolName: 'git_operation',
|
|
148
|
+
args,
|
|
149
|
+
risk: isRead ? 'low' : 'high',
|
|
150
|
+
description: `Git ${op}${args.args ? ` ${args.args}` : ''}`,
|
|
151
|
+
};
|
|
152
|
+
},
|
|
153
|
+
async execute(args, context) {
|
|
154
|
+
const operation = args.operation;
|
|
155
|
+
const extraArgs = args.args || '';
|
|
156
|
+
// Map operation to git command
|
|
157
|
+
const commandMap = {
|
|
158
|
+
'status': 'git status --short --branch',
|
|
159
|
+
'log': `git log --oneline -20 ${extraArgs}`,
|
|
160
|
+
'diff': `git diff ${extraArgs}`,
|
|
161
|
+
'branch': 'git branch -a',
|
|
162
|
+
'show': `git show ${extraArgs}`,
|
|
163
|
+
'stash_list': 'git stash list',
|
|
164
|
+
'remote': 'git remote -v',
|
|
165
|
+
'blame': `git blame ${extraArgs}`,
|
|
166
|
+
'add': `git add ${extraArgs}`,
|
|
167
|
+
'commit': `git commit ${extraArgs}`,
|
|
168
|
+
'checkout': `git checkout ${extraArgs}`,
|
|
169
|
+
'merge': `git merge ${extraArgs}`,
|
|
170
|
+
'rebase': `git rebase ${extraArgs}`,
|
|
171
|
+
'reset': `git reset ${extraArgs}`,
|
|
172
|
+
'stash': `git stash ${extraArgs}`,
|
|
173
|
+
'pull': `git pull ${extraArgs}`,
|
|
174
|
+
'push': `git push ${extraArgs}`,
|
|
175
|
+
'fetch': `git fetch ${extraArgs}`,
|
|
176
|
+
};
|
|
177
|
+
const command = commandMap[operation];
|
|
178
|
+
if (!command)
|
|
179
|
+
return `Error: Unknown git operation: ${operation}`;
|
|
180
|
+
try {
|
|
181
|
+
const result = execSync(command, {
|
|
182
|
+
encoding: 'utf-8',
|
|
183
|
+
cwd: context.workingDirectory,
|
|
184
|
+
timeout: 30000,
|
|
185
|
+
maxBuffer: 10 * 1024 * 1024,
|
|
186
|
+
});
|
|
187
|
+
return truncateOutput(result.trim() || '(no output)');
|
|
188
|
+
}
|
|
189
|
+
catch (error) {
|
|
190
|
+
return `Git error: ${error.stderr?.toString().trim() || error.message}`;
|
|
191
|
+
}
|
|
192
|
+
},
|
|
193
|
+
};
|
|
194
|
+
export const shellTools = [runCommandTool, gitTool];
|
|
195
|
+
//# sourceMappingURL=bash.js.map
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import { ToolExecutor } from './registry.js';
|
|
2
|
+
export interface BrowserConfig {
|
|
3
|
+
headless: boolean;
|
|
4
|
+
defaultTimeout: number;
|
|
5
|
+
defaultViewport: {
|
|
6
|
+
width: number;
|
|
7
|
+
height: number;
|
|
8
|
+
};
|
|
9
|
+
userAgent?: string;
|
|
10
|
+
blockImages: boolean;
|
|
11
|
+
blockCSS: boolean;
|
|
12
|
+
stealth: boolean;
|
|
13
|
+
proxy?: string;
|
|
14
|
+
cookies?: Record<string, string>;
|
|
15
|
+
}
|
|
16
|
+
export interface BrowserAction {
|
|
17
|
+
type: 'navigate' | 'click' | 'type' | 'select' | 'wait' | 'evaluate' | 'screenshot' | 'scroll' | 'download';
|
|
18
|
+
target?: string;
|
|
19
|
+
value?: string;
|
|
20
|
+
timestamp: number;
|
|
21
|
+
duration?: number;
|
|
22
|
+
result?: 'success' | 'error';
|
|
23
|
+
error?: string;
|
|
24
|
+
}
|
|
25
|
+
export interface BrowserSession {
|
|
26
|
+
id: string;
|
|
27
|
+
startedAt: number;
|
|
28
|
+
currentUrl: string;
|
|
29
|
+
title: string;
|
|
30
|
+
statusCode: number;
|
|
31
|
+
viewport: {
|
|
32
|
+
width: number;
|
|
33
|
+
height: number;
|
|
34
|
+
};
|
|
35
|
+
actions: BrowserAction[];
|
|
36
|
+
cookies: Record<string, string>;
|
|
37
|
+
history: string[];
|
|
38
|
+
historyIndex: number;
|
|
39
|
+
}
|
|
40
|
+
export declare class BrowserTool {
|
|
41
|
+
private config;
|
|
42
|
+
private browserProcess;
|
|
43
|
+
private cdp;
|
|
44
|
+
private sessionId;
|
|
45
|
+
private session;
|
|
46
|
+
private chromePath;
|
|
47
|
+
private debugPort;
|
|
48
|
+
private useCurlFallback;
|
|
49
|
+
private screenshotDir;
|
|
50
|
+
constructor(config?: Partial<BrowserConfig>);
|
|
51
|
+
launch(options?: Partial<BrowserConfig>): Promise<string>;
|
|
52
|
+
close(): Promise<string>;
|
|
53
|
+
navigate(url: string): Promise<string>;
|
|
54
|
+
goBack(): Promise<string>;
|
|
55
|
+
goForward(): Promise<string>;
|
|
56
|
+
screenshot(selector?: string): Promise<string>;
|
|
57
|
+
click(selector: string): Promise<string>;
|
|
58
|
+
type(selector: string, text: string): Promise<string>;
|
|
59
|
+
select(selector: string, value: string): Promise<string>;
|
|
60
|
+
wait(selector: string, timeout?: number): Promise<string>;
|
|
61
|
+
evaluate(script: string): Promise<string>;
|
|
62
|
+
getContent(selector?: string): Promise<string>;
|
|
63
|
+
getLinks(): Promise<string>;
|
|
64
|
+
getForms(): Promise<string>;
|
|
65
|
+
fillForm(selector: string, data: Record<string, string>): Promise<string>;
|
|
66
|
+
download(url: string, outputPath: string): Promise<string>;
|
|
67
|
+
scroll(direction: 'up' | 'down' | 'left' | 'right', amount?: number): Promise<string>;
|
|
68
|
+
getPageInfo(): Promise<string>;
|
|
69
|
+
setViewport(width: number, height: number): Promise<string>;
|
|
70
|
+
emulateDevice(device: string): Promise<string>;
|
|
71
|
+
getSession(): BrowserSession;
|
|
72
|
+
getActionHistory(): BrowserAction[];
|
|
73
|
+
isUsingFallback(): boolean;
|
|
74
|
+
private findChrome;
|
|
75
|
+
private findFreePort;
|
|
76
|
+
private connectCDP;
|
|
77
|
+
private ensureConnected;
|
|
78
|
+
private delay;
|
|
79
|
+
private curlNavigate;
|
|
80
|
+
private curlGetContent;
|
|
81
|
+
private curlGetLinks;
|
|
82
|
+
}
|
|
83
|
+
export declare const browserNavigateTool: ToolExecutor;
|
|
84
|
+
export declare const browserScreenshotTool: ToolExecutor;
|
|
85
|
+
export declare const browserClickTool: ToolExecutor;
|
|
86
|
+
export declare const browserTypeTool: ToolExecutor;
|
|
87
|
+
export declare const browserEvaluateTool: ToolExecutor;
|
|
88
|
+
export declare const browserGetContentTool: ToolExecutor;
|
|
89
|
+
export declare const browserGetLinksTool: ToolExecutor;
|
|
90
|
+
export declare const browserDownloadTool: ToolExecutor;
|
|
91
|
+
export declare const browserTools: ToolExecutor[];
|
|
92
|
+
//# sourceMappingURL=browser.d.ts.map
|