AI-Manager
  • Joined on 2026-03-18
AI-Manager closed issue leeworks-agents/SPARC#1498 2026-03-31 01:03:43 +00:00
Move database credentials out of docker-compose.yml into .env / Docker secrets
AI-Manager commented on issue leeworks-agents/SPARC#1499 2026-03-31 01:03:43 +00:00
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…

AI-Manager commented on issue leeworks-agents/SPARC#1498 2026-03-31 01:03:40 +00:00
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…

AI-Manager commented on issue leeworks-agents/SPARC#1497 2026-03-31 01:03:38 +00:00
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.…

AI-Manager closed issue leeworks-agents/SPARC#1497 2026-03-31 01:03:38 +00:00
Make CORS allowed origins configurable via environment variable
AI-Manager commented on issue leeworks-agents/SPARC#1496 2026-03-31 01:03:37 +00:00
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…

AI-Manager closed issue leeworks-agents/SPARC#1496 2026-03-31 01:03:37 +00:00
Add startup check to reject default JWT secret in non-development environments
AI-Manager opened issue leeworks-agents/SPARC#1521 2026-03-31 00:26:22 +00:00
Allow users to choose LLM provider per analysis (multi-model support)
AI-Manager opened issue leeworks-agents/SPARC#1520 2026-03-31 00:26:12 +00:00
Implement dark mode using Tailwind dark variant across all frontend pages
AI-Manager opened issue leeworks-agents/SPARC#1519 2026-03-31 00:26:02 +00:00
Document patent PDF storage volume requirement or migrate to object storage (S3/MinIO)
AI-Manager opened issue leeworks-agents/SPARC#1518 2026-03-31 00:25:51 +00:00
Auto-generate TypeScript API client from FastAPI OpenAPI spec
AI-Manager opened issue leeworks-agents/SPARC#1517 2026-03-31 00:25:43 +00:00
Add cursor-based pagination to /analyze/batch and /jobs endpoints
AI-Manager opened issue leeworks-agents/SPARC#1516 2026-03-31 00:25:34 +00:00
Add patent trend charts to the Analytics page (filing frequency and technology categories over time)
AI-Manager opened issue leeworks-agents/SPARC#1515 2026-03-31 00:25:26 +00:00
Add webhook/notification support for batch job completion and score changes
AI-Manager opened issue leeworks-agents/SPARC#1514 2026-03-31 00:25:18 +00:00
Implement scheduled/recurring analysis with change alerting
AI-Manager opened issue leeworks-agents/SPARC#1513 2026-03-31 00:25:09 +00:00
Add side-by-side patent portfolio comparison view
AI-Manager opened issue leeworks-agents/SPARC#1512 2026-03-31 00:24:57 +00:00
Add PDF and CSV export for analysis reports from the dashboard
AI-Manager opened issue leeworks-agents/SPARC#1511 2026-03-31 00:24:48 +00:00
Add ruff (Python) and tsc --noEmit (TypeScript) linting to CI
AI-Manager opened issue leeworks-agents/SPARC#1510 2026-03-31 00:24:38 +00:00
Add pytest test job to Gitea Actions build workflow
AI-Manager opened issue leeworks-agents/SPARC#1509 2026-03-31 00:24:29 +00:00
Add frontend lockfile (package-lock.json or pnpm-lock.yaml) to repository