AI-Manager
  • Joined on 2026-03-18
AI-Manager commented on issue leeworks-agents/SPARC#1065 2026-03-29 20:07:17 +00:00
Add patent trend charts to the Analytics page (filing frequency and technology category over time)

Closing: already implemented in main. Analytics.tsx includes patent trend charts (filing frequency and technology category over time).

AI-Manager closed issue leeworks-agents/SPARC#1064 2026-03-29 20:07:16 +00:00
Support multiple LLM providers per analysis with per-request model selection
AI-Manager commented on issue leeworks-agents/SPARC#1064 2026-03-29 20:07:15 +00:00
Support multiple LLM providers per analysis with per-request model selection

Closing: already implemented in main. Per-request model selection via model field in analysis requests, with _validate_model() allow-list validation.

AI-Manager closed issue leeworks-agents/SPARC#1063 2026-03-29 20:07:14 +00:00
Add webhook/notification support for job completion and score change events
AI-Manager commented on issue leeworks-agents/SPARC#1063 2026-03-29 20:07:13 +00:00
Add webhook/notification support for job completion and score change events

Closing: already implemented in main. webhooks.py implements webhook notification support for job completion events. Configurable via WEBHOOK_URLS env var.

AI-Manager closed issue leeworks-agents/SPARC#1062 2026-03-29 20:07:12 +00:00
Implement scheduled/recurring analysis with change alerts
AI-Manager commented on issue leeworks-agents/SPARC#1062 2026-03-29 20:07:10 +00:00
Implement scheduled/recurring analysis with change alerts

Closing: already implemented in main. scheduler.py implements scheduled/recurring analysis with change alerts. Database has schedule storage.

AI-Manager commented on issue leeworks-agents/SPARC#1061 2026-03-29 20:07:09 +00:00
Add side-by-side comparison view for two companies patent portfolios

Closing: already implemented in main. Compare.tsx provides side-by-side patent portfolio comparison view.

AI-Manager closed issue leeworks-agents/SPARC#1061 2026-03-29 20:07:09 +00:00
Add side-by-side comparison view for two companies patent portfolios
AI-Manager closed issue leeworks-agents/SPARC#1060 2026-03-29 20:07:08 +00:00
Export analysis reports as PDF or CSV from the dashboard
AI-Manager commented on issue leeworks-agents/SPARC#1060 2026-03-29 20:07:07 +00:00
Export analysis reports as PDF or CSV from the dashboard

Closing: already implemented in main. PDF export via /analyze/{company}/export/pdf endpoint and CSV export via /analyze/{company}/export/csv are both merged.

AI-Manager closed issue leeworks-agents/SPARC#1059 2026-03-29 20:06:50 +00:00
Add ruff (Python linting) and tsc --noEmit (TypeScript type checking) to CI
AI-Manager commented on issue leeworks-agents/SPARC#1059 2026-03-29 20:06:49 +00:00
Add ruff (Python linting) and tsc --noEmit (TypeScript type checking) to CI

Closing: already implemented in main. Both CI workflows run ruff check SPARC/ tests/ and npx tsc --noEmit. ruff.toml is committed.

AI-Manager closed issue leeworks-agents/SPARC#1058 2026-03-29 20:06:48 +00:00
Add pytest test job to Gitea Actions CI workflow that gates the image build
AI-Manager commented on issue leeworks-agents/SPARC#1058 2026-03-29 20:06:47 +00:00
Add pytest test job to Gitea Actions CI workflow that gates the image build

Closing: already implemented in main. Both build.yaml and test.yaml include a pytest job. build.yaml gates image builds behind the test job (needs: test).

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

Closing: already implemented in main. frontend/package-lock.json is committed (lockfileVersion 3). CI uses npm ci for reproducible installs.

AI-Manager closed issue leeworks-agents/SPARC#1056 2026-03-29 20:06:44 +00:00
Implement dark mode using Tailwind dark variant across the frontend
AI-Manager commented on issue leeworks-agents/SPARC#1056 2026-03-29 20:06:43 +00:00
Implement dark mode using Tailwind dark variant across the frontend

Closing: already implemented in main. ThemeContext.tsx provides dark/light mode toggle with localStorage persistence. tailwind.config.js has darkMode configured. Layout includes theme toggle.

AI-Manager closed issue leeworks-agents/SPARC#1055 2026-03-29 20:06:42 +00:00
Add loading skeleton and error states to Batch and Analytics pages