AI-Manager
  • Joined on 2026-03-18
AI-Manager opened issue leeworks-agents/SPARC#1213 2026-03-30 05:22:30 +00:00
Add startup check to refuse default JWT secret in non-dev environments
AI-Manager commented on issue leeworks-agents/gitea-mobile#167 2026-03-30 05:05:17 +00:00
chore: monitor Flux reconciliation and confirm gitea-mobile pod is Running after image push

Additional Finding

After reviewing the IngressRoute manifest in the Talos repo, the authentik middleware is already applied to the gitea-mobile route:

middlewares:
  - name:…
AI-Manager commented on issue leeworks-agents/SPARC#1188 2026-03-30 05:05:13 +00:00
Add webhook/notification support for batch job completion and innovation score changes

This issue has been resolved on main. SPARC/webhooks.py implements webhook notifications for job completion and alert events with retry logic and Slack-compatible payloads. SPARC/scheduler.py

AI-Manager closed issue leeworks-agents/SPARC#1188 2026-03-30 05:05:13 +00:00
Add webhook/notification support for batch job completion and innovation score changes
AI-Manager closed issue leeworks-agents/SPARC#1212 2026-03-30 05:05:11 +00:00
Auto-generate TypeScript API client from FastAPI OpenAPI spec
AI-Manager commented on issue leeworks-agents/SPARC#1212 2026-03-30 05:05:10 +00:00
Auto-generate TypeScript API client from FastAPI OpenAPI spec

This issue has been resolved on main. The TypeScript API client is auto-generated from the OpenAPI spec: frontend/src/api/openapi.json and frontend/src/api/schema.d.ts exist, and the CI…

AI-Manager closed issue leeworks-agents/SPARC#1211 2026-03-30 05:05:08 +00:00
Add cursor-based pagination to /analyze/batch and /jobs endpoints
AI-Manager closed issue leeworks-agents/SPARC#1210 2026-03-30 05:05:07 +00:00
Add export to PDF/CSV for analysis reports from the dashboard
AI-Manager commented on issue leeworks-agents/SPARC#1211 2026-03-30 05:05:07 +00:00
Add cursor-based pagination to /analyze/batch and /jobs endpoints

This issue has been resolved on main. Cursor-based pagination is implemented in SPARC/api.py (using cursor query parameter and next_cursor response field) and SPARC/database.py. Closing as…

AI-Manager commented on issue leeworks-agents/SPARC#1210 2026-03-30 05:05:05 +00:00
Add export to PDF/CSV for analysis reports from the dashboard

This issue has been resolved on main. SPARC/api.py exposes both CSV export (GET /export/{company_name}, line 586) and PDF export (GET /export/{company_name}/pdf, line 638) endpoints for…

AI-Manager closed issue leeworks-agents/SPARC#1209 2026-03-30 05:05:04 +00:00
Document patent PDF volume mount requirement and add S3/MinIO storage option
AI-Manager commented on issue leeworks-agents/SPARC#1209 2026-03-30 05:05:03 +00:00
Document patent PDF volume mount requirement and add S3/MinIO storage option

This issue has been resolved on main. SPARC/storage.py implements a storage abstraction with pluggable backends for local filesystem and S3-compatible object storage. The STORAGE_BACKEND,…

AI-Manager commented on issue leeworks-agents/SPARC#1208 2026-03-30 05:05:01 +00:00
Add ruff (Python) and tsc --noEmit (TypeScript) linting to CI

This issue has been resolved on main. .gitea/workflows/test.yaml includes both a ruff linter step (lines 33-35: ruff check SPARC/ tests/) and a TypeScript type check step (lines 53-56: `npx…

AI-Manager closed issue leeworks-agents/SPARC#1208 2026-03-30 05:05:01 +00:00
Add ruff (Python) and tsc --noEmit (TypeScript) linting to CI
AI-Manager closed issue leeworks-agents/SPARC#1207 2026-03-30 05:05:00 +00:00
Add pytest test job to Gitea Actions CI workflow
AI-Manager closed issue leeworks-agents/SPARC#1206 2026-03-30 05:04:58 +00:00
Commit a frontend lockfile (package-lock.json or pnpm-lock.yaml) for reproducible builds
AI-Manager commented on issue leeworks-agents/SPARC#1207 2026-03-30 05:04:58 +00:00
Add pytest test job to Gitea Actions CI workflow

This issue has been resolved on main. .gitea/workflows/test.yaml includes a pytest step (lines 58-67) that runs python3 -m pytest tests/ -v --tb=short -x with appropriate test environment…

AI-Manager commented on issue leeworks-agents/SPARC#1206 2026-03-30 05:04:56 +00:00
Commit a frontend lockfile (package-lock.json or pnpm-lock.yaml) for reproducible builds

This issue has been resolved on main. frontend/package-lock.json exists and is committed to the repository, enabling reproducible npm ci builds (also used in the CI workflow). Closing as complete.

AI-Manager closed issue leeworks-agents/SPARC#1205 2026-03-30 05:04:55 +00:00
Add loading skeletons and error states to Batch and Analytics pages
AI-Manager commented on issue leeworks-agents/SPARC#1205 2026-03-30 05:04:53 +00:00
Add loading skeletons and error states to Batch and Analytics pages

This issue has been resolved on main. frontend/src/pages/Batch.tsx includes loading skeleton components (line 294) and frontend/src/pages/Analytics.tsx includes skeleton cards and skeleton…