@soederpop/luca 0.1.2 → 0.1.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.
- package/CLAUDE.md +2 -0
- package/assistants/codingAssistant/hooks.ts +1 -5
- package/assistants/inkbot/CORE.md +69 -0
- package/assistants/inkbot/hooks.ts +14 -0
- package/assistants/inkbot/tools.ts +47 -0
- package/commands/inkbot.ts +353 -0
- package/dist/agi/container.server.d.ts +63 -0
- package/dist/agi/container.server.d.ts.map +1 -0
- package/dist/agi/endpoints/ask.d.ts +20 -0
- package/dist/agi/endpoints/ask.d.ts.map +1 -0
- package/dist/agi/endpoints/conversations/[id].d.ts +27 -0
- package/dist/agi/endpoints/conversations/[id].d.ts.map +1 -0
- package/dist/agi/endpoints/conversations.d.ts +18 -0
- package/dist/agi/endpoints/conversations.d.ts.map +1 -0
- package/dist/agi/endpoints/experts.d.ts +8 -0
- package/dist/agi/endpoints/experts.d.ts.map +1 -0
- package/dist/agi/feature.d.ts +9 -0
- package/dist/agi/feature.d.ts.map +1 -0
- package/dist/agi/features/assistant.d.ts +509 -0
- package/dist/agi/features/assistant.d.ts.map +1 -0
- package/dist/agi/features/assistants-manager.d.ts +236 -0
- package/dist/agi/features/assistants-manager.d.ts.map +1 -0
- package/dist/agi/features/autonomous-assistant.d.ts +281 -0
- package/dist/agi/features/autonomous-assistant.d.ts.map +1 -0
- package/dist/agi/features/browser-use.d.ts +479 -0
- package/dist/agi/features/browser-use.d.ts.map +1 -0
- package/dist/agi/features/claude-code.d.ts +824 -0
- package/dist/agi/features/claude-code.d.ts.map +1 -0
- package/dist/agi/features/conversation-history.d.ts +245 -0
- package/dist/agi/features/conversation-history.d.ts.map +1 -0
- package/dist/agi/features/conversation.d.ts +464 -0
- package/dist/agi/features/conversation.d.ts.map +1 -0
- package/dist/agi/features/docs-reader.d.ts +72 -0
- package/dist/agi/features/docs-reader.d.ts.map +1 -0
- package/dist/agi/features/file-tools.d.ts +110 -0
- package/dist/agi/features/file-tools.d.ts.map +1 -0
- package/dist/agi/features/luca-coder.d.ts +323 -0
- package/dist/agi/features/luca-coder.d.ts.map +1 -0
- package/dist/agi/features/openai-codex.d.ts +381 -0
- package/dist/agi/features/openai-codex.d.ts.map +1 -0
- package/dist/agi/features/openapi.d.ts +200 -0
- package/dist/agi/features/openapi.d.ts.map +1 -0
- package/dist/agi/features/skills-library.d.ts +167 -0
- package/dist/agi/features/skills-library.d.ts.map +1 -0
- package/dist/agi/index.d.ts +5 -0
- package/dist/agi/index.d.ts.map +1 -0
- package/dist/agi/lib/interceptor-chain.d.ts +44 -0
- package/dist/agi/lib/interceptor-chain.d.ts.map +1 -0
- package/dist/agi/lib/token-counter.d.ts +13 -0
- package/dist/agi/lib/token-counter.d.ts.map +1 -0
- package/dist/bootstrap/generated.d.ts +5 -0
- package/dist/bootstrap/generated.d.ts.map +1 -0
- package/dist/browser.d.ts +12 -0
- package/dist/browser.d.ts.map +1 -0
- package/dist/bus.d.ts +29 -0
- package/dist/bus.d.ts.map +1 -0
- package/dist/cli/build-info.d.ts +4 -0
- package/dist/cli/build-info.d.ts.map +1 -0
- package/dist/cli/cli.d.ts +3 -0
- package/dist/cli/cli.d.ts.map +1 -0
- package/dist/client.d.ts +60 -0
- package/dist/client.d.ts.map +1 -0
- package/dist/clients/civitai/index.d.ts +472 -0
- package/dist/clients/civitai/index.d.ts.map +1 -0
- package/dist/clients/client-template.d.ts +30 -0
- package/dist/clients/client-template.d.ts.map +1 -0
- package/dist/clients/comfyui/index.d.ts +281 -0
- package/dist/clients/comfyui/index.d.ts.map +1 -0
- package/dist/clients/elevenlabs/index.d.ts +197 -0
- package/dist/clients/elevenlabs/index.d.ts.map +1 -0
- package/dist/clients/graph.d.ts +64 -0
- package/dist/clients/graph.d.ts.map +1 -0
- package/dist/clients/openai/index.d.ts +247 -0
- package/dist/clients/openai/index.d.ts.map +1 -0
- package/dist/clients/rest.d.ts +92 -0
- package/dist/clients/rest.d.ts.map +1 -0
- package/dist/clients/supabase/index.d.ts +176 -0
- package/dist/clients/supabase/index.d.ts.map +1 -0
- package/dist/clients/websocket.d.ts +127 -0
- package/dist/clients/websocket.d.ts.map +1 -0
- package/dist/command.d.ts +163 -0
- package/dist/command.d.ts.map +1 -0
- package/dist/commands/bootstrap.d.ts +20 -0
- package/dist/commands/bootstrap.d.ts.map +1 -0
- package/dist/commands/chat.d.ts +37 -0
- package/dist/commands/chat.d.ts.map +1 -0
- package/dist/commands/code.d.ts +28 -0
- package/dist/commands/code.d.ts.map +1 -0
- package/dist/commands/console.d.ts +22 -0
- package/dist/commands/console.d.ts.map +1 -0
- package/dist/commands/describe.d.ts +50 -0
- package/dist/commands/describe.d.ts.map +1 -0
- package/dist/commands/eval.d.ts +23 -0
- package/dist/commands/eval.d.ts.map +1 -0
- package/dist/commands/help.d.ts +25 -0
- package/dist/commands/help.d.ts.map +1 -0
- package/dist/commands/index.d.ts +18 -0
- package/dist/commands/index.d.ts.map +1 -0
- package/dist/commands/introspect.d.ts +24 -0
- package/dist/commands/introspect.d.ts.map +1 -0
- package/dist/commands/mcp.d.ts +35 -0
- package/dist/commands/mcp.d.ts.map +1 -0
- package/dist/commands/prompt.d.ts +38 -0
- package/dist/commands/prompt.d.ts.map +1 -0
- package/dist/commands/run.d.ts +24 -0
- package/dist/commands/run.d.ts.map +1 -0
- package/dist/commands/sandbox-mcp.d.ts +34 -0
- package/dist/commands/sandbox-mcp.d.ts.map +1 -0
- package/dist/commands/save-api-docs.d.ts +21 -0
- package/dist/commands/save-api-docs.d.ts.map +1 -0
- package/dist/commands/scaffold.d.ts +24 -0
- package/dist/commands/scaffold.d.ts.map +1 -0
- package/dist/commands/select.d.ts +22 -0
- package/dist/commands/select.d.ts.map +1 -0
- package/dist/commands/serve.d.ts +29 -0
- package/dist/commands/serve.d.ts.map +1 -0
- package/dist/container-describer.d.ts +144 -0
- package/dist/container-describer.d.ts.map +1 -0
- package/dist/container.d.ts +451 -0
- package/dist/container.d.ts.map +1 -0
- package/dist/endpoint.d.ts +113 -0
- package/dist/endpoint.d.ts.map +1 -0
- package/dist/feature.d.ts +47 -0
- package/dist/feature.d.ts.map +1 -0
- package/dist/graft.d.ts +29 -0
- package/dist/graft.d.ts.map +1 -0
- package/dist/hash-object.d.ts +8 -0
- package/dist/hash-object.d.ts.map +1 -0
- package/dist/helper.d.ts +209 -0
- package/dist/helper.d.ts.map +1 -0
- package/dist/introspection/generated.node.d.ts +44623 -0
- package/dist/introspection/generated.node.d.ts.map +1 -0
- package/dist/introspection/generated.web.d.ts +1412 -0
- package/dist/introspection/generated.web.d.ts.map +1 -0
- package/dist/introspection/index.d.ts +156 -0
- package/dist/introspection/index.d.ts.map +1 -0
- package/dist/introspection/scan.d.ts +147 -0
- package/dist/introspection/scan.d.ts.map +1 -0
- package/dist/node/container.d.ts +256 -0
- package/dist/node/container.d.ts.map +1 -0
- package/dist/node/feature.d.ts +9 -0
- package/dist/node/feature.d.ts.map +1 -0
- package/dist/node/features/container-link.d.ts +213 -0
- package/dist/node/features/container-link.d.ts.map +1 -0
- package/dist/node/features/content-db.d.ts +354 -0
- package/dist/node/features/content-db.d.ts.map +1 -0
- package/dist/node/features/disk-cache.d.ts +236 -0
- package/dist/node/features/disk-cache.d.ts.map +1 -0
- package/dist/node/features/dns.d.ts +511 -0
- package/dist/node/features/dns.d.ts.map +1 -0
- package/dist/node/features/docker.d.ts +485 -0
- package/dist/node/features/docker.d.ts.map +1 -0
- package/dist/node/features/downloader.d.ts +73 -0
- package/dist/node/features/downloader.d.ts.map +1 -0
- package/dist/node/features/figlet-fonts.d.ts +4 -0
- package/dist/node/features/figlet-fonts.d.ts.map +1 -0
- package/dist/node/features/file-manager.d.ts +177 -0
- package/dist/node/features/file-manager.d.ts.map +1 -0
- package/dist/node/features/fs.d.ts +635 -0
- package/dist/node/features/fs.d.ts.map +1 -0
- package/dist/node/features/git.d.ts +329 -0
- package/dist/node/features/git.d.ts.map +1 -0
- package/dist/node/features/google-auth.d.ts +200 -0
- package/dist/node/features/google-auth.d.ts.map +1 -0
- package/dist/node/features/google-calendar.d.ts +194 -0
- package/dist/node/features/google-calendar.d.ts.map +1 -0
- package/dist/node/features/google-docs.d.ts +138 -0
- package/dist/node/features/google-docs.d.ts.map +1 -0
- package/dist/node/features/google-drive.d.ts +202 -0
- package/dist/node/features/google-drive.d.ts.map +1 -0
- package/dist/node/features/google-mail.d.ts +221 -0
- package/dist/node/features/google-mail.d.ts.map +1 -0
- package/dist/node/features/google-sheets.d.ts +157 -0
- package/dist/node/features/google-sheets.d.ts.map +1 -0
- package/dist/node/features/grep.d.ts +207 -0
- package/dist/node/features/grep.d.ts.map +1 -0
- package/dist/node/features/helpers.d.ts +236 -0
- package/dist/node/features/helpers.d.ts.map +1 -0
- package/dist/node/features/ink.d.ts +332 -0
- package/dist/node/features/ink.d.ts.map +1 -0
- package/dist/node/features/ipc-socket.d.ts +298 -0
- package/dist/node/features/ipc-socket.d.ts.map +1 -0
- package/dist/node/features/json-tree.d.ts +140 -0
- package/dist/node/features/json-tree.d.ts.map +1 -0
- package/dist/node/features/networking.d.ts +373 -0
- package/dist/node/features/networking.d.ts.map +1 -0
- package/dist/node/features/nlp.d.ts +125 -0
- package/dist/node/features/nlp.d.ts.map +1 -0
- package/dist/node/features/opener.d.ts +93 -0
- package/dist/node/features/opener.d.ts.map +1 -0
- package/dist/node/features/os.d.ts +168 -0
- package/dist/node/features/os.d.ts.map +1 -0
- package/dist/node/features/package-finder.d.ts +419 -0
- package/dist/node/features/package-finder.d.ts.map +1 -0
- package/dist/node/features/postgres.d.ts +173 -0
- package/dist/node/features/postgres.d.ts.map +1 -0
- package/dist/node/features/proc.d.ts +285 -0
- package/dist/node/features/proc.d.ts.map +1 -0
- package/dist/node/features/process-manager.d.ts +427 -0
- package/dist/node/features/process-manager.d.ts.map +1 -0
- package/dist/node/features/python.d.ts +477 -0
- package/dist/node/features/python.d.ts.map +1 -0
- package/dist/node/features/redis.d.ts +247 -0
- package/dist/node/features/redis.d.ts.map +1 -0
- package/dist/node/features/repl.d.ts +84 -0
- package/dist/node/features/repl.d.ts.map +1 -0
- package/dist/node/features/runpod.d.ts +527 -0
- package/dist/node/features/runpod.d.ts.map +1 -0
- package/dist/node/features/secure-shell.d.ts +145 -0
- package/dist/node/features/secure-shell.d.ts.map +1 -0
- package/dist/node/features/semantic-search.d.ts +207 -0
- package/dist/node/features/semantic-search.d.ts.map +1 -0
- package/dist/node/features/sqlite.d.ts +180 -0
- package/dist/node/features/sqlite.d.ts.map +1 -0
- package/dist/node/features/telegram.d.ts +173 -0
- package/dist/node/features/telegram.d.ts.map +1 -0
- package/dist/node/features/transpiler.d.ts +51 -0
- package/dist/node/features/transpiler.d.ts.map +1 -0
- package/dist/node/features/tts.d.ts +108 -0
- package/dist/node/features/tts.d.ts.map +1 -0
- package/dist/node/features/ui.d.ts +562 -0
- package/dist/node/features/ui.d.ts.map +1 -0
- package/dist/node/features/vault.d.ts +90 -0
- package/dist/node/features/vault.d.ts.map +1 -0
- package/dist/node/features/vm.d.ts +285 -0
- package/dist/node/features/vm.d.ts.map +1 -0
- package/dist/node/features/yaml-tree.d.ts +118 -0
- package/dist/node/features/yaml-tree.d.ts.map +1 -0
- package/dist/node/features/yaml.d.ts +127 -0
- package/dist/node/features/yaml.d.ts.map +1 -0
- package/dist/node.d.ts +67 -0
- package/dist/node.d.ts.map +1 -0
- package/dist/python/generated.d.ts +2 -0
- package/dist/python/generated.d.ts.map +1 -0
- package/dist/react/index.d.ts +36 -0
- package/dist/react/index.d.ts.map +1 -0
- package/dist/registry.d.ts +97 -0
- package/dist/registry.d.ts.map +1 -0
- package/dist/scaffolds/generated.d.ts +13 -0
- package/dist/scaffolds/generated.d.ts.map +1 -0
- package/dist/scaffolds/template.d.ts +11 -0
- package/dist/scaffolds/template.d.ts.map +1 -0
- package/dist/schemas/base.d.ts +254 -0
- package/dist/schemas/base.d.ts.map +1 -0
- package/dist/selector.d.ts +130 -0
- package/dist/selector.d.ts.map +1 -0
- package/dist/server.d.ts +89 -0
- package/dist/server.d.ts.map +1 -0
- package/dist/servers/express.d.ts +104 -0
- package/dist/servers/express.d.ts.map +1 -0
- package/dist/servers/mcp.d.ts +201 -0
- package/dist/servers/mcp.d.ts.map +1 -0
- package/dist/servers/socket.d.ts +121 -0
- package/dist/servers/socket.d.ts.map +1 -0
- package/dist/state.d.ts +24 -0
- package/dist/state.d.ts.map +1 -0
- package/dist/web/clients/socket.d.ts +37 -0
- package/dist/web/clients/socket.d.ts.map +1 -0
- package/dist/web/container.d.ts +55 -0
- package/dist/web/container.d.ts.map +1 -0
- package/dist/web/extension.d.ts +4 -0
- package/dist/web/extension.d.ts.map +1 -0
- package/dist/web/feature.d.ts +8 -0
- package/dist/web/feature.d.ts.map +1 -0
- package/dist/web/features/asset-loader.d.ts +35 -0
- package/dist/web/features/asset-loader.d.ts.map +1 -0
- package/dist/web/features/container-link.d.ts +167 -0
- package/dist/web/features/container-link.d.ts.map +1 -0
- package/dist/web/features/esbuild.d.ts +51 -0
- package/dist/web/features/esbuild.d.ts.map +1 -0
- package/dist/web/features/helpers.d.ts +140 -0
- package/dist/web/features/helpers.d.ts.map +1 -0
- package/dist/web/features/network.d.ts +69 -0
- package/dist/web/features/network.d.ts.map +1 -0
- package/dist/web/features/speech.d.ts +71 -0
- package/dist/web/features/speech.d.ts.map +1 -0
- package/dist/web/features/vault.d.ts +62 -0
- package/dist/web/features/vault.d.ts.map +1 -0
- package/dist/web/features/vm.d.ts +48 -0
- package/dist/web/features/vm.d.ts.map +1 -0
- package/dist/web/features/voice-recognition.d.ts +96 -0
- package/dist/web/features/voice-recognition.d.ts.map +1 -0
- package/dist/web/shims/isomorphic-vm.d.ts +22 -0
- package/dist/web/shims/isomorphic-vm.d.ts.map +1 -0
- package/docs/apis/features/agi/assistant.md +1 -0
- package/docs/apis/features/agi/assistants-manager.md +62 -2
- package/docs/apis/features/agi/auto-assistant.md +11 -109
- package/docs/apis/features/agi/claude-code.md +138 -0
- package/docs/apis/features/agi/conversation.md +60 -31
- package/docs/apis/features/agi/luca-coder.md +407 -0
- package/docs/apis/features/agi/openapi.md +2 -2
- package/docs/apis/features/agi/skills-library.md +12 -0
- package/docs/apis/features/node/python.md +81 -11
- package/docs/apis/features/node/transpiler.md +74 -0
- package/docs/apis/features/web/esbuild.md +0 -6
- package/docs/apis/servers/mcp.md +2 -2
- package/docs/examples/entity.md +124 -0
- package/package.json +73 -21
- package/src/agi/feature.ts +13 -0
- package/src/agi/features/assistant.ts +36 -25
- package/src/agi/features/assistants-manager.ts +70 -5
- package/src/agi/features/autonomous-assistant.ts +1 -5
- package/src/agi/features/browser-use.ts +2 -2
- package/src/agi/features/claude-code.ts +165 -1
- package/src/agi/features/conversation-history.ts +2 -6
- package/src/agi/features/conversation.ts +95 -3
- package/src/agi/features/docs-reader.ts +2 -1
- package/src/agi/features/file-tools.ts +2 -2
- package/src/agi/features/luca-coder.ts +1 -5
- package/src/agi/features/openai-codex.ts +1 -1
- package/src/agi/features/openapi.ts +3 -3
- package/src/agi/features/skills-library.ts +87 -6
- package/src/agi/lib/interceptor-chain.ts +10 -0
- package/src/agi/lib/token-counter.ts +1 -1
- package/src/bootstrap/generated.ts +126 -1
- package/src/bus.ts +27 -5
- package/src/cli/build-info.ts +2 -2
- package/src/client.ts +2 -2
- package/src/clients/elevenlabs/index.ts +5 -0
- package/src/commands/bootstrap.ts +2 -1
- package/src/commands/chat.ts +1 -0
- package/src/commands/code.ts +4 -2
- package/src/commands/prompt.ts +34 -34
- package/src/commands/sandbox-mcp.ts +69 -163
- package/src/commands/save-api-docs.ts +10 -8
- package/src/commands/select.ts +8 -3
- package/src/container-describer.ts +70 -84
- package/src/container.ts +93 -3
- package/src/endpoint.ts +1 -1
- package/src/entity.ts +173 -0
- package/src/feature.ts +3 -3
- package/src/helper.ts +8 -4
- package/src/introspection/generated.agi.ts +1246 -798
- package/src/introspection/generated.node.ts +892 -798
- package/src/introspection/generated.web.ts +95 -3
- package/src/introspection/scan.ts +1 -1
- package/src/node/container.ts +1 -1
- package/src/node/features/content-db.ts +3 -3
- package/src/node/features/file-manager.ts +10 -9
- package/src/node/features/git.ts +5 -5
- package/src/node/features/helpers.ts +1 -1
- package/src/node/features/json-tree.ts +1 -1
- package/src/node/features/os.ts +3 -3
- package/src/node/features/package-finder.ts +1 -1
- package/src/node/features/process-manager.ts +1 -1
- package/src/node/features/python.ts +3 -3
- package/src/node/features/redis.ts +1 -1
- package/src/node/features/repl.ts +2 -2
- package/src/node/features/transpiler.ts +2 -2
- package/src/node/features/ui.ts +1 -1
- package/src/node/features/vm.ts +3 -3
- package/src/node/features/yaml-tree.ts +1 -1
- package/src/node.ts +1 -0
- package/src/python/generated.ts +1 -1
- package/src/scaffolds/generated.ts +1 -1
- package/src/selector.ts +74 -4
- package/src/server.ts +2 -2
- package/src/servers/mcp.ts +6 -6
- package/src/web/features/helpers.ts +1 -1
- package/src/web/features/network.ts +1 -0
- package/test/conversation.test.ts +220 -0
- package/tsconfig.build.json +12 -0
- package/tsconfig.json +1 -1
- package/scripts/examples/telegram-ink-ui.ts +0 -302
- package/scripts/examples/using-openai-codex.ts +0 -23
- package/scripts/examples/vm-loading-esm-modules.ts +0 -16
|
@@ -0,0 +1,479 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
import { Feature } from '../feature.js';
|
|
3
|
+
declare module '@soederpop/luca/feature' {
|
|
4
|
+
interface AvailableFeatures {
|
|
5
|
+
browserUse: typeof BrowserUse;
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
export declare const BrowserUseStateSchema: z.ZodObject<{
|
|
9
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
10
|
+
session: z.ZodDefault<z.ZodString>;
|
|
11
|
+
headed: z.ZodDefault<z.ZodBoolean>;
|
|
12
|
+
currentUrl: z.ZodOptional<z.ZodString>;
|
|
13
|
+
}, z.core.$loose>;
|
|
14
|
+
export type BrowserUseState = z.infer<typeof BrowserUseStateSchema>;
|
|
15
|
+
export declare const BrowserUseOptionsSchema: z.ZodObject<{
|
|
16
|
+
name: z.ZodOptional<z.ZodString>;
|
|
17
|
+
_cacheKey: z.ZodOptional<z.ZodString>;
|
|
18
|
+
cached: z.ZodOptional<z.ZodBoolean>;
|
|
19
|
+
enable: z.ZodOptional<z.ZodBoolean>;
|
|
20
|
+
session: z.ZodOptional<z.ZodString>;
|
|
21
|
+
headed: z.ZodOptional<z.ZodBoolean>;
|
|
22
|
+
profile: z.ZodOptional<z.ZodString>;
|
|
23
|
+
connect: z.ZodOptional<z.ZodBoolean>;
|
|
24
|
+
cdpUrl: z.ZodOptional<z.ZodString>;
|
|
25
|
+
}, z.core.$strip>;
|
|
26
|
+
export type BrowserUseOptions = z.infer<typeof BrowserUseOptionsSchema>;
|
|
27
|
+
export declare const BrowserUseEventsSchema: z.ZodObject<{
|
|
28
|
+
stateChange: z.ZodTuple<[z.ZodAny], null>;
|
|
29
|
+
enabled: z.ZodTuple<[], null>;
|
|
30
|
+
navigated: z.ZodTuple<[z.ZodString], null>;
|
|
31
|
+
clicked: z.ZodTuple<[z.ZodString], null>;
|
|
32
|
+
typed: z.ZodTuple<[z.ZodString], null>;
|
|
33
|
+
screenshot: z.ZodTuple<[z.ZodString], null>;
|
|
34
|
+
closed: z.ZodTuple<[], null>;
|
|
35
|
+
}, z.core.$strip>;
|
|
36
|
+
/** Result shape from browser-use --json */
|
|
37
|
+
interface BrowserUseResult {
|
|
38
|
+
id?: string;
|
|
39
|
+
success: boolean;
|
|
40
|
+
data: Record<string, any>;
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* Browser automation feature wrapping the browser-use CLI.
|
|
44
|
+
* Provides programmatic browser control — navigation, clicking, typing,
|
|
45
|
+
* screenshots, JavaScript evaluation, data extraction, and more.
|
|
46
|
+
*
|
|
47
|
+
* @example
|
|
48
|
+
* ```typescript
|
|
49
|
+
* const browser = container.feature('browserUse')
|
|
50
|
+
* await browser.open('https://example.com')
|
|
51
|
+
* const state = await browser.getState()
|
|
52
|
+
* await browser.click('21')
|
|
53
|
+
* await browser.close()
|
|
54
|
+
* ```
|
|
55
|
+
*
|
|
56
|
+
* @extends Feature
|
|
57
|
+
*/
|
|
58
|
+
export declare class BrowserUse extends Feature<BrowserUseState, BrowserUseOptions> {
|
|
59
|
+
static shortcut: "features.browserUse";
|
|
60
|
+
static stateSchema: z.ZodObject<{
|
|
61
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
62
|
+
session: z.ZodDefault<z.ZodString>;
|
|
63
|
+
headed: z.ZodDefault<z.ZodBoolean>;
|
|
64
|
+
currentUrl: z.ZodOptional<z.ZodString>;
|
|
65
|
+
}, z.core.$loose>;
|
|
66
|
+
static optionsSchema: z.ZodObject<{
|
|
67
|
+
name: z.ZodOptional<z.ZodString>;
|
|
68
|
+
_cacheKey: z.ZodOptional<z.ZodString>;
|
|
69
|
+
cached: z.ZodOptional<z.ZodBoolean>;
|
|
70
|
+
enable: z.ZodOptional<z.ZodBoolean>;
|
|
71
|
+
session: z.ZodOptional<z.ZodString>;
|
|
72
|
+
headed: z.ZodOptional<z.ZodBoolean>;
|
|
73
|
+
profile: z.ZodOptional<z.ZodString>;
|
|
74
|
+
connect: z.ZodOptional<z.ZodBoolean>;
|
|
75
|
+
cdpUrl: z.ZodOptional<z.ZodString>;
|
|
76
|
+
}, z.core.$strip>;
|
|
77
|
+
static eventsSchema: z.ZodObject<{
|
|
78
|
+
stateChange: z.ZodTuple<[z.ZodAny], null>;
|
|
79
|
+
enabled: z.ZodTuple<[], null>;
|
|
80
|
+
navigated: z.ZodTuple<[z.ZodString], null>;
|
|
81
|
+
clicked: z.ZodTuple<[z.ZodString], null>;
|
|
82
|
+
typed: z.ZodTuple<[z.ZodString], null>;
|
|
83
|
+
screenshot: z.ZodTuple<[z.ZodString], null>;
|
|
84
|
+
closed: z.ZodTuple<[], null>;
|
|
85
|
+
}, z.core.$strip>;
|
|
86
|
+
static tools: {
|
|
87
|
+
browserOpen: {
|
|
88
|
+
description: string;
|
|
89
|
+
schema: z.ZodObject<{
|
|
90
|
+
url: z.ZodString;
|
|
91
|
+
}, z.core.$strip>;
|
|
92
|
+
};
|
|
93
|
+
browserGetState: {
|
|
94
|
+
description: string;
|
|
95
|
+
schema: z.ZodObject<{}, z.core.$strip>;
|
|
96
|
+
};
|
|
97
|
+
browserClick: {
|
|
98
|
+
description: string;
|
|
99
|
+
schema: z.ZodObject<{
|
|
100
|
+
target: z.ZodString;
|
|
101
|
+
}, z.core.$strip>;
|
|
102
|
+
};
|
|
103
|
+
browserType: {
|
|
104
|
+
description: string;
|
|
105
|
+
schema: z.ZodObject<{
|
|
106
|
+
text: z.ZodString;
|
|
107
|
+
}, z.core.$strip>;
|
|
108
|
+
};
|
|
109
|
+
browserInput: {
|
|
110
|
+
description: string;
|
|
111
|
+
schema: z.ZodObject<{
|
|
112
|
+
index: z.ZodString;
|
|
113
|
+
text: z.ZodString;
|
|
114
|
+
}, z.core.$strip>;
|
|
115
|
+
};
|
|
116
|
+
browserScreenshot: {
|
|
117
|
+
description: string;
|
|
118
|
+
schema: z.ZodObject<{
|
|
119
|
+
path: z.ZodOptional<z.ZodString>;
|
|
120
|
+
full: z.ZodOptional<z.ZodBoolean>;
|
|
121
|
+
}, z.core.$strip>;
|
|
122
|
+
};
|
|
123
|
+
browserEval: {
|
|
124
|
+
description: string;
|
|
125
|
+
schema: z.ZodObject<{
|
|
126
|
+
js: z.ZodString;
|
|
127
|
+
}, z.core.$strip>;
|
|
128
|
+
};
|
|
129
|
+
browserExtract: {
|
|
130
|
+
description: string;
|
|
131
|
+
schema: z.ZodObject<{
|
|
132
|
+
query: z.ZodString;
|
|
133
|
+
}, z.core.$strip>;
|
|
134
|
+
};
|
|
135
|
+
browserScroll: {
|
|
136
|
+
description: string;
|
|
137
|
+
schema: z.ZodObject<{
|
|
138
|
+
direction: z.ZodDefault<z.ZodEnum<{
|
|
139
|
+
up: "up";
|
|
140
|
+
down: "down";
|
|
141
|
+
}>>;
|
|
142
|
+
amount: z.ZodOptional<z.ZodNumber>;
|
|
143
|
+
}, z.core.$strip>;
|
|
144
|
+
};
|
|
145
|
+
browserKeys: {
|
|
146
|
+
description: string;
|
|
147
|
+
schema: z.ZodObject<{
|
|
148
|
+
keys: z.ZodString;
|
|
149
|
+
}, z.core.$strip>;
|
|
150
|
+
};
|
|
151
|
+
browserBack: {
|
|
152
|
+
description: string;
|
|
153
|
+
schema: z.ZodObject<{}, z.core.$strip>;
|
|
154
|
+
};
|
|
155
|
+
browserSelect: {
|
|
156
|
+
description: string;
|
|
157
|
+
schema: z.ZodObject<{
|
|
158
|
+
index: z.ZodString;
|
|
159
|
+
value: z.ZodString;
|
|
160
|
+
}, z.core.$strip>;
|
|
161
|
+
};
|
|
162
|
+
browserHover: {
|
|
163
|
+
description: string;
|
|
164
|
+
schema: z.ZodObject<{
|
|
165
|
+
index: z.ZodString;
|
|
166
|
+
}, z.core.$strip>;
|
|
167
|
+
};
|
|
168
|
+
browserDblclick: {
|
|
169
|
+
description: string;
|
|
170
|
+
schema: z.ZodObject<{
|
|
171
|
+
index: z.ZodString;
|
|
172
|
+
}, z.core.$strip>;
|
|
173
|
+
};
|
|
174
|
+
browserRightclick: {
|
|
175
|
+
description: string;
|
|
176
|
+
schema: z.ZodObject<{
|
|
177
|
+
index: z.ZodString;
|
|
178
|
+
}, z.core.$strip>;
|
|
179
|
+
};
|
|
180
|
+
browserUpload: {
|
|
181
|
+
description: string;
|
|
182
|
+
schema: z.ZodObject<{
|
|
183
|
+
index: z.ZodString;
|
|
184
|
+
path: z.ZodString;
|
|
185
|
+
}, z.core.$strip>;
|
|
186
|
+
};
|
|
187
|
+
browserGetTitle: {
|
|
188
|
+
description: string;
|
|
189
|
+
schema: z.ZodObject<{}, z.core.$strip>;
|
|
190
|
+
};
|
|
191
|
+
browserGetHtml: {
|
|
192
|
+
description: string;
|
|
193
|
+
schema: z.ZodObject<{}, z.core.$strip>;
|
|
194
|
+
};
|
|
195
|
+
browserGetText: {
|
|
196
|
+
description: string;
|
|
197
|
+
schema: z.ZodObject<{
|
|
198
|
+
index: z.ZodString;
|
|
199
|
+
}, z.core.$strip>;
|
|
200
|
+
};
|
|
201
|
+
browserGetValue: {
|
|
202
|
+
description: string;
|
|
203
|
+
schema: z.ZodObject<{
|
|
204
|
+
index: z.ZodString;
|
|
205
|
+
}, z.core.$strip>;
|
|
206
|
+
};
|
|
207
|
+
browserGetAttributes: {
|
|
208
|
+
description: string;
|
|
209
|
+
schema: z.ZodObject<{
|
|
210
|
+
index: z.ZodString;
|
|
211
|
+
}, z.core.$strip>;
|
|
212
|
+
};
|
|
213
|
+
browserWaitForSelector: {
|
|
214
|
+
description: string;
|
|
215
|
+
schema: z.ZodObject<{
|
|
216
|
+
selector: z.ZodString;
|
|
217
|
+
}, z.core.$strip>;
|
|
218
|
+
};
|
|
219
|
+
browserWaitForText: {
|
|
220
|
+
description: string;
|
|
221
|
+
schema: z.ZodObject<{
|
|
222
|
+
text: z.ZodString;
|
|
223
|
+
}, z.core.$strip>;
|
|
224
|
+
};
|
|
225
|
+
browserSwitchTab: {
|
|
226
|
+
description: string;
|
|
227
|
+
schema: z.ZodObject<{
|
|
228
|
+
tab: z.ZodString;
|
|
229
|
+
}, z.core.$strip>;
|
|
230
|
+
};
|
|
231
|
+
browserCloseTab: {
|
|
232
|
+
description: string;
|
|
233
|
+
schema: z.ZodObject<{
|
|
234
|
+
tab: z.ZodOptional<z.ZodString>;
|
|
235
|
+
}, z.core.$strip>;
|
|
236
|
+
};
|
|
237
|
+
browserClose: {
|
|
238
|
+
description: string;
|
|
239
|
+
schema: z.ZodObject<{
|
|
240
|
+
all: z.ZodOptional<z.ZodBoolean>;
|
|
241
|
+
}, z.core.$strip>;
|
|
242
|
+
};
|
|
243
|
+
browserSessions: {
|
|
244
|
+
description: string;
|
|
245
|
+
schema: z.ZodObject<{}, z.core.$strip>;
|
|
246
|
+
};
|
|
247
|
+
};
|
|
248
|
+
afterInitialize(): Promise<void>;
|
|
249
|
+
/** Build the base args array with global flags */
|
|
250
|
+
private baseArgs;
|
|
251
|
+
/** Execute a browser-use command and parse the JSON result */
|
|
252
|
+
private exec;
|
|
253
|
+
/**
|
|
254
|
+
* Navigate to a URL
|
|
255
|
+
* @param url - The URL to open
|
|
256
|
+
* @returns The browser-use result
|
|
257
|
+
*
|
|
258
|
+
* @example
|
|
259
|
+
* ```typescript
|
|
260
|
+
* await browserUse.open('https://example.com')
|
|
261
|
+
* ```
|
|
262
|
+
*/
|
|
263
|
+
open(url: string): Promise<BrowserUseResult>;
|
|
264
|
+
/**
|
|
265
|
+
* Click an element by index or coordinates
|
|
266
|
+
* @param target - Element index or "x y" coordinates
|
|
267
|
+
*
|
|
268
|
+
* @example
|
|
269
|
+
* ```typescript
|
|
270
|
+
* await browserUse.click('21') // click element 21
|
|
271
|
+
* await browserUse.click('100 200') // click at coordinates
|
|
272
|
+
* ```
|
|
273
|
+
*/
|
|
274
|
+
click(target: string): Promise<BrowserUseResult>;
|
|
275
|
+
/**
|
|
276
|
+
* Type text at the current cursor position
|
|
277
|
+
* @param text - Text to type
|
|
278
|
+
*/
|
|
279
|
+
type(text: string): Promise<BrowserUseResult>;
|
|
280
|
+
/**
|
|
281
|
+
* Type text into a specific element
|
|
282
|
+
* @param index - Element index
|
|
283
|
+
* @param text - Text to enter
|
|
284
|
+
*/
|
|
285
|
+
input(index: string, text: string): Promise<BrowserUseResult>;
|
|
286
|
+
/**
|
|
287
|
+
* Get the current browser state (URL, title, interactive elements)
|
|
288
|
+
*
|
|
289
|
+
* @example
|
|
290
|
+
* ```typescript
|
|
291
|
+
* const state = await browserUse.getState()
|
|
292
|
+
* console.log(state.data._raw_text)
|
|
293
|
+
* ```
|
|
294
|
+
*/
|
|
295
|
+
getState(): Promise<BrowserUseResult>;
|
|
296
|
+
/**
|
|
297
|
+
* Take a screenshot
|
|
298
|
+
* @param options - Optional path and full-page flag
|
|
299
|
+
* @returns Base64 PNG data or file path
|
|
300
|
+
*/
|
|
301
|
+
screenshot(options?: {
|
|
302
|
+
path?: string;
|
|
303
|
+
full?: boolean;
|
|
304
|
+
}): Promise<BrowserUseResult>;
|
|
305
|
+
/**
|
|
306
|
+
* Execute JavaScript in the page context
|
|
307
|
+
* @param js - JavaScript code to evaluate
|
|
308
|
+
*/
|
|
309
|
+
evaluate(js: string): Promise<BrowserUseResult>;
|
|
310
|
+
/**
|
|
311
|
+
* Extract structured data from the page using an LLM
|
|
312
|
+
* @param query - Natural language description of what to extract
|
|
313
|
+
*/
|
|
314
|
+
extract(query: string): Promise<BrowserUseResult>;
|
|
315
|
+
/**
|
|
316
|
+
* Scroll the page
|
|
317
|
+
* @param direction - 'up' or 'down'
|
|
318
|
+
* @param amount - Pixels to scroll
|
|
319
|
+
*/
|
|
320
|
+
scroll(direction?: 'up' | 'down', amount?: number): Promise<BrowserUseResult>;
|
|
321
|
+
/**
|
|
322
|
+
* Send keyboard keys
|
|
323
|
+
* @param keys - Key combination (e.g. "Enter", "Control+a")
|
|
324
|
+
*/
|
|
325
|
+
keys(keys: string): Promise<BrowserUseResult>;
|
|
326
|
+
/** Go back in browser history */
|
|
327
|
+
back(): Promise<BrowserUseResult>;
|
|
328
|
+
/** Get the current page title */
|
|
329
|
+
getTitle(): Promise<BrowserUseResult>;
|
|
330
|
+
/** Get the full page HTML */
|
|
331
|
+
getHtml(): Promise<BrowserUseResult>;
|
|
332
|
+
/**
|
|
333
|
+
* Get text content of an element
|
|
334
|
+
* @param index - Element index
|
|
335
|
+
*/
|
|
336
|
+
getText(index: string): Promise<BrowserUseResult>;
|
|
337
|
+
/**
|
|
338
|
+
* Select a dropdown option
|
|
339
|
+
* @param index - Element index of the dropdown
|
|
340
|
+
* @param value - Value to select
|
|
341
|
+
*/
|
|
342
|
+
select(index: string, value: string): Promise<BrowserUseResult>;
|
|
343
|
+
/**
|
|
344
|
+
* Wait for a CSS selector to appear
|
|
345
|
+
* @param selector - CSS selector
|
|
346
|
+
*/
|
|
347
|
+
waitForSelector(selector: string): Promise<BrowserUseResult>;
|
|
348
|
+
/**
|
|
349
|
+
* Wait for text to appear on the page
|
|
350
|
+
* @param text - Text to wait for
|
|
351
|
+
*/
|
|
352
|
+
waitForText(text: string): Promise<BrowserUseResult>;
|
|
353
|
+
/**
|
|
354
|
+
* Switch to a tab by index
|
|
355
|
+
* @param tab - Tab index
|
|
356
|
+
*/
|
|
357
|
+
switchTab(tab: string): Promise<BrowserUseResult>;
|
|
358
|
+
/**
|
|
359
|
+
* Close a tab
|
|
360
|
+
* @param tab - Tab index (closes current if omitted)
|
|
361
|
+
*/
|
|
362
|
+
closeTab(tab?: string): Promise<BrowserUseResult>;
|
|
363
|
+
/**
|
|
364
|
+
* Close the browser session
|
|
365
|
+
* @param all - If true, close all sessions
|
|
366
|
+
*/
|
|
367
|
+
close(all?: boolean): Promise<BrowserUseResult>;
|
|
368
|
+
/** List active browser sessions */
|
|
369
|
+
sessions(): Promise<BrowserUseResult>;
|
|
370
|
+
/**
|
|
371
|
+
* Hover over an element
|
|
372
|
+
* @param index - Element index
|
|
373
|
+
*/
|
|
374
|
+
hover(index: string): Promise<BrowserUseResult>;
|
|
375
|
+
/**
|
|
376
|
+
* Double-click an element
|
|
377
|
+
* @param index - Element index
|
|
378
|
+
*/
|
|
379
|
+
dblclick(index: string): Promise<BrowserUseResult>;
|
|
380
|
+
/**
|
|
381
|
+
* Right-click an element
|
|
382
|
+
* @param index - Element index
|
|
383
|
+
*/
|
|
384
|
+
rightclick(index: string): Promise<BrowserUseResult>;
|
|
385
|
+
/**
|
|
386
|
+
* Upload a file to a file input element
|
|
387
|
+
* @param index - Element index of the file input
|
|
388
|
+
* @param path - Local file path to upload
|
|
389
|
+
*/
|
|
390
|
+
upload(index: string, path: string): Promise<BrowserUseResult>;
|
|
391
|
+
/**
|
|
392
|
+
* Get the value of an input or textarea element
|
|
393
|
+
* @param index - Element index
|
|
394
|
+
*/
|
|
395
|
+
getValue(index: string): Promise<BrowserUseResult>;
|
|
396
|
+
/**
|
|
397
|
+
* Get all attributes of an element
|
|
398
|
+
* @param index - Element index
|
|
399
|
+
*/
|
|
400
|
+
getAttributes(index: string): Promise<BrowserUseResult>;
|
|
401
|
+
browserOpen(options: {
|
|
402
|
+
url: string;
|
|
403
|
+
}): Promise<BrowserUseResult>;
|
|
404
|
+
browserClick(options: {
|
|
405
|
+
target: string;
|
|
406
|
+
}): Promise<BrowserUseResult>;
|
|
407
|
+
browserType(options: {
|
|
408
|
+
text: string;
|
|
409
|
+
}): Promise<BrowserUseResult>;
|
|
410
|
+
browserInput(options: {
|
|
411
|
+
index: string;
|
|
412
|
+
text: string;
|
|
413
|
+
}): Promise<BrowserUseResult>;
|
|
414
|
+
browserGetState(): Promise<BrowserUseResult>;
|
|
415
|
+
browserScreenshot(options: {
|
|
416
|
+
path?: string;
|
|
417
|
+
full?: boolean;
|
|
418
|
+
}): Promise<BrowserUseResult>;
|
|
419
|
+
browserEval(options: {
|
|
420
|
+
js: string;
|
|
421
|
+
}): Promise<BrowserUseResult>;
|
|
422
|
+
browserExtract(options: {
|
|
423
|
+
query: string;
|
|
424
|
+
}): Promise<BrowserUseResult>;
|
|
425
|
+
browserScroll(options: {
|
|
426
|
+
direction: 'up' | 'down';
|
|
427
|
+
amount?: number;
|
|
428
|
+
}): Promise<BrowserUseResult>;
|
|
429
|
+
browserKeys(options: {
|
|
430
|
+
keys: string;
|
|
431
|
+
}): Promise<BrowserUseResult>;
|
|
432
|
+
browserBack(): Promise<BrowserUseResult>;
|
|
433
|
+
browserGetTitle(): Promise<BrowserUseResult>;
|
|
434
|
+
browserGetHtml(): Promise<BrowserUseResult>;
|
|
435
|
+
browserGetText(options: {
|
|
436
|
+
index: string;
|
|
437
|
+
}): Promise<BrowserUseResult>;
|
|
438
|
+
browserSelect(options: {
|
|
439
|
+
index: string;
|
|
440
|
+
value: string;
|
|
441
|
+
}): Promise<BrowserUseResult>;
|
|
442
|
+
browserWaitForSelector(options: {
|
|
443
|
+
selector: string;
|
|
444
|
+
}): Promise<BrowserUseResult>;
|
|
445
|
+
browserWaitForText(options: {
|
|
446
|
+
text: string;
|
|
447
|
+
}): Promise<BrowserUseResult>;
|
|
448
|
+
browserSwitchTab(options: {
|
|
449
|
+
tab: string;
|
|
450
|
+
}): Promise<BrowserUseResult>;
|
|
451
|
+
browserCloseTab(options: {
|
|
452
|
+
tab?: string;
|
|
453
|
+
}): Promise<BrowserUseResult>;
|
|
454
|
+
browserClose(options: {
|
|
455
|
+
all?: boolean;
|
|
456
|
+
}): Promise<BrowserUseResult>;
|
|
457
|
+
browserSessions(): Promise<BrowserUseResult>;
|
|
458
|
+
browserHover(options: {
|
|
459
|
+
index: string;
|
|
460
|
+
}): Promise<BrowserUseResult>;
|
|
461
|
+
browserDblclick(options: {
|
|
462
|
+
index: string;
|
|
463
|
+
}): Promise<BrowserUseResult>;
|
|
464
|
+
browserRightclick(options: {
|
|
465
|
+
index: string;
|
|
466
|
+
}): Promise<BrowserUseResult>;
|
|
467
|
+
browserUpload(options: {
|
|
468
|
+
index: string;
|
|
469
|
+
path: string;
|
|
470
|
+
}): Promise<BrowserUseResult>;
|
|
471
|
+
browserGetValue(options: {
|
|
472
|
+
index: string;
|
|
473
|
+
}): Promise<BrowserUseResult>;
|
|
474
|
+
browserGetAttributes(options: {
|
|
475
|
+
index: string;
|
|
476
|
+
}): Promise<BrowserUseResult>;
|
|
477
|
+
}
|
|
478
|
+
export default BrowserUse;
|
|
479
|
+
//# sourceMappingURL=browser-use.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"browser-use.d.ts","sourceRoot":"","sources":["../../../src/agi/features/browser-use.ts"],"names":[],"mappings":"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"}
|