gm-gc 2.0.211 → 2.0.215
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/gemini-extension.json +1 -1
- package/hooks/pre-tool-use-hook.js +85 -6
- package/package.json +1 -1
package/gemini-extension.json
CHANGED
|
@@ -241,7 +241,7 @@ const run = () => {
|
|
|
241
241
|
const rawLang = (execMatch[1] || '').toLowerCase();
|
|
242
242
|
const code = execMatch[2];
|
|
243
243
|
if (/^\s*agent-browser\s/.test(code)) {
|
|
244
|
-
return deny(`Do not call agent-browser via exec:bash. Use exec:agent-browser instead:\n\nexec:agent-browser\n
|
|
244
|
+
return deny(`Do not call agent-browser via exec:bash. Use exec:agent-browser instead:\n\nexec:agent-browser\nopen http://example.com\n\nMultiple commands in one block:\n\nexec:agent-browser\nopen http://localhost:3001\nwait 2000\nsnapshot -i\n\nFor JS eval (DOM inspection, custom logic):\n\nexec:agent-browser\ndocument.title\n\nCLI commands (open, click, screenshot, snapshot, wait, console, tab, etc.) run directly.\nAnything that is not a CLI command goes through eval --stdin.\nClose tabs when done: exec:agent-browser\\nclose`);
|
|
245
245
|
}
|
|
246
246
|
const cwd = tool_input?.cwd;
|
|
247
247
|
|
|
@@ -364,11 +364,90 @@ const run = () => {
|
|
|
364
364
|
const wrapped = `const __result = await (async () => {\n${safeCode}\n})();\nif (__result !== undefined) { if (typeof __result === 'object') { console.log(JSON.stringify(__result, null, 2)); } else { console.log(__result); } }`;
|
|
365
365
|
result = runWithFile(lang || 'nodejs', wrapped);
|
|
366
366
|
} else if (lang === 'agent-browser') {
|
|
367
|
-
const abBin = localBin('agent-browser');
|
|
368
|
-
|
|
369
|
-
|
|
367
|
+
const abBin = fs.existsSync(localBin('agent-browser')) ? localBin('agent-browser') : 'agent-browser';
|
|
368
|
+
const AB_CMDS = new Set(['open','goto','navigate','close','quit','exit','back','forward','reload','click','dblclick','type','fill','press','check','uncheck','select','drag','upload','hover','focus','scroll','scrollintoview','wait','screenshot','pdf','snapshot','get','is','find','eval','connect','tab','frame','dialog','state','session','network','cookies','storage','set','trace','profiler','record','console','errors','highlight','inspect','diff','keyboard','mouse','install','upgrade','confirm','deny','auth','device','window']);
|
|
369
|
+
const AB_GLOBAL_FLAGS = new Set(['--cdp','--headed','--headless','--session','--session-name','--auto-connect','--profile','--allow-file-access','--color-scheme','-p','--platform','--device']);
|
|
370
|
+
const AB_GLOBAL_FLAGS_WITH_VALUE = new Set(['--cdp','--session','--session-name','--profile','--color-scheme','-p','--platform','--device']);
|
|
371
|
+
function loadAbProfile(dir) {
|
|
372
|
+
if (!dir) return [];
|
|
373
|
+
try {
|
|
374
|
+
const cfg = JSON.parse(fs.readFileSync(path.join(dir, '.agent-browser.json'), 'utf8'));
|
|
375
|
+
const flags = [];
|
|
376
|
+
if (cfg.headed) flags.push('--headed');
|
|
377
|
+
if (cfg.headless) flags.push('--headless');
|
|
378
|
+
if (cfg.profile) flags.push('--profile', cfg.profile);
|
|
379
|
+
if (cfg.cdp) flags.push('--cdp', String(cfg.cdp));
|
|
380
|
+
if (cfg.platform || cfg.p) flags.push('-p', cfg.platform || cfg.p);
|
|
381
|
+
if (cfg.device) flags.push('--device', cfg.device);
|
|
382
|
+
if (cfg['allow-file-access']) flags.push('--allow-file-access');
|
|
383
|
+
if (cfg['color-scheme']) flags.push('--color-scheme', cfg['color-scheme']);
|
|
384
|
+
return flags;
|
|
385
|
+
} catch { return []; }
|
|
386
|
+
}
|
|
387
|
+
const abProfileFlags = loadAbProfile(projectDir || cwd || process.cwd());
|
|
388
|
+
const AB_SESSION_STATE = path.join(os.tmpdir(), 'gm-ab-sessions.json');
|
|
389
|
+
function readAbSessions() { try { return JSON.parse(fs.readFileSync(AB_SESSION_STATE, 'utf8')); } catch { return {}; } }
|
|
390
|
+
function writeAbSessions(s) { try { fs.writeFileSync(AB_SESSION_STATE, JSON.stringify(s)); } catch {} }
|
|
391
|
+
function parseAbLine(line) {
|
|
392
|
+
const tokens = line.match(/(?:[^\s"']+|"[^"]*"|'[^']*')+/g) || [];
|
|
393
|
+
const globalArgs = [], rest = [];
|
|
394
|
+
let i = 0;
|
|
395
|
+
while (i < tokens.length) {
|
|
396
|
+
if (AB_GLOBAL_FLAGS.has(tokens[i])) {
|
|
397
|
+
globalArgs.push(tokens[i]);
|
|
398
|
+
if (AB_GLOBAL_FLAGS_WITH_VALUE.has(tokens[i]) && i + 1 < tokens.length && !tokens[i+1].startsWith('--')) {
|
|
399
|
+
globalArgs.push(tokens[++i]);
|
|
400
|
+
}
|
|
401
|
+
i++;
|
|
402
|
+
} else { rest.push(...tokens.slice(i)); break; }
|
|
403
|
+
}
|
|
404
|
+
return { globalArgs, rest };
|
|
405
|
+
}
|
|
406
|
+
const firstLineParsed = parseAbLine(safeCode.trim().split('\n')[0].trim());
|
|
407
|
+
const firstWord = (firstLineParsed.rest[0] || '').toLowerCase();
|
|
408
|
+
const sessionName = (() => { const si = firstLineParsed.globalArgs.indexOf('--session'); return si >= 0 ? firstLineParsed.globalArgs[si+1] : 'default'; })();
|
|
409
|
+
const isOpen = ['open','goto','navigate'].includes(firstWord);
|
|
410
|
+
const isClose = ['close','quit','exit'].includes(firstWord);
|
|
411
|
+
const sessions = readAbSessions();
|
|
412
|
+
if (isOpen) sessions[sessionName] = { url: (firstLineParsed.rest[1] || '?'), ts: Date.now() };
|
|
413
|
+
if (isClose) delete sessions[sessionName];
|
|
414
|
+
writeAbSessions(sessions);
|
|
415
|
+
const openSessions = Object.entries(sessions);
|
|
416
|
+
function mergeProfileFlags(userGlobalArgs) {
|
|
417
|
+
const userFlagSet = new Set(userGlobalArgs.filter(f => f.startsWith('-')));
|
|
418
|
+
const filtered = [];
|
|
419
|
+
for (let i = 0; i < abProfileFlags.length; i++) {
|
|
420
|
+
const f = abProfileFlags[i];
|
|
421
|
+
if (f.startsWith('-') && userFlagSet.has(f)) { if (AB_GLOBAL_FLAGS_WITH_VALUE.has(f)) i++; continue; }
|
|
422
|
+
filtered.push(f);
|
|
423
|
+
}
|
|
424
|
+
return [...filtered, ...userGlobalArgs];
|
|
425
|
+
}
|
|
426
|
+
if (AB_CMDS.has(firstWord)) {
|
|
427
|
+
const lines = safeCode.split('\n').map(l => l.trim()).filter(Boolean);
|
|
428
|
+
if (lines.length === 1) {
|
|
429
|
+
const { globalArgs, rest } = parseAbLine(lines[0]);
|
|
430
|
+
result = spawnDirect(abBin, [...mergeProfileFlags(globalArgs), ...rest]);
|
|
431
|
+
} else {
|
|
432
|
+
const hasClose = lines.some(l => { const w = (parseAbLine(l).rest[0]||'').toLowerCase(); return ['close','quit','exit'].includes(w); });
|
|
433
|
+
const cmds = lines.map(l => {
|
|
434
|
+
const { globalArgs, rest } = parseAbLine(l);
|
|
435
|
+
const w = (rest[0]||'').toLowerCase();
|
|
436
|
+
if (['open','goto','navigate'].includes(w)) sessions[sessionName] = { url: rest[1]||'?', ts: Date.now() };
|
|
437
|
+
if (['close','quit','exit'].includes(w)) delete sessions[sessionName];
|
|
438
|
+
if (!AB_CMDS.has(w)) return [...mergeProfileFlags(globalArgs), 'eval', l.trim()];
|
|
439
|
+
return [...mergeProfileFlags(globalArgs), ...rest];
|
|
440
|
+
});
|
|
441
|
+
writeAbSessions(sessions);
|
|
442
|
+
result = spawnDirect(abBin, ['batch'], JSON.stringify(cmds));
|
|
443
|
+
if (!hasClose && openSessions.length > 0) result += `\n\n[tab] Browser session "${sessionName}" still open. Close when done:\n exec:agent-browser\n close`;
|
|
444
|
+
}
|
|
370
445
|
} else {
|
|
371
|
-
result = spawnDirect(
|
|
446
|
+
result = spawnDirect(abBin, [...abProfileFlags, 'eval', '--stdin'], safeCode);
|
|
447
|
+
}
|
|
448
|
+
if (openSessions.length > 1) {
|
|
449
|
+
const stale = openSessions.filter(([n]) => n !== sessionName).map(([n,v]) => ` "${n}" → ${v.url} (${Math.round((Date.now()-v.ts)/60000)}min ago)`).join('\n');
|
|
450
|
+
result = (result || '') + `\n\n[tab] ${openSessions.length - 1} other session(s) still open:\n${stale}\n Close with: exec:agent-browser\\nclose (or --session <name> close)`;
|
|
372
451
|
}
|
|
373
452
|
} else {
|
|
374
453
|
result = runWithFile(lang, safeCode);
|
|
@@ -384,7 +463,7 @@ const run = () => {
|
|
|
384
463
|
try { helpText = '\n\n' + execSync(`"${localBin('gm-exec')}" --help`, { timeout: 10000, windowsHide: true }).toString().trim(); } catch (e) {
|
|
385
464
|
try { helpText = '\n\n' + execSync('bun x gm-exec --help', { timeout: 10000, windowsHide: true }).toString().trim(); } catch {}
|
|
386
465
|
}
|
|
387
|
-
return deny(`Bash is restricted to exec:<lang> and git.\n\nexec:<lang> syntax (lang auto-detected if omitted):\n exec:nodejs / exec:python / exec:bash / exec:typescript\n exec:go / exec:rust / exec:java / exec:c / exec:cpp\n exec:cmd ← runs cmd.exe /c on Windows\n exec:agent-browser ←
|
|
466
|
+
return deny(`Bash is restricted to exec:<lang> and git.\n\nexec:<lang> syntax (lang auto-detected if omitted):\n exec:nodejs / exec:python / exec:bash / exec:typescript\n exec:go / exec:rust / exec:java / exec:c / exec:cpp\n exec:cmd ← runs cmd.exe /c on Windows\n exec:agent-browser ← browser CLI (open, click, snapshot, wait, tab, console...)\n OR JS eval when body is not a CLI command\n exec ← auto-detects language\n\nexec:agent-browser examples:\n open http://localhost:3001 ← navigate\n snapshot -i ← get element refs\n wait 2000 ← wait ms\n console ← read browser console\n close ← ALWAYS close when done\n document.title ← JS eval (not a CLI command)\n\nMultiple CLI commands in one block run as batch:\n exec:agent-browser\n open http://localhost:3001\n wait 2000\n snapshot -i\n\nTask management shortcuts (body = args):\n exec:status\n <task_id>\n\n exec:sleep\n <task_id> [seconds] [--next-output]\n\n exec:type\n <task_id>\n <input to send to stdin>\n\n exec:close\n <task_id>\n\n exec:runner\n start|stop|status\n\nCode search shortcut:\n exec:codesearch\n <natural language query>\n\nbun x gm-exec${helpText}\n\nAll other Bash commands are blocked.`);
|
|
388
467
|
}
|
|
389
468
|
}
|
|
390
469
|
|