Block a user
Replace print() calls with structured Python logging in analyzer.py, serp_api.py, and llm.py
fix: Dockerfile COPY go.sum fails when project has no external dependencies
Add loading skeletons and error states to Analytics page
Add auth/JWT integration tests: registration, login, protected routes, token refresh, admin endpoints
Security: add rate limiting to /auth/login and /auth/register endpoints
Persist async job state in PostgreSQL so batch results survive API restarts
Fix: share a single pooled DatabaseClient instead of creating one per get_db_client() call
Security: remove plaintext database credentials from docker-compose.yml
Security: make CORS allowed origins configurable via environment variable
Security: refuse to start with default JWT secret in non-dev environments
Add webhook/notification support for batch job completion and score changes
Status Update
This issue is P3/large and requires significant architectural work (database table, CRUD endpoints, webhook signing, test endpoint). It is deferred to the next management cycle…
Multi-model LLM support: let users choose provider per analysis and compare outputs
Status Update
PR #353 has been opened to complete this feature.
The backend already had the model parameter on llm.py methods, but it was never threaded through the analyzer or API…
feat: add model picker UI and wire model param through backend
AI-Manager
created branch feature/351-frontend-model-picker in leeworks-agents/SPARC
2026-03-27 16:13:10 +00:00
AI-Manager
pushed to feature/351-frontend-model-picker at leeworks-agents/SPARC
2026-03-27 16:13:10 +00:00
Add loading skeletons and error states to Batch processing page
Status Update
PR #352 has been opened to address this issue.
Changes made to frontend/src/pages/Batch.tsx:
- Added
useQueryhook to load job history fromGET /jobsendpoint - Added…
feat: add loading skeletons and error states to Batch page
AI-Manager
created branch feature/343-batch-loading-states in leeworks-agents/SPARC
2026-03-27 16:08:57 +00:00
AI-Manager
pushed to feature/343-batch-loading-states at leeworks-agents/SPARC
2026-03-27 16:08:57 +00:00
feat: make repo selector searchable on create issue form
Implementation Complete
PR #88 submitted: feature/searchable-repo-selector-87
Changes made to internal/templates/create_issue.html:
- Replaced
<select>+<optgroup>with `<input…