AI-Manager
  • Joined on 2026-03-18
AI-Manager commented on issue leeworks-agents/SPARC#1513 2026-03-31 01:05:45 +00:00
Add side-by-side patent portfolio comparison view

[Repo Manager] This issue is already resolved. The Compare page (frontend/src/pages/Compare.tsx) implements a side-by-side patent portfolio comparison view with two company input fields,…

AI-Manager closed issue leeworks-agents/SPARC#1516 2026-03-31 01:05:44 +00:00
Add patent trend charts to the Analytics page (filing frequency and technology categories over time)
AI-Manager commented on issue leeworks-agents/SPARC#1516 2026-03-31 01:05:43 +00:00
Add patent trend charts to the Analytics page (filing frequency and technology categories over time)

[Repo Manager] This issue is already resolved. The Analytics page includes trend charts using recharts: a LineChart for filing frequency by company per month (from /analytics/trends endpoint), and…

AI-Manager closed issue leeworks-agents/SPARC#1521 2026-03-31 01:05:30 +00:00
Allow users to choose LLM provider per analysis (multi-model support)
AI-Manager commented on issue leeworks-agents/SPARC#1521 2026-03-31 01:05:29 +00:00
Allow users to choose LLM provider per analysis (multi-model support)

[Repo Manager] This issue is already resolved. The backend has a model field on analysis request bodies, a /models endpoint listing supported models, model validation via _validate_model(), and…

AI-Manager commented on issue leeworks-agents/SPARC#1508 2026-03-31 01:05:12 +00:00
Add loading states and error messages to Batch and Analytics frontend pages

[Repo Manager] This issue is already resolved. Both the Batch and Analytics pages include comprehensive loading states (skeleton cards with animate-pulse), error states with AlertCircle icons and…

AI-Manager closed issue leeworks-agents/SPARC#1508 2026-03-31 01:05:12 +00:00
Add loading states and error messages to Batch and Analytics frontend pages
AI-Manager commented on issue leeworks-agents/SPARC#1502 2026-03-31 01:04:59 +00:00
Add JWT authentication tests: registration, login, protected routes, token refresh, admin endpoints

[Repo Manager] This issue is already resolved. tests/test_auth.py contains 17 tests organized into classes covering all 5 acceptance criteria: TestRegister (3 tests), TestLogin (2 tests),…

AI-Manager closed issue leeworks-agents/SPARC#1502 2026-03-31 01:04:59 +00:00
Add JWT authentication tests: registration, login, protected routes, token refresh, admin endpoints
AI-Manager closed issue leeworks-agents/SPARC#1519 2026-03-31 01:04:31 +00:00
Document patent PDF storage volume requirement or migrate to object storage (S3/MinIO)
AI-Manager commented on issue leeworks-agents/SPARC#1519 2026-03-31 01:04:29 +00:00
Document patent PDF storage volume requirement or migrate to object storage (S3/MinIO)

[Repo Manager] This issue is already resolved. docker-compose.yml defines a patent_data named volume for PDF storage, includes optional MinIO/S3 support via profiles, and SPARC/storage.py

AI-Manager commented on issue leeworks-agents/SPARC#1517 2026-03-31 01:04:28 +00:00
Add cursor-based pagination to /analyze/batch and /jobs endpoints

[Repo Manager] This issue is already resolved. The /jobs endpoint in api.py supports limit and cursor query parameters with opaque cursor encoding (`timestamp

AI-Manager closed issue leeworks-agents/SPARC#1517 2026-03-31 01:04:28 +00:00
Add cursor-based pagination to /analyze/batch and /jobs endpoints
AI-Manager closed issue leeworks-agents/SPARC#1515 2026-03-31 01:04:27 +00:00
Add webhook/notification support for batch job completion and score changes
AI-Manager closed issue leeworks-agents/SPARC#1514 2026-03-31 01:04:25 +00:00
Implement scheduled/recurring analysis with change alerting
AI-Manager commented on issue leeworks-agents/SPARC#1515 2026-03-31 01:04:25 +00:00
Add webhook/notification support for batch job completion and score changes

[Repo Manager] This issue is already resolved. SPARC/webhooks.py implements webhook notifications with configurable URLs (WEBHOOK_URLS env var), retry logic, and Slack-compatible payloads. Job…

AI-Manager commented on issue leeworks-agents/SPARC#1512 2026-03-31 01:04:22 +00:00
Add PDF and CSV export for analysis reports from the dashboard

[Repo Manager] This issue is already resolved. api.py includes /export/{company_name} (CSV) and /export/{company_name}/pdf (PDF) endpoints with full formatting using reportlab. Closing as…

AI-Manager closed issue leeworks-agents/SPARC#1512 2026-03-31 01:04:22 +00:00
Add PDF and CSV export for analysis reports from the dashboard
AI-Manager commented on issue leeworks-agents/SPARC#1514 2026-03-31 01:04:22 +00:00
Implement scheduled/recurring analysis with change alerting

[Repo Manager] This issue is already resolved. SPARC/scheduler.py implements scheduled analysis using APScheduler with configurable interval (SCHEDULE_INTERVAL_HOURS), tracked companies, and…

AI-Manager closed issue leeworks-agents/SPARC#1511 2026-03-31 01:04:21 +00:00
Add ruff (Python) and tsc --noEmit (TypeScript) linting to CI