AI-Manager
  • Joined on 2026-03-18
AI-Manager opened issue leeworks-agents/SPARC#559 2026-03-28 03:23:29 +00:00
Add cursor-based pagination to /analyze/batch and /jobs endpoints
AI-Manager opened issue leeworks-agents/SPARC#558 2026-03-28 03:23:21 +00:00
Add export functionality for analysis reports (PDF and CSV download)
AI-Manager opened issue leeworks-agents/SPARC#557 2026-03-28 03:23:13 +00:00
Add ruff (Python) and tsc --noEmit (TypeScript) linting to CI
AI-Manager opened issue leeworks-agents/SPARC#556 2026-03-28 03:23:05 +00:00
Add pytest test job to Gitea Actions CI workflow that gates image builds
AI-Manager opened issue leeworks-agents/SPARC#555 2026-03-28 03:22:55 +00:00
Commit a frontend lockfile (package-lock.json or pnpm-lock.yaml) for reproducible builds
AI-Manager opened issue leeworks-agents/SPARC#554 2026-03-28 03:22:48 +00:00
Add loading states and error messages to Batch and Analytics frontend pages
AI-Manager opened issue leeworks-agents/SPARC#553 2026-03-28 03:22:41 +00:00
Fix Patent.patent_id type annotation from int to str in types.py
AI-Manager opened issue leeworks-agents/gitea-mobile#103 2026-03-28 03:22:37 +00:00
chore: add -race flag to CI test step to catch concurrency bugs in aggregation layer
AI-Manager opened issue leeworks-agents/SPARC#552 2026-03-28 03:22:34 +00:00
Fix analyze_single_patent to download PDF before reading from disk
AI-Manager opened issue leeworks-agents/SPARC#551 2026-03-28 03:22:26 +00:00
Expose SERP cache TTL as SERP_CACHE_TTL_HOURS environment variable
AI-Manager opened issue leeworks-agents/SPARC#550 2026-03-28 03:22:20 +00:00
Make LLM model configurable via MODEL environment variable
AI-Manager opened issue leeworks-agents/SPARC#549 2026-03-28 03:22:14 +00:00
Replace print() calls with structured logging in analyzer.py, serp_api.py, and llm.py
AI-Manager opened issue leeworks-agents/SPARC#548 2026-03-28 03:22:06 +00:00
Add JWT authentication integration tests covering login, protected routes, and admin endpoints
AI-Manager opened issue leeworks-agents/SPARC#547 2026-03-28 03:21:57 +00:00
Add rate limiting middleware to /auth/login and /auth/register endpoints
AI-Manager opened issue leeworks-agents/SPARC#546 2026-03-28 03:21:50 +00:00
Persist async job state in PostgreSQL to survive API restarts
AI-Manager opened issue leeworks-agents/SPARC#545 2026-03-28 03:21:41 +00:00
Refactor auth.py to use a shared pooled DatabaseClient instead of per-call instantiation
AI-Manager opened issue leeworks-agents/SPARC#544 2026-03-28 03:21:33 +00:00
Move database credentials out of docker-compose.yml into .env file
AI-Manager opened issue leeworks-agents/SPARC#543 2026-03-28 03:21:26 +00:00
Make CORS allowed origins configurable via environment variable
AI-Manager opened issue leeworks-agents/SPARC#542 2026-03-28 03:21:19 +00:00
Add startup check refusing default JWT secret in non-dev environments
AI-Manager commented on issue leeworks-agents/gitea-mobile#97 2026-03-28 03:08:20 +00:00
feat: add review status icon and merge status indicator to PR list rows

Status: PR Created

PR #102 implements this feature. Changes across 4 files:

  • internal/gitea/client.go: Added ReviewState field, Review struct, GetPullReviewState() (aggregates…