mirror of
https://github.com/leonvanzyl/autocoder.git
synced 2026-03-16 18:33:08 +00:00
Major changes across 21 files (755 additions, 196 deletions): Browser Automation Migration: - Add versioned project migration system (prompts.py) with content-based detection and section-level regex replacement for coding/testing prompts - Migrate STEP 5 (browser verification) and BROWSER AUTOMATION sections in coding prompt template to use playwright-cli commands - Migrate STEP 2 and AVAILABLE TOOLS sections in testing prompt template - Migration auto-runs at agent startup (autonomous_agent_demo.py), copies playwright-cli skill, scaffolds .playwright/cli.config.json, updates .gitignore, and stamps .migration_version file - Add playwright-cli command validation to security allowlist (security.py) with tests for allowed subcommands and blocked eval/run-code Headless Browser Setting Fix: - Add _apply_playwright_headless() to process_manager.py that reads/updates .playwright/cli.config.json before agent subprocess launch - Remove dead PLAYWRIGHT_HEADLESS env var that was never consumed - Settings UI toggle now correctly controls visible browser window Playwright CLI Auto-Install: - Add ensurePlaywrightCli() to lib/cli.js for npm global entry point - Add playwright-cli detection + npm install to start.bat, start.sh, start_ui.bat, start_ui.sh for all startup paths Other Improvements: - Add project folder path tooltip to ProjectSelector.tsx dropdown items - Remove legacy Playwright MCP server configuration from client.py - Update CLAUDE.md with playwright-cli skill documentation Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
165 lines
2.0 KiB
Plaintext
165 lines
2.0 KiB
Plaintext
# Agent-generated output directories
|
|
generations/
|
|
automaker/
|
|
temp/
|
|
temp-docs/
|
|
|
|
nul
|
|
issues/
|
|
|
|
# Browser profiles for parallel agent execution
|
|
.browser-profiles/
|
|
|
|
# Playwright CLI daemon artifacts
|
|
.playwright-cli/
|
|
.playwright/
|
|
|
|
# Log files
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# ===================
|
|
# Node.js
|
|
# ===================
|
|
node_modules/
|
|
.npm
|
|
.yarn-integrity
|
|
.node_repl_history
|
|
|
|
# ===================
|
|
# Python
|
|
# ===================
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
*.egg
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
eggs/
|
|
.eggs/
|
|
*.manifest
|
|
*.spec
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
|
|
# Virtual environments
|
|
venv/
|
|
.venv/
|
|
ENV/
|
|
env/
|
|
.env.bak/
|
|
|
|
# PyInstaller
|
|
*.manifest
|
|
*.spec
|
|
|
|
# Installer logs
|
|
pip-log.txt
|
|
|
|
# Unit test / coverage
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
.coverage
|
|
.coverage.*
|
|
coverage/
|
|
coverage.xml
|
|
*.cover
|
|
*.py,cover
|
|
.hypothesis/
|
|
.pytest_cache/
|
|
nosetests.xml
|
|
ui/playwright-report/
|
|
|
|
# mypy
|
|
.mypy_cache/
|
|
.dmypy.json
|
|
dmypy.json
|
|
|
|
.ruff_cache/
|
|
|
|
# ===================
|
|
# Claude Code
|
|
# ===================
|
|
.claude/settings.local.json
|
|
|
|
# ===================
|
|
# IDE / Editors
|
|
# ===================
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*.sublime-workspace
|
|
*.sublime-project
|
|
.spyderproject
|
|
.spyproject
|
|
.ropeproject
|
|
|
|
# ===================
|
|
# OS generated files
|
|
# ===================
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
Desktop.ini
|
|
|
|
# ===================
|
|
# Build outputs
|
|
# ===================
|
|
ui/dist/
|
|
ui/.vite/
|
|
.vite/
|
|
*.tgz
|
|
|
|
# ===================
|
|
# Environment files
|
|
# ===================
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
.env.*.local
|
|
|
|
# ===================
|
|
# Cache directories
|
|
# ===================
|
|
.cache/
|
|
.parcel-cache/
|
|
.eslintcache
|
|
.stylelintcache
|
|
|
|
# ===================
|
|
# Lock files (except package-lock.json)
|
|
# ===================
|
|
yarn.lock
|
|
pnpm-lock.yaml
|
|
poetry.lock
|
|
Pipfile.lock
|
|
|
|
# ===================
|
|
# TypeScript
|
|
# ===================
|
|
*.tsbuildinfo
|
|
|
|
# ===================
|
|
# Misc
|
|
# ===================
|
|
*.bak
|
|
*.tmp
|
|
*.temp
|
|
.tmp/
|
|
.temp/
|
|
tmpclaude-*-cwd
|
|
ui/test-results/
|