@sparkleideas/browser 3.0.0-alpha.8 → 3.0.0-alpha.9
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/.agentic-flow/intelligence.json +17 -0
- package/agents/architect.yaml +1 -1
- package/agents/coder.yaml +1 -1
- package/agents/reviewer.yaml +1 -1
- package/agents/security-architect.yaml +1 -1
- package/agents/tester.yaml +1 -1
- package/dist/agent/index.d.ts +25 -0
- package/dist/agent/index.d.ts.map +1 -0
- package/dist/agent/index.js +33 -0
- package/dist/agent/index.js.map +1 -0
- package/dist/application/browser-service.d.ts +228 -0
- package/dist/application/browser-service.d.ts.map +1 -0
- package/dist/application/browser-service.js +470 -0
- package/dist/application/browser-service.js.map +1 -0
- package/dist/domain/types.d.ts +428 -0
- package/dist/domain/types.d.ts.map +1 -0
- package/dist/domain/types.js +95 -0
- package/dist/domain/types.js.map +1 -0
- package/dist/index.d.ts +131 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +84 -0
- package/dist/index.js.map +1 -0
- package/dist/infrastructure/agent-browser-adapter.d.ts +134 -0
- package/dist/infrastructure/agent-browser-adapter.d.ts.map +1 -0
- package/dist/infrastructure/agent-browser-adapter.js +551 -0
- package/dist/infrastructure/agent-browser-adapter.js.map +1 -0
- package/dist/infrastructure/hooks-integration.d.ts +109 -0
- package/dist/infrastructure/hooks-integration.d.ts.map +1 -0
- package/dist/infrastructure/hooks-integration.js +111 -0
- package/dist/infrastructure/hooks-integration.js.map +1 -0
- package/dist/infrastructure/memory-integration.d.ts +149 -0
- package/dist/infrastructure/memory-integration.d.ts.map +1 -0
- package/dist/infrastructure/memory-integration.js +335 -0
- package/dist/infrastructure/memory-integration.js.map +1 -0
- package/dist/infrastructure/reasoningbank-adapter.d.ts +90 -0
- package/dist/infrastructure/reasoningbank-adapter.d.ts.map +1 -0
- package/dist/infrastructure/reasoningbank-adapter.js +224 -0
- package/dist/infrastructure/reasoningbank-adapter.js.map +1 -0
- package/dist/infrastructure/security-integration.d.ts +80 -0
- package/dist/infrastructure/security-integration.d.ts.map +1 -0
- package/dist/infrastructure/security-integration.js +404 -0
- package/dist/infrastructure/security-integration.js.map +1 -0
- package/dist/infrastructure/workflow-templates.d.ts +95 -0
- package/dist/infrastructure/workflow-templates.d.ts.map +1 -0
- package/dist/infrastructure/workflow-templates.js +366 -0
- package/dist/infrastructure/workflow-templates.js.map +1 -0
- package/dist/mcp-tools/browser-tools.d.ts +18 -0
- package/dist/mcp-tools/browser-tools.d.ts.map +1 -0
- package/dist/mcp-tools/browser-tools.js +1163 -0
- package/dist/mcp-tools/browser-tools.js.map +1 -0
- package/dist/mcp-tools/index.d.ts +6 -0
- package/dist/mcp-tools/index.d.ts.map +1 -0
- package/dist/mcp-tools/index.js +6 -0
- package/dist/mcp-tools/index.js.map +1 -0
- package/dist/skill/index.d.ts +15 -0
- package/dist/skill/index.d.ts.map +1 -0
- package/dist/skill/index.js +23 -0
- package/dist/skill/index.js.map +1 -0
- package/package.json +3 -4
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"patterns": {
|
|
3
|
+
"command:": {
|
|
4
|
+
"success": 0.947665236697264,
|
|
5
|
+
"failure": -0.343094701955
|
|
6
|
+
}
|
|
7
|
+
},
|
|
8
|
+
"sequences": {},
|
|
9
|
+
"memories": [],
|
|
10
|
+
"dirPatterns": {},
|
|
11
|
+
"errorPatterns": [],
|
|
12
|
+
"metrics": {
|
|
13
|
+
"totalRoutes": 39,
|
|
14
|
+
"successfulRoutes": 28,
|
|
15
|
+
"routingHistory": []
|
|
16
|
+
}
|
|
17
|
+
}
|
package/agents/architect.yaml
CHANGED
package/agents/coder.yaml
CHANGED
package/agents/reviewer.yaml
CHANGED
package/agents/tester.yaml
CHANGED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Browser Agent Exports
|
|
3
|
+
* Re-exports agent-related functionality for swarm integration
|
|
4
|
+
*/
|
|
5
|
+
export { BrowserSwarmCoordinator, createBrowserSwarm } from '../application/browser-service.js';
|
|
6
|
+
export { ReasoningBankAdapter, getReasoningBank } from '../infrastructure/reasoningbank-adapter.js';
|
|
7
|
+
export type { BrowserPattern, PatternStep } from '../infrastructure/reasoningbank-adapter.js';
|
|
8
|
+
export declare const AGENT_METADATA: {
|
|
9
|
+
name: string;
|
|
10
|
+
description: string;
|
|
11
|
+
version: string;
|
|
12
|
+
routing: {
|
|
13
|
+
complexity: string;
|
|
14
|
+
model: string;
|
|
15
|
+
priority: string;
|
|
16
|
+
keywords: string[];
|
|
17
|
+
};
|
|
18
|
+
capabilities: string[];
|
|
19
|
+
swarm: {
|
|
20
|
+
roles: string[];
|
|
21
|
+
topology: string;
|
|
22
|
+
maxSessions: number;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/agent/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,uBAAuB,EAAE,kBAAkB,EAAE,MAAM,mCAAmC,CAAC;AAChG,OAAO,EAAE,oBAAoB,EAAE,gBAAgB,EAAE,MAAM,4CAA4C,CAAC;AACpG,YAAY,EAAE,cAAc,EAAE,WAAW,EAAE,MAAM,4CAA4C,CAAC;AAG9F,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;CAwB1B,CAAC"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Browser Agent Exports
|
|
3
|
+
* Re-exports agent-related functionality for swarm integration
|
|
4
|
+
*/
|
|
5
|
+
export { BrowserSwarmCoordinator, createBrowserSwarm } from '../application/browser-service.js';
|
|
6
|
+
export { ReasoningBankAdapter, getReasoningBank } from '../infrastructure/reasoningbank-adapter.js';
|
|
7
|
+
// Agent metadata
|
|
8
|
+
export const AGENT_METADATA = {
|
|
9
|
+
name: 'browser-agent',
|
|
10
|
+
description: 'Web automation specialist using agent-browser with AI-optimized snapshots',
|
|
11
|
+
version: '1.0.0',
|
|
12
|
+
routing: {
|
|
13
|
+
complexity: 'medium',
|
|
14
|
+
model: 'sonnet',
|
|
15
|
+
priority: 'normal',
|
|
16
|
+
keywords: ['browser', 'web', 'scrape', 'screenshot', 'navigate', 'login', 'form', 'click', 'automate'],
|
|
17
|
+
},
|
|
18
|
+
capabilities: [
|
|
19
|
+
'web-navigation',
|
|
20
|
+
'form-interaction',
|
|
21
|
+
'screenshot-capture',
|
|
22
|
+
'data-extraction',
|
|
23
|
+
'network-interception',
|
|
24
|
+
'session-management',
|
|
25
|
+
'multi-tab-coordination',
|
|
26
|
+
],
|
|
27
|
+
swarm: {
|
|
28
|
+
roles: ['navigator', 'scraper', 'validator', 'tester', 'monitor'],
|
|
29
|
+
topology: 'hierarchical',
|
|
30
|
+
maxSessions: 5,
|
|
31
|
+
},
|
|
32
|
+
};
|
|
33
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/agent/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,uBAAuB,EAAE,kBAAkB,EAAE,MAAM,mCAAmC,CAAC;AAChG,OAAO,EAAE,oBAAoB,EAAE,gBAAgB,EAAE,MAAM,4CAA4C,CAAC;AAGpG,iBAAiB;AACjB,MAAM,CAAC,MAAM,cAAc,GAAG;IAC5B,IAAI,EAAE,eAAe;IACrB,WAAW,EAAE,2EAA2E;IACxF,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE;QACP,UAAU,EAAE,QAAQ;QACpB,KAAK,EAAE,QAAQ;QACf,QAAQ,EAAE,QAAQ;QAClB,QAAQ,EAAE,CAAC,SAAS,EAAE,KAAK,EAAE,QAAQ,EAAE,YAAY,EAAE,UAAU,EAAE,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,CAAC;KACvG;IACD,YAAY,EAAE;QACZ,gBAAgB;QAChB,kBAAkB;QAClB,oBAAoB;QACpB,iBAAiB;QACjB,sBAAsB;QACtB,oBAAoB;QACpB,wBAAwB;KACzB;IACD,KAAK,EAAE;QACL,KAAK,EAAE,CAAC,WAAW,EAAE,SAAS,EAAE,WAAW,EAAE,QAAQ,EAAE,SAAS,CAAC;QACjE,QAAQ,EAAE,cAAc;QACxB,WAAW,EAAE,CAAC;KACf;CACF,CAAC"}
|
|
@@ -0,0 +1,228 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @sparkleideas/browser - Browser Service
|
|
3
|
+
* Core application service integrating agent-browser with agentic-flow
|
|
4
|
+
*/
|
|
5
|
+
import { AgentBrowserAdapter } from '../infrastructure/agent-browser-adapter.js';
|
|
6
|
+
import { type BrowserMemoryManager } from '../infrastructure/memory-integration.js';
|
|
7
|
+
import { type BrowserSecurityScanner, type ThreatScanResult } from '../infrastructure/security-integration.js';
|
|
8
|
+
import type { Snapshot, SnapshotOptions, ActionResult, BrowserTrajectory, BrowserTrajectoryStep, BrowserSwarmConfig, BrowserAgentConfig } from '../domain/types.js';
|
|
9
|
+
interface TrajectoryTracker {
|
|
10
|
+
id: string;
|
|
11
|
+
sessionId: string;
|
|
12
|
+
goal: string;
|
|
13
|
+
steps: BrowserTrajectoryStep[];
|
|
14
|
+
startedAt: string;
|
|
15
|
+
lastSnapshot?: Snapshot;
|
|
16
|
+
}
|
|
17
|
+
export interface BrowserServiceConfig extends Partial<BrowserAgentConfig> {
|
|
18
|
+
enableMemory?: boolean;
|
|
19
|
+
enableSecurity?: boolean;
|
|
20
|
+
requireHttps?: boolean;
|
|
21
|
+
blockedDomains?: string[];
|
|
22
|
+
allowedDomains?: string[];
|
|
23
|
+
}
|
|
24
|
+
export declare class BrowserService {
|
|
25
|
+
private adapter;
|
|
26
|
+
private sessionId;
|
|
27
|
+
private currentTrajectory?;
|
|
28
|
+
private snapshots;
|
|
29
|
+
private memoryManager?;
|
|
30
|
+
private securityScanner?;
|
|
31
|
+
private config;
|
|
32
|
+
constructor(config?: BrowserServiceConfig);
|
|
33
|
+
/**
|
|
34
|
+
* Start a new trajectory for learning
|
|
35
|
+
*/
|
|
36
|
+
startTrajectory(goal: string): string;
|
|
37
|
+
/**
|
|
38
|
+
* Record a step in the current trajectory
|
|
39
|
+
*/
|
|
40
|
+
private recordStep;
|
|
41
|
+
/**
|
|
42
|
+
* End trajectory and return for learning (also stores in memory)
|
|
43
|
+
*/
|
|
44
|
+
endTrajectory(success: boolean, verdict?: string): Promise<BrowserTrajectory | null>;
|
|
45
|
+
/**
|
|
46
|
+
* Get current trajectory for inspection
|
|
47
|
+
*/
|
|
48
|
+
getCurrentTrajectory(): TrajectoryTracker | null;
|
|
49
|
+
/**
|
|
50
|
+
* Navigate to URL with trajectory tracking and security scanning
|
|
51
|
+
*/
|
|
52
|
+
open(url: string, options?: {
|
|
53
|
+
waitUntil?: 'load' | 'domcontentloaded' | 'networkidle';
|
|
54
|
+
headers?: Record<string, string>;
|
|
55
|
+
skipSecurityCheck?: boolean;
|
|
56
|
+
}): Promise<ActionResult>;
|
|
57
|
+
/**
|
|
58
|
+
* Scan URL for security threats without navigating
|
|
59
|
+
*/
|
|
60
|
+
scanUrl(url: string): Promise<ThreatScanResult>;
|
|
61
|
+
/**
|
|
62
|
+
* Get snapshot with automatic caching
|
|
63
|
+
*/
|
|
64
|
+
snapshot(options?: SnapshotOptions): Promise<ActionResult<Snapshot>>;
|
|
65
|
+
/**
|
|
66
|
+
* Click with trajectory tracking
|
|
67
|
+
*/
|
|
68
|
+
click(target: string, options?: {
|
|
69
|
+
button?: 'left' | 'right' | 'middle';
|
|
70
|
+
force?: boolean;
|
|
71
|
+
}): Promise<ActionResult>;
|
|
72
|
+
/**
|
|
73
|
+
* Fill input with trajectory tracking and PII scanning
|
|
74
|
+
*/
|
|
75
|
+
fill(target: string, value: string, options?: {
|
|
76
|
+
force?: boolean;
|
|
77
|
+
skipPIICheck?: boolean;
|
|
78
|
+
}): Promise<ActionResult>;
|
|
79
|
+
/**
|
|
80
|
+
* Check if content contains PII
|
|
81
|
+
*/
|
|
82
|
+
scanForPII(content: string, context?: string): ThreatScanResult;
|
|
83
|
+
/**
|
|
84
|
+
* Type text with trajectory tracking
|
|
85
|
+
*/
|
|
86
|
+
type(target: string, text: string, options?: {
|
|
87
|
+
delay?: number;
|
|
88
|
+
}): Promise<ActionResult>;
|
|
89
|
+
/**
|
|
90
|
+
* Press key with trajectory tracking
|
|
91
|
+
*/
|
|
92
|
+
press(key: string, delay?: number): Promise<ActionResult>;
|
|
93
|
+
/**
|
|
94
|
+
* Wait for condition
|
|
95
|
+
*/
|
|
96
|
+
wait(options: {
|
|
97
|
+
selector?: string;
|
|
98
|
+
timeout?: number;
|
|
99
|
+
text?: string;
|
|
100
|
+
url?: string;
|
|
101
|
+
load?: 'load' | 'domcontentloaded' | 'networkidle';
|
|
102
|
+
fn?: string;
|
|
103
|
+
}): Promise<ActionResult>;
|
|
104
|
+
/**
|
|
105
|
+
* Get element text
|
|
106
|
+
*/
|
|
107
|
+
getText(target: string): Promise<ActionResult<string>>;
|
|
108
|
+
/**
|
|
109
|
+
* Execute JavaScript
|
|
110
|
+
*/
|
|
111
|
+
eval<T = unknown>(script: string): Promise<ActionResult<T>>;
|
|
112
|
+
/**
|
|
113
|
+
* Take screenshot
|
|
114
|
+
*/
|
|
115
|
+
screenshot(options?: {
|
|
116
|
+
path?: string;
|
|
117
|
+
fullPage?: boolean;
|
|
118
|
+
}): Promise<ActionResult<string>>;
|
|
119
|
+
/**
|
|
120
|
+
* Close browser
|
|
121
|
+
*/
|
|
122
|
+
close(): Promise<ActionResult>;
|
|
123
|
+
/**
|
|
124
|
+
* Authenticate using header injection (skips login UI)
|
|
125
|
+
*/
|
|
126
|
+
authenticateWithHeaders(url: string, headers: Record<string, string>): Promise<ActionResult>;
|
|
127
|
+
/**
|
|
128
|
+
* Fill and submit a form
|
|
129
|
+
*/
|
|
130
|
+
submitForm(fields: Array<{
|
|
131
|
+
target: string;
|
|
132
|
+
value: string;
|
|
133
|
+
}>, submitButton: string): Promise<ActionResult>;
|
|
134
|
+
/**
|
|
135
|
+
* Extract data using snapshot refs
|
|
136
|
+
*/
|
|
137
|
+
extractData(refs: string[]): Promise<Record<string, string>>;
|
|
138
|
+
/**
|
|
139
|
+
* Navigate and wait for specific element
|
|
140
|
+
*/
|
|
141
|
+
navigateAndWait(url: string, selector: string, timeout?: number): Promise<ActionResult>;
|
|
142
|
+
/**
|
|
143
|
+
* Get cached snapshot
|
|
144
|
+
*/
|
|
145
|
+
getLatestSnapshot(): Snapshot | null;
|
|
146
|
+
/**
|
|
147
|
+
* Get session ID
|
|
148
|
+
*/
|
|
149
|
+
getSessionId(): string;
|
|
150
|
+
/**
|
|
151
|
+
* Get underlying adapter for advanced operations
|
|
152
|
+
*/
|
|
153
|
+
getAdapter(): AgentBrowserAdapter;
|
|
154
|
+
/**
|
|
155
|
+
* Get memory manager for direct memory operations
|
|
156
|
+
*/
|
|
157
|
+
getMemoryManager(): BrowserMemoryManager | undefined;
|
|
158
|
+
/**
|
|
159
|
+
* Get security scanner for direct security operations
|
|
160
|
+
*/
|
|
161
|
+
getSecurityScanner(): BrowserSecurityScanner | undefined;
|
|
162
|
+
/**
|
|
163
|
+
* Find similar trajectories for a goal (uses HNSW search)
|
|
164
|
+
*/
|
|
165
|
+
findSimilarTrajectories(goal: string, topK?: number): Promise<BrowserTrajectory[]>;
|
|
166
|
+
/**
|
|
167
|
+
* Get session memory statistics
|
|
168
|
+
*/
|
|
169
|
+
getMemoryStats(): Promise<{
|
|
170
|
+
trajectories: number;
|
|
171
|
+
patterns: number;
|
|
172
|
+
snapshots: number;
|
|
173
|
+
errors: number;
|
|
174
|
+
successRate: number;
|
|
175
|
+
} | null>;
|
|
176
|
+
}
|
|
177
|
+
export declare class BrowserSwarmCoordinator {
|
|
178
|
+
private config;
|
|
179
|
+
private services;
|
|
180
|
+
private sharedData;
|
|
181
|
+
constructor(config: BrowserSwarmConfig);
|
|
182
|
+
/**
|
|
183
|
+
* Spawn a new browser agent in the swarm
|
|
184
|
+
*/
|
|
185
|
+
spawnAgent(role: 'navigator' | 'scraper' | 'validator' | 'tester' | 'monitor'): Promise<BrowserService>;
|
|
186
|
+
/**
|
|
187
|
+
* Get capabilities for a role
|
|
188
|
+
*/
|
|
189
|
+
private getCapabilitiesForRole;
|
|
190
|
+
/**
|
|
191
|
+
* Share data between agents
|
|
192
|
+
*/
|
|
193
|
+
shareData(key: string, value: unknown): void;
|
|
194
|
+
/**
|
|
195
|
+
* Get shared data
|
|
196
|
+
*/
|
|
197
|
+
getSharedData<T>(key: string): T | undefined;
|
|
198
|
+
/**
|
|
199
|
+
* Get all active sessions
|
|
200
|
+
*/
|
|
201
|
+
getSessions(): string[];
|
|
202
|
+
/**
|
|
203
|
+
* Get a specific service
|
|
204
|
+
*/
|
|
205
|
+
getService(sessionId: string): BrowserService | undefined;
|
|
206
|
+
/**
|
|
207
|
+
* Close all sessions
|
|
208
|
+
*/
|
|
209
|
+
closeAll(): Promise<void>;
|
|
210
|
+
/**
|
|
211
|
+
* Get coordinator stats
|
|
212
|
+
*/
|
|
213
|
+
getStats(): {
|
|
214
|
+
activeSessions: number;
|
|
215
|
+
maxSessions: number;
|
|
216
|
+
topology: string;
|
|
217
|
+
};
|
|
218
|
+
}
|
|
219
|
+
/**
|
|
220
|
+
* Create a standalone browser service
|
|
221
|
+
*/
|
|
222
|
+
export declare function createBrowserService(options?: Partial<BrowserAgentConfig>): BrowserService;
|
|
223
|
+
/**
|
|
224
|
+
* Create a browser swarm coordinator
|
|
225
|
+
*/
|
|
226
|
+
export declare function createBrowserSwarm(config?: Partial<BrowserSwarmConfig>): BrowserSwarmCoordinator;
|
|
227
|
+
export default BrowserService;
|
|
228
|
+
//# sourceMappingURL=browser-service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"browser-service.d.ts","sourceRoot":"","sources":["../../src/application/browser-service.ts"],"names":[],"mappings":"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"}
|