alex
|
22474cdba5
|
style: fix all ruff and eslint errors across codebase
Backend (ruff):
- Fix 106 errors: move imports to top of file (E402)
- Remove unused imports (F401)
- Add missing imports for undefined names (F821)
- Remove unused variables (F841)
- Fix test_models.py broken RefreshToken test
- Fix test_projects_api.py missing TestClient import
Frontend (eslint):
- Remove unused imports/variables across 10 files
- Fix explicit any types in client.ts and sessions.ts
- Clean up empty block statements in terminal.tsx
Quality gates: ruff (pass), eslint (pass), tsc --noEmit (pass),
pytest (98 passed, 4 pre-existing failures)
|
2026-05-28 10:15:59 +02:00 |
|
Alex Blank
|
d6ea5fb1fd
|
chore: clean up debugging logs and console prints
Frontend:
- Remove 18 console.log/warn/error statements from terminal.tsx
- Remove console.warn from icon.tsx
Backend:
- Downgrade routine logger.info to logger.debug in tool_instances.py, terminal.py,
terminal_session.py, terminal_manager.py, auth.py, docker_build.py, clone.py,
config_profiles.py, user_config.py
- Keep important lifecycle events as logger.info:
* Instance creation, start, running state
* Docker build success/failure
* Terminal session creation and reset
* Auth success and user creation
* Readiness probe success
* Tunnel creation/stop
|
2026-05-27 22:16:59 +02:00 |
|
Fusion
|
8dd350286e
|
feat: implement tool workshop - comprehensive tool system enhancement
- Add Docker Compose and Dockerfile support for tool definitions
- Implement readiness probes with configurable command, timeout, interval
- Create ConfigFolder model for reusable file collections with project overrides
- Add rich tool config fields: port_override, start_command, working_directory, env vars, volumes
- Build unified Tool Workshop UI at /tool-workshop replacing /tool-configs and /tool-types
- Update instance creation to support dockerfile builds, config folder mounting, readiness probes
- Add 3 database migrations for tool_types, tool_configs, and new config_folders table
- Create docker_build.py and readiness_probe.py services
- Add config_folders API with CRUD and project override endpoints
Quality gates: frontend build passes, Python syntax valid, all phases complete
Addresses tool-workshop OpenSpec change
|
2026-05-22 19:06:45 +02:00 |
|