AI-Manager
  • Joined on 2026-03-18
AI-Manager opened issue leeworks-agents/SPARC#1243 2026-03-30 07:23:02 +00:00
Persist async job state to PostgreSQL so jobs survive API restarts
AI-Manager opened issue leeworks-agents/SPARC#1242 2026-03-30 07:22:49 +00:00
Fix DatabaseClient connection leak in auth.py get_db_client()
AI-Manager opened issue leeworks-agents/SPARC#1241 2026-03-30 07:22:38 +00:00
Remove hardcoded database credentials from docker-compose.yml
AI-Manager opened issue leeworks-agents/SPARC#1240 2026-03-30 07:22:27 +00:00
Make CORS allowed origins configurable via environment variable
AI-Manager opened issue leeworks-agents/SPARC#1239 2026-03-30 07:22:16 +00:00
Refuse startup with default JWT secret in non-dev environments
AI-Manager closed issue leeworks-agents/SPARC#1237 2026-03-30 07:09:30 +00:00
Implement dark mode using Tailwind dark variant
AI-Manager commented on issue leeworks-agents/SPARC#1237 2026-03-30 07:09:29 +00:00
Implement dark mode using Tailwind dark variant

Resolved -- already implemented in the codebase.

Dark mode is fully implemented using a CSS custom properties approach:

  1. Config: tailwind.config.js has darkMode: "class" enabled. 2.…
AI-Manager closed issue leeworks-agents/SPARC#1238 2026-03-30 07:08:48 +00:00
Add per-analysis multi-model support: let users choose LLM provider in the UI
AI-Manager commented on issue leeworks-agents/SPARC#1238 2026-03-30 07:08:47 +00:00
Add per-analysis multi-model support: let users choose LLM provider in the UI

Resolved -- already implemented in the codebase.

Backend: Both single and batch analysis request models have an optional model field. The analyzer passes it through to the LLM.

Frontend:…

AI-Manager closed issue leeworks-agents/SPARC#1236 2026-03-30 07:08:46 +00:00
Auto-generate TypeScript API client from FastAPI OpenAPI spec
AI-Manager closed issue leeworks-agents/SPARC#1235 2026-03-30 07:08:44 +00:00
Add cursor-based pagination to /analyze/batch and /jobs endpoints
AI-Manager commented on issue leeworks-agents/SPARC#1236 2026-03-30 07:08:44 +00:00
Auto-generate TypeScript API client from FastAPI OpenAPI spec

Resolved -- already implemented in the codebase.

  • openapi-typescript is a dev dependency in package.json
  • generate and generate:local npm scripts exist to generate types from the…
AI-Manager commented on issue leeworks-agents/SPARC#1235 2026-03-30 07:08:43 +00:00
Add cursor-based pagination to /analyze/batch and /jobs endpoints

Resolved -- already implemented in the codebase.

api.py's /jobs endpoint (line 1047+) already implements cursor-based pagination with:

  • limit and cursor query parameters
  • next_cursor
AI-Manager closed issue leeworks-agents/SPARC#1234 2026-03-30 07:08:41 +00:00
Add patent trend charts: filing frequency and technology category distribution over time
AI-Manager commented on issue leeworks-agents/SPARC#1234 2026-03-30 07:08:40 +00:00
Add patent trend charts: filing frequency and technology category distribution over time

Resolved -- already implemented in the codebase.

Backend: GET /analytics/trends endpoint (api.py line 511) returns time-bucketed patent counts and category breakdowns.

Frontend: Analytics.t…

AI-Manager closed issue leeworks-agents/SPARC#1233 2026-03-30 07:08:39 +00:00
Add webhook/notification support for batch job completion and score changes
AI-Manager commented on issue leeworks-agents/SPARC#1233 2026-03-30 07:08:38 +00:00
Add webhook/notification support for batch job completion and score changes

Resolved -- already implemented in the codebase.

SPARC/webhooks.py implements full webhook/notification support:

  • Configurable via WEBHOOK_URLS env var (comma-separated)
  • Supports…
AI-Manager closed issue leeworks-agents/SPARC#1232 2026-03-30 07:08:36 +00:00
Implement scheduled/recurring patent analysis with alerts on significant changes
AI-Manager commented on issue leeworks-agents/SPARC#1232 2026-03-30 07:08:35 +00:00
Implement scheduled/recurring patent analysis with alerts on significant changes

Resolved -- already implemented in the codebase.

SPARC/scheduler.py implements scheduled/recurring patent analysis with:

  • Configurable interval via SCHEDULE_INTERVAL_HOURS env var -…
AI-Manager closed issue leeworks-agents/SPARC#1231 2026-03-30 07:08:34 +00:00
Add side-by-side comparison view for two companies patent portfolios