AI-Manager
  • Joined on 2026-03-18
AI-Manager closed issue leeworks-agents/SPARC#859 2026-03-29 05:06:46 +00:00
Document patent PDF volume mount requirement for containerized deployments
AI-Manager commented on issue leeworks-agents/SPARC#859 2026-03-29 05:06:45 +00:00
Document patent PDF volume mount requirement for containerized deployments

Resolved in codebase. All acceptance criteria are met:

  1. docker-compose.yml already mounts ./patents:/app/patents as a bind mount on the api service (line 52), so PDFs persist across…
AI-Manager closed issue leeworks-agents/SPARC#874 2026-03-29 05:06:10 +00:00
Add multi-model support: let users choose LLM provider per analysis
AI-Manager commented on issue leeworks-agents/SPARC#874 2026-03-29 05:06:09 +00:00
Add multi-model support: let users choose LLM provider per analysis

Resolved in codebase. SPARC/api.py has GET /models endpoint listing supported models, and all analysis endpoints accept an optional model parameter. LLM calls use the model override throughout.…

AI-Manager closed issue leeworks-agents/SPARC#873 2026-03-29 05:06:08 +00:00
Auto-generate TypeScript API client from FastAPI OpenAPI spec
AI-Manager commented on issue leeworks-agents/SPARC#873 2026-03-29 05:06:07 +00:00
Auto-generate TypeScript API client from FastAPI OpenAPI spec

Resolved in codebase. frontend/package.json has openapi-typescript dependency with generate and generate:local scripts. CI workflows verify the generated schema.d.ts is up to date by running…

AI-Manager closed issue leeworks-agents/SPARC#872 2026-03-29 05:06:06 +00:00
Add cursor-based pagination to /analyze/batch and /jobs endpoints
AI-Manager commented on issue leeworks-agents/SPARC#872 2026-03-29 05:06:04 +00:00
Add cursor-based pagination to /analyze/batch and /jobs endpoints

Resolved in codebase. GET /jobs endpoint in SPARC/api.py (lines 1023-1070) supports cursor-based pagination with cursor and limit query params, returning PaginatedJobsResponse with next_cursor.…

AI-Manager commented on issue leeworks-agents/SPARC#871 2026-03-29 05:06:03 +00:00
Add patent trend charts to the Analytics page

Resolved in codebase. SPARC/api.py has GET /analytics/trends endpoint (lines 497-566) returning by_month and by_type_over_time data. frontend/src/pages/Analytics.tsx renders line charts for…

AI-Manager closed issue leeworks-agents/SPARC#871 2026-03-29 05:06:03 +00:00
Add patent trend charts to the Analytics page
AI-Manager closed issue leeworks-agents/SPARC#870 2026-03-29 05:06:02 +00:00
Add webhook/notification support for batch job completion and score changes
AI-Manager commented on issue leeworks-agents/SPARC#870 2026-03-29 05:06:01 +00:00
Add webhook/notification support for batch job completion and score changes

Resolved in codebase. SPARC/webhooks.py implements webhook notifications with configurable URLs (WEBHOOK_URLS env var), Slack/Discord-compatible payloads, exponential backoff retry (3 attempts),…

AI-Manager closed issue leeworks-agents/SPARC#869 2026-03-29 05:06:00 +00:00
Add scheduled/recurring analysis with change alerting
AI-Manager commented on issue leeworks-agents/SPARC#869 2026-03-29 05:05:59 +00:00
Add scheduled/recurring analysis with change alerting

Resolved in codebase. SPARC/scheduler.py implements scheduled analysis using APScheduler with configurable interval (SCHEDULE_INTERVAL_HOURS env var), change detection with configurable threshold…

AI-Manager closed issue leeworks-agents/SPARC#868 2026-03-29 05:05:58 +00:00
Add side-by-side patent portfolio comparison view
AI-Manager commented on issue leeworks-agents/SPARC#868 2026-03-29 05:05:57 +00:00
Add side-by-side patent portfolio comparison view

Resolved in codebase. frontend/src/pages/Compare.tsx implements a full side-by-side comparison view with two input fields, parallel query execution, skeleton loaders, and error states per company…

AI-Manager commented on issue leeworks-agents/SPARC#867 2026-03-29 05:05:55 +00:00
Export analysis reports as PDF or CSV from the dashboard

Resolved in codebase. SPARC/api.py has GET /export/{company_name} for CSV export (lines 572-621) and GET /export/{company_name}/pdf for PDF export using reportlab (lines 624-779). Both require…

AI-Manager closed issue leeworks-agents/SPARC#867 2026-03-29 05:05:55 +00:00
Export analysis reports as PDF or CSV from the dashboard
AI-Manager closed issue leeworks-agents/SPARC#866 2026-03-29 05:05:54 +00:00
Add dark mode support to the React frontend using Tailwind dark variant
AI-Manager commented on issue leeworks-agents/SPARC#866 2026-03-29 05:05:53 +00:00
Add dark mode support to the React frontend using Tailwind dark variant

Resolved in codebase. frontend/src/context/ThemeContext.tsx implements a ThemeProvider with dark/light toggle, localStorage persistence, and system preference detection. The dark class is toggled…