Files
Fusion 94aa88c154 feat: add Sessions Hub page
- Add Sessions tab to navigation between Dashboard and Projects
- Show active session count badge in navigation
- Create SessionsPage with:
  - Last session section with resume button
  - Active sessions grid with open/stop actions
  - Recent sessions list
  - Create session form with project/repo/tool selectors
- Add last_session_id to user config
- Update UserConfig schemas (backend and frontend)
- Add comprehensive CSS for sessions page

Quality gates: typecheck ✓, lint ✓, build ✓
2026-05-19 23:06:54 +02:00

95 lines
2.4 KiB
Markdown

# API Documentation - Tasks
## Phase 1: Health Endpoints
- [x] **Task 1.1**: Enhance `/health` endpoint
- Add timestamp, version, uptime
- Add disk space check
- Add comprehensive checks object
- Create HealthCheck Pydantic models
- [x] **Task 1.2**: Create `/health/db` endpoint
- Database connection check
- Response time measurement
- Connection pool status
## Phase 2: Endpoint Documentation
- [x] **Task 2.1**: Document auth endpoints
- Add docstrings to `src/api/auth.py`
- Add response model descriptions
- Add error responses
- [x] **Task 2.2**: Document projects endpoints
- Add docstrings to `src/api/projects.py`
- Document request/response models
- [x] **Task 2.3**: Document repositories endpoints
- Add docstrings to `src/api/git_repositories.py`
- Document file operations
- [x] **Task 2.4**: Document user endpoints
- Add docstrings to `src/api/users.py`
- Document profile endpoints
- [x] **Task 2.5**: Document tool endpoints
- Add docstrings to `src/api/tool_types.py`
- Add docstrings to `src/api/tool_instances.py`
- [x] **Task 2.6**: Document SSH keys endpoints
- Add docstrings to `src/api/ssh_keys.py`
- [x] **Task 2.7**: Document config endpoints
- Add docstrings to `src/api/user_config.py`
- [x] **Task 2.8**: Document dashboard endpoint
- Add docstrings to `src/api/dashboard.py`
- [x] **Task 2.9**: Document terminal endpoint
- Add docstrings to `src/api/terminal.py`
## Phase 3: Model Documentation
- [x] **Task 3.1**: Document Pydantic models
- Add descriptions to all response models
- Add example values
- Document in `src/schemas/` or inline
## Phase 4: API README
- [x] **Task 4.1**: Create `apps/api/README.md`
- Overview section
- Quick start guide
- Environment variables table
- Development setup
- Testing instructions
- Architecture overview
- Common commands
## Phase 5: Architecture Decision Records
- [x] **Task 5.1**: Create ADR for session auth
- Document why cookies vs JWT
- Trade-offs and risks
- [x] **Task 5.2**: Create ADR for async SQLAlchemy
- Document async pattern choice
- PostgreSQL decision
## Phase 6: Quality Gates
- [x] **Task 6.1**: Verify `/docs` endpoint
- Check all endpoints appear
- Verify schemas are documented
- [x] **Task 6.2**: Verify health endpoints
- Test `/health`
- Test `/health/db`
- [x] **Task 6.3**: Run linting
- ruff check
- mypy
- [x] **Task 6.4**: Run tests
- pytest