Files
autocoder/.gitignore
Auto c1985eb285 feat: add interactive terminal and dev server management
Add new features for interactive terminal sessions and dev server control:

Terminal Component:
- New Terminal.tsx component using xterm.js for full terminal emulation
- WebSocket-based PTY communication with bidirectional I/O
- Cross-platform support (Windows via winpty, Unix via built-in pty)
- Auto-reconnection with exponential backoff
- Fix duplicate WebSocket connection bug by checking CONNECTING state
- Add manual close flag to prevent auto-reconnect race conditions
- Add project tracking to avoid duplicate connects on initial activation

Dev Server Management:
- New DevServerControl.tsx for starting/stopping dev servers
- DevServerManager service for subprocess management
- WebSocket streaming of dev server output
- Project configuration service for reading package.json scripts

Backend Infrastructure:
- Terminal router with WebSocket endpoint for PTY I/O
- DevServer router for server lifecycle management
- Terminal session manager with callback-based output streaming
- Enhanced WebSocket schemas for terminal and dev server messages

UI Integration:
- New Terminal and Dev Server tabs in the main application
- Updated DebugLogViewer with improved UI and functionality
- Extended useWebSocket hook for terminal message handling

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-12 10:35:36 +02:00

140 lines
1.6 KiB
Plaintext

# Agent-generated output directories
generations/
nul
issues/
# 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
# mypy
.mypy_cache/
.dmypy.json
dmypy.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/
# ===================
# 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
# ===================
# Misc
# ===================
*.bak
*.tmp
*.temp
.tmp/
.temp/
tmpclaude-*-cwd