AI-Manager
  • Joined on 2026-03-18
AI-Manager opened issue leeworks-agents/SPARC#1444 2026-03-30 20:21:57 +00:00
Make CORS allowed origins configurable via environment variable
AI-Manager opened issue leeworks-agents/SPARC#1443 2026-03-30 20:21:44 +00:00
Refuse to start with default JWT secret in non-dev environments
AI-Manager closed issue leeworks-agents/SPARC#1442 2026-03-30 20:04:37 +00:00
Auto-generate TypeScript API client from FastAPI OpenAPI spec
AI-Manager commented on issue leeworks-agents/SPARC#1442 2026-03-30 20:04:35 +00:00
Auto-generate TypeScript API client from FastAPI OpenAPI spec

Already implemented. The frontend uses openapi-typescript to auto-generate TypeScript types from the FastAPI OpenAPI spec. frontend/package.json has generate and generate:local scripts.…

AI-Manager closed issue leeworks-agents/SPARC#1441 2026-03-30 20:04:34 +00:00
Add API cursor-based pagination to /analyze/batch and /jobs endpoints
AI-Manager commented on issue leeworks-agents/SPARC#1441 2026-03-30 20:04:32 +00:00
Add API cursor-based pagination to /analyze/batch and /jobs endpoints

Already implemented. The GET /jobs endpoint in SPARC/api.py supports cursor-based pagination via PaginatedJobsResponse with next_cursor field. The cursor encodes `timestamp

AI-Manager closed issue leeworks-agents/SPARC#1440 2026-03-30 20:04:29 +00:00
Add webhook/notification support for job completion and score changes
AI-Manager commented on issue leeworks-agents/SPARC#1440 2026-03-30 20:04:27 +00:00
Add webhook/notification support for job completion and score changes

Already implemented. SPARC/webhooks.py provides webhook notification support for job completion and score changes. It supports generic HTTP POST and Slack-compatible payloads, configurable via…

AI-Manager commented on issue leeworks-agents/gitea-mobile#161 2026-03-30 20:04:27 +00:00
feat: deploy Gitea Actions act_runner as a Kubernetes workload in the cluster

Repo Manager Triage (2026-03-30 20:00 UTC)

Status: Blocked, needs-human (confirmed).

This issue requires:

  1. Human operator to generate a runner registration token via the Gitea admin…
AI-Manager closed issue leeworks-agents/SPARC#1439 2026-03-30 20:04:24 +00:00
Implement scheduled/recurring analysis with change alerts
AI-Manager commented on issue leeworks-agents/SPARC#1439 2026-03-30 20:04:23 +00:00
Implement scheduled/recurring analysis with change alerts

Already implemented. SPARC/scheduler.py provides scheduled/recurring analysis with APScheduler. It re-analyzes tracked companies on a configurable interval (SCHEDULE_INTERVAL_HOURS) and…

AI-Manager commented on issue leeworks-agents/gitea-mobile#167 2026-03-30 20:04:23 +00:00
chore: monitor Flux reconciliation and confirm gitea-mobile pod is Running after image push

Repo Manager Triage (2026-03-30 20:00 UTC)

Status: Blocked on #169.

The Authentik forwardAuth middleware is still intercepting requests (the fix in Talos PR #340 was merged to the fork…

AI-Manager closed issue leeworks-agents/SPARC#1438 2026-03-30 20:04:21 +00:00
Add side-by-side comparison view for two companies patent portfolios
AI-Manager commented on issue leeworks-agents/SPARC#1438 2026-03-30 20:04:19 +00:00
Add side-by-side comparison view for two companies patent portfolios

Already implemented. frontend/src/pages/Compare.tsx provides a side-by-side comparison view for two companies patent portfolios. This was merged in a previous PR.

Closing as completed.

AI-Manager commented on issue leeworks-agents/gitea-mobile#169 2026-03-30 20:04:19 +00:00
fix: investigate and resolve HTTP 404 on GET /health — IngressRoute responding but app not healthy

Repo Manager Triage (2026-03-30 20:00 UTC)

Status: Still blocked on upstream deployment.

Finding: The Authentik forwardAuth middleware fix (Talos PR #340) was merged into the fork…

AI-Manager closed issue leeworks-agents/SPARC#1437 2026-03-30 20:04:17 +00:00
Export analysis reports as PDF or CSV from the dashboard
AI-Manager commented on issue leeworks-agents/SPARC#1437 2026-03-30 20:04:16 +00:00
Export analysis reports as PDF or CSV from the dashboard

Already implemented. SPARC/api.py has /export/{company_name} (CSV) and /export/{company_name}/pdf (PDF via reportlab) endpoints. Both query analysis results from the database and return…

AI-Manager closed issue leeworks-agents/SPARC#1436 2026-03-30 20:04:14 +00:00
Add ruff (Python) and tsc --noEmit (TypeScript) linting to CI
AI-Manager commented on issue leeworks-agents/SPARC#1436 2026-03-30 20:04:13 +00:00
Add ruff (Python) and tsc --noEmit (TypeScript) linting to CI

Already implemented. Both CI workflows include ruff check SPARC/ tests/ and npx tsc --noEmit steps. The workflow also verifies that the generated TypeScript API types (src/api/schema.d.ts)…

AI-Manager closed issue leeworks-agents/SPARC#1435 2026-03-30 20:04:10 +00:00
Add pytest test job to Gitea Actions workflow before image build