add: gemini-web-generate skill(整合 CLI + skill)

This commit is contained in:
2026-05-14 14:45:51 +08:00
parent a23b9a5272
commit 5df8934000
11 changed files with 3498 additions and 0 deletions
@@ -0,0 +1,15 @@
import path from 'path';
import { fileURLToPath } from 'url';
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
export const config = {
geminiUrl: 'https://gemini.google.com/app',
cdpUrl: process.env.CDP_URL || 'http://127.0.0.1:9223',
timeout: 300000,
pollInterval: 2000,
outputDir: path.join(__dirname, 'output'),
screenshotDir: path.join(__dirname, 'output', 'screenshots'),
downloadDir: path.join(__dirname, 'output', 'originals'),
};