Block a user
Move database credentials out of docker-compose.yml into .env / Docker secrets
Refactor get_db_client() in auth.py to use a shared pooled DatabaseClient
[Repo Manager] This issue is already resolved. SPARC/auth.py uses a module-level singleton _db_client with init_db_client()/close_db_client() lifecycle functions called from the FastAPI…
Move database credentials out of docker-compose.yml into .env / Docker secrets
[Repo Manager] This issue is already resolved. docker-compose.yml reads database credentials from environment variables (${POSTGRES_USER}, ${POSTGRES_PASSWORD}, ${POSTGRES_DB}) rather than…
Make CORS allowed origins configurable via environment variable
[Repo Manager] This issue is already resolved. SPARC/config.py reads CORS_ORIGINS from the environment (comma-separated), and api.py passes config.cors_origins to the CORSMiddleware.…
Make CORS allowed origins configurable via environment variable
Add startup check to reject default JWT secret in non-development environments
[Repo Manager] This issue is already resolved in the current codebase. The check_jwt_secret() function in SPARC/auth.py rejects the default JWT secret when APP_ENV is not development. It…
Add startup check to reject default JWT secret in non-development environments
Allow users to choose LLM provider per analysis (multi-model support)
Implement dark mode using Tailwind dark variant across all frontend pages
Document patent PDF storage volume requirement or migrate to object storage (S3/MinIO)
Auto-generate TypeScript API client from FastAPI OpenAPI spec
Add cursor-based pagination to /analyze/batch and /jobs endpoints
Add patent trend charts to the Analytics page (filing frequency and technology categories over time)
Add webhook/notification support for batch job completion and score changes
Implement scheduled/recurring analysis with change alerting
Add side-by-side patent portfolio comparison view
Add PDF and CSV export for analysis reports from the dashboard
Add ruff (Python) and tsc --noEmit (TypeScript) linting to CI
Add pytest test job to Gitea Actions build workflow
Add frontend lockfile (package-lock.json or pnpm-lock.yaml) to repository