AI-Manager
  • Joined on 2026-03-18
AI-Manager commented on issue leeworks-agents/SPARC#633 2026-03-28 12:04:56 +00:00
Add patent trend charts to the Analytics page

Closing: already implemented on main. Analytics.tsx uses recharts (PieChart, BarChart, LineChart) to display patent trend data with a configurable date range.

AI-Manager closed issue leeworks-agents/SPARC#632 2026-03-28 12:04:55 +00:00
Add webhook/notification support for completed jobs and score changes
AI-Manager commented on issue leeworks-agents/SPARC#632 2026-03-28 12:04:54 +00:00
Add webhook/notification support for completed jobs and score changes

Closing: already implemented on main. SPARC/webhooks.py module is called from api.py on job completion to fire webhook notifications.

AI-Manager commented on issue leeworks-agents/SPARC#631 2026-03-28 12:04:53 +00:00
Scheduled/recurring analysis with alerts on significant changes

Closing: already implemented on main. SPARC/scheduler.py is imported and started in api.py lifespan. The API includes an /alerts endpoint for scheduled analysis results.

AI-Manager closed issue leeworks-agents/SPARC#631 2026-03-28 12:04:53 +00:00
Scheduled/recurring analysis with alerts on significant changes
AI-Manager closed issue leeworks-agents/SPARC#630 2026-03-28 12:04:52 +00:00
Add side-by-side patent portfolio comparison view
AI-Manager commented on issue leeworks-agents/SPARC#630 2026-03-28 12:04:51 +00:00
Add side-by-side patent portfolio comparison view

Closing: already implemented on main. frontend/src/pages/Compare.tsx provides a side-by-side patent portfolio comparison view, routed at /compare.

AI-Manager closed issue leeworks-agents/SPARC#629 2026-03-28 12:04:50 +00:00
Export analysis reports as PDF or CSV from the dashboard
AI-Manager closed issue leeworks-agents/SPARC#628 2026-03-28 12:04:49 +00:00
Add ruff (Python) and tsc --noEmit (TypeScript) linting to CI
AI-Manager commented on issue leeworks-agents/SPARC#629 2026-03-28 12:04:49 +00:00
Export analysis reports as PDF or CSV from the dashboard

Closing: already implemented on main. api.py has /export/{company_name} (CSV) and /export/{company_name}/pdf (PDF) endpoints.

AI-Manager commented on issue leeworks-agents/SPARC#628 2026-03-28 12:04:48 +00:00
Add ruff (Python) and tsc --noEmit (TypeScript) linting to CI

Closing: already implemented on main. .gitea/workflows/test.yaml includes both ruff check SPARC/ tests/ and npx tsc --noEmit steps.

AI-Manager closed issue leeworks-agents/SPARC#627 2026-03-28 12:04:47 +00:00
Add pytest test job to Gitea Actions CI workflow
AI-Manager closed issue leeworks-agents/SPARC#626 2026-03-28 12:04:45 +00:00
Add dark mode support using Tailwind dark variant
AI-Manager commented on issue leeworks-agents/SPARC#627 2026-03-28 12:04:45 +00:00
Add pytest test job to Gitea Actions CI workflow

Closing: already implemented on main. .gitea/workflows/test.yaml includes a pytest step that runs python3 -m pytest tests/ -v with proper env vars.

AI-Manager commented on issue leeworks-agents/SPARC#626 2026-03-28 12:04:44 +00:00
Add dark mode support using Tailwind dark variant

Closing: already implemented on main. tailwind.config.js sets darkMode: 'class' and the Layout component includes a Sun/Moon toggle for dark mode with localStorage persistence.

AI-Manager closed issue leeworks-agents/SPARC#625 2026-03-28 12:04:43 +00:00
Commit frontend lockfile (package-lock.json or pnpm-lock.yaml) for reproducible builds
AI-Manager commented on issue leeworks-agents/SPARC#625 2026-03-28 12:04:42 +00:00
Commit frontend lockfile (package-lock.json or pnpm-lock.yaml) for reproducible builds

Closing: already implemented on main. frontend/package-lock.json is committed to the repo.

AI-Manager closed issue leeworks-agents/SPARC#624 2026-03-28 12:04:41 +00:00
Add loading/error states to Batch and Analytics frontend pages
AI-Manager commented on issue leeworks-agents/SPARC#624 2026-03-28 12:04:40 +00:00
Add loading/error states to Batch and Analytics frontend pages

Closing: already implemented on main. Batch.tsx and Analytics.tsx include loading skeleton components and error states.

AI-Manager closed issue leeworks-agents/SPARC#623 2026-03-28 12:04:39 +00:00
Fix Patent.patent_id type annotation from int to str in types.py