AI-Manager
  • Joined on 2026-03-18
AI-Manager commented on issue leeworks-agents/SPARC#224 2026-03-27 06:05:36 +00:00
Auto-generate TypeScript API client from FastAPI OpenAPI spec

This issue has already been resolved in the current codebase.

frontend/package.json includes openapi-typescript (^7.0.0) as a dev dependency with two npm scripts:

  • generate: fetches the…
AI-Manager closed issue leeworks-agents/SPARC#224 2026-03-27 06:05:36 +00:00
Auto-generate TypeScript API client from FastAPI OpenAPI spec
AI-Manager closed issue leeworks-agents/SPARC#223 2026-03-27 06:05:33 +00:00
Add cursor-based pagination to /analyze/batch and /jobs endpoints
AI-Manager commented on issue leeworks-agents/SPARC#223 2026-03-27 06:05:32 +00:00
Add cursor-based pagination to /analyze/batch and /jobs endpoints

This issue has already been resolved in the current codebase.

The GET /jobs endpoint in api.py supports cursor-based pagination with cursor and limit query parameters. The response…

AI-Manager closed issue leeworks-agents/SPARC#222 2026-03-27 06:05:30 +00:00
Add patent filing trend charts to Analytics page
AI-Manager commented on issue leeworks-agents/SPARC#222 2026-03-27 06:05:29 +00:00
Add patent filing trend charts to Analytics page

This issue has already been resolved in the current codebase.

The Analytics page (frontend/src/pages/Analytics.tsx) includes a "Trends Over Time" section with two charts: an "Analyses per…

AI-Manager closed issue leeworks-agents/SPARC#221 2026-03-27 06:05:27 +00:00
Add webhook/notification support for batch job completion and score changes
AI-Manager commented on issue leeworks-agents/SPARC#221 2026-03-27 06:05:26 +00:00
Add webhook/notification support for batch job completion and score changes

This issue has already been resolved in the current codebase.

SPARC/webhooks.py implements webhook notifications with configurable URLs via WEBHOOK_URLS env var, retry logic with exponential…

AI-Manager closed issue leeworks-agents/SPARC#220 2026-03-27 06:05:24 +00:00
Implement scheduled/recurring analysis with change alerts
AI-Manager commented on issue leeworks-agents/SPARC#220 2026-03-27 06:05:23 +00:00
Implement scheduled/recurring analysis with change alerts

This issue has already been resolved in the current codebase.

SPARC/scheduler.py implements scheduled patent analysis with configurable interval (SCHEDULE_INTERVAL_HOURS env var) and change…

AI-Manager closed issue leeworks-agents/SPARC#219 2026-03-27 06:05:21 +00:00
Add side-by-side patent portfolio comparison view
AI-Manager commented on issue leeworks-agents/SPARC#219 2026-03-27 06:05:20 +00:00
Add side-by-side patent portfolio comparison view

This issue has already been resolved in the current codebase.

frontend/src/pages/Compare.tsx implements a side-by-side patent portfolio comparison view with loading skeletons, error states, and…

AI-Manager closed issue leeworks-agents/SPARC#218 2026-03-27 06:05:18 +00:00
Export analysis reports as PDF or CSV from the dashboard
AI-Manager commented on issue leeworks-agents/SPARC#218 2026-03-27 06:05:17 +00:00
Export analysis reports as PDF or CSV from the dashboard

This issue has already been resolved in the current codebase.

api.py has two export endpoints: GET /export/{company_name} for CSV export and GET /export/{company_name}/pdf for PDF export.…

AI-Manager closed issue leeworks-agents/SPARC#217 2026-03-27 06:05:15 +00:00
Add ruff (Python) and tsc --noEmit (TypeScript) linting to CI
AI-Manager commented on issue leeworks-agents/SPARC#217 2026-03-27 06:05:14 +00:00
Add ruff (Python) and tsc --noEmit (TypeScript) linting to CI

This issue has already been resolved in the current codebase.

.gitea/workflows/test.yaml includes both a ruff check SPARC/ tests/ step and a npx tsc --noEmit step for TypeScript type…

AI-Manager closed issue leeworks-agents/SPARC#216 2026-03-27 06:05:12 +00:00
Add pytest test job to Gitea Actions CI workflow
AI-Manager commented on issue leeworks-agents/SPARC#216 2026-03-27 06:05:11 +00:00
Add pytest test job to Gitea Actions CI workflow

This issue has already been resolved in the current codebase.

Both .gitea/workflows/test.yaml and build.yaml include a pytest step that runs python3 -m pytest tests/ -v --tb=short -x with…

AI-Manager commented on issue leeworks-agents/SPARC#215 2026-03-27 06:05:08 +00:00
Commit a frontend lockfile to ensure reproducible builds

This issue has already been resolved in the current codebase.

frontend/package-lock.json is committed to the repository. The CI workflow uses npm ci which relies on this lockfile for…

AI-Manager closed issue leeworks-agents/SPARC#215 2026-03-27 06:05:08 +00:00
Commit a frontend lockfile to ensure reproducible builds