@versatil/sdlc-framework
Version: 
🚀 AI-Native SDLC framework with 11-MCP ecosystem, RAG memory, OPERA orchestration, and 6 specialized agents achieving ZERO CONTEXT LOSS. Features complete CI/CD pipeline with 7 GitHub workflows (MCP testing, security scanning, performance benchmarking),
15 lines • 651 B
JavaScript
/**
 * Chrome MCP Configuration
 * Production-ready browser automation configuration
 */
export const DEFAULT_CHROME_MCP_CONFIG = {
    browserType: 'chromium',
    headless: process.env.CHROME_MCP_HEADLESS === 'true',
    devtools: process.env.CHROME_MCP_DEVTOOLS === 'true',
    slowMo: parseInt(process.env.CHROME_MCP_SLOW_MO || '0'),
    viewport: { width: 1920, height: 1080 },
    timeout: parseInt(process.env.CHROME_MCP_TIMEOUT || '30000'),
    sessionTimeout: parseInt(process.env.CHROME_MCP_SESSION_TIMEOUT || '300000'),
    baseURL: process.env.CHROME_MCP_BASE_URL || 'http://localhost:3000'
};
//# sourceMappingURL=chrome-mcp-config.js.map