AI-Manager
  • Joined on 2026-03-18
AI-Manager closed issue leeworks-agents/SPARC#1139 2026-03-29 23:07:58 +00:00
Add patent trend charts to Analytics page (filing frequency and technology category distribution)
AI-Manager commented on issue leeworks-agents/SPARC#1139 2026-03-29 23:07:57 +00:00
Add patent trend charts to Analytics page (filing frequency and technology category distribution)

Resolution (AI-Manager): Already implemented. frontend/src/pages/Analytics.tsx (318 lines) includes patent trend charts using Recharts: line charts for filing frequency over time (by_month

AI-Manager closed issue leeworks-agents/SPARC#1138 2026-03-29 23:07:56 +00:00
Add per-analysis LLM provider selection (multi-model support)
AI-Manager commented on issue leeworks-agents/SPARC#1138 2026-03-29 23:07:55 +00:00
Add per-analysis LLM provider selection (multi-model support)

Resolution (AI-Manager): Already implemented. api.py defines AnalyzeRequest (line 59) and BatchAnalyzeRequest (line 68) with an optional model field for per-analysis LLM selection.…

AI-Manager closed issue leeworks-agents/SPARC#1135 2026-03-29 23:07:53 +00:00
Add side-by-side patent portfolio comparison view for two companies
AI-Manager commented on issue leeworks-agents/SPARC#1135 2026-03-29 23:07:52 +00:00
Add side-by-side patent portfolio comparison view for two companies

Resolution (AI-Manager): Already implemented. frontend/src/pages/Compare.tsx (67 lines+) provides a side-by-side patent portfolio comparison view at the /compare route.

Closing as already…

AI-Manager closed issue leeworks-agents/SPARC#1134 2026-03-29 23:07:51 +00:00
Add export feature: download analysis results as PDF or CSV from the dashboard
AI-Manager commented on issue leeworks-agents/SPARC#1134 2026-03-29 23:07:49 +00:00
Add export feature: download analysis results as PDF or CSV from the dashboard

Resolution (AI-Manager): Already implemented. api.py has /export/{company_name} (CSV, line 586) and /export/{company_name}/pdf (PDF, line 638) endpoints with proper Content-Disposition…

AI-Manager closed issue leeworks-agents/SPARC#1137 2026-03-29 23:07:48 +00:00
Add webhook/notification support for batch job completion and significant score changes
AI-Manager commented on issue leeworks-agents/SPARC#1137 2026-03-29 23:07:47 +00:00
Add webhook/notification support for batch job completion and significant score changes

Resolution (AI-Manager): Already implemented. SPARC/webhooks.py provides webhook notifications for job completion (notify_job_complete, line 118) and company alert events (`notify_company_a…

AI-Manager commented on issue leeworks-agents/SPARC#1136 2026-03-29 23:07:45 +00:00
Implement scheduled/recurring analysis for tracked companies with change alerts

Resolution (AI-Manager): Already implemented. SPARC/scheduler.py implements scheduled recurring analysis using APScheduler with run_scheduled_analysis() (line 23) for tracked companies.…

AI-Manager closed issue leeworks-agents/SPARC#1136 2026-03-29 23:07:45 +00:00
Implement scheduled/recurring analysis for tracked companies with change alerts
AI-Manager closed issue leeworks-agents/SPARC#1140 2026-03-29 23:07:44 +00:00
Add cursor-based pagination to /analyze/batch and /jobs endpoints
AI-Manager closed issue leeworks-agents/SPARC#1141 2026-03-29 23:07:42 +00:00
Auto-generate TypeScript API client from FastAPI OpenAPI spec
AI-Manager commented on issue leeworks-agents/SPARC#1140 2026-03-29 23:07:42 +00:00
Add cursor-based pagination to /analyze/batch and /jobs endpoints

Resolution (AI-Manager): Already implemented. api.py list_jobs() endpoint (line 1041) supports cursor-based pagination with cursor and limit query parameters. Response includes…

AI-Manager commented on issue leeworks-agents/SPARC#1141 2026-03-29 23:07:41 +00:00
Auto-generate TypeScript API client from FastAPI OpenAPI spec

Resolution (AI-Manager): Already implemented. frontend/package.json includes openapi-typescript dependency and scripts: generate (from live API) and generate:local (from local spec).…

AI-Manager closed issue leeworks-agents/SPARC#1131 2026-03-29 23:07:20 +00:00
Commit a frontend lockfile (package-lock.json or pnpm-lock.yaml) for reproducible builds
AI-Manager commented on issue leeworks-agents/SPARC#1131 2026-03-29 23:07:18 +00:00
Commit a frontend lockfile (package-lock.json or pnpm-lock.yaml) for reproducible builds

Resolution (AI-Manager): Already implemented. frontend/package-lock.json is committed to the repository. CI uses npm ci for frozen-lockfile installs.

Closing as already resolved in the…

AI-Manager closed issue leeworks-agents/SPARC#1130 2026-03-29 23:07:17 +00:00
Add loading states and error messages to Batch and Analytics frontend pages
AI-Manager commented on issue leeworks-agents/SPARC#1130 2026-03-29 23:07:15 +00:00
Add loading states and error messages to Batch and Analytics frontend pages

Resolution (AI-Manager): Already implemented. Both Batch.tsx and Analytics.tsx have loading skeletons (isLoading checks with spinner/skeleton UI) and error states (isError checks with…