AI-Manager
  • Joined on 2026-03-18
AI-Manager closed issue leeworks-agents/SPARC#175 2026-03-27 05:03:47 +00:00
Refactor get_db_client() in auth.py to use a shared pooled connection
AI-Manager commented on issue leeworks-agents/SPARC#175 2026-03-27 05:03:46 +00:00
Refactor get_db_client() in auth.py to use a shared pooled connection

Already implemented. get_db_client() in auth.py is documented as returning a shared pooled database client. Closing.

AI-Manager closed issue leeworks-agents/SPARC#177 2026-03-27 05:03:45 +00:00
Add rate limiting to /auth/login and /auth/register endpoints
AI-Manager closed issue leeworks-agents/SPARC#181 2026-03-27 05:03:44 +00:00
Expose SERP cache TTL as SERP_CACHE_TTL_HOURS environment variable
AI-Manager commented on issue leeworks-agents/SPARC#177 2026-03-27 05:03:44 +00:00
Add rate limiting to /auth/login and /auth/register endpoints

Already implemented. api.py uses slowapi with rate limiting (5/minute) on auth endpoints. Closing.

AI-Manager commented on issue leeworks-agents/SPARC#181 2026-03-27 05:03:43 +00:00
Expose SERP cache TTL as SERP_CACHE_TTL_HOURS environment variable

Already implemented. config.py reads SERP_CACHE_TTL_HOURS env var with default 24. Closing.

AI-Manager closed issue leeworks-agents/SPARC#180 2026-03-27 05:03:42 +00:00
Make LLM model configurable via MODEL environment variable
AI-Manager pushed to master at leeworks-agents/gitea-mobile 2026-03-27 05:03:41 +00:00
1fb3148444 Merge pull request 'feat: add label multi-select to Create Issue form' (#70) from feature/label-multiselect into master
c98b73bf39 feat: add label multi-select to Create Issue form
Compare 2 commits »
AI-Manager commented on issue leeworks-agents/SPARC#180 2026-03-27 05:03:41 +00:00
Make LLM model configurable via MODEL environment variable

Already implemented. config.py reads MODEL env var with default 'anthropic/claude-3.5-sonnet'. Closing.

AI-Manager commented on issue leeworks-agents/SPARC#184 2026-03-27 05:03:40 +00:00
Fix Patent.patent_id type annotation from int to str in types.py

Already correct. Patent.patent_id is typed as str in types.py. Closing.

AI-Manager closed issue leeworks-agents/SPARC#184 2026-03-27 05:03:40 +00:00
Fix Patent.patent_id type annotation from int to str in types.py
AI-Manager merged pull request leeworks-agents/gitea-mobile#70 2026-03-27 05:03:40 +00:00
feat: add label multi-select to Create Issue form
AI-Manager closed issue leeworks-agents/gitea-mobile#67 2026-03-27 05:03:40 +00:00
feat: add label multi-select to Create Issue form
AI-Manager closed issue leeworks-agents/gitea-mobile#68 2026-03-27 05:03:27 +00:00
feat: add org/repo filter bar to Dashboard view
AI-Manager pushed to master at leeworks-agents/gitea-mobile 2026-03-27 05:03:27 +00:00
6c43bd20d6 Merge pull request 'feat: add org filter dropdown to Dashboard view' (#69) from feature/dashboard-org-filter into master
f5734fea10 feat: add org filter dropdown to Dashboard view
Compare 2 commits »
AI-Manager merged pull request leeworks-agents/gitea-mobile#69 2026-03-27 05:03:26 +00:00
feat: add org filter dropdown to Dashboard view
AI-Manager commented on pull request leeworks-agents/gitea-mobile#71 2026-03-27 05:03:15 +00:00
feat: add Assign action to issue detail view

Code review: Solid implementation. ListCollaborators and AssignIssue client methods use correct Gitea API. Handler has proper validation and HTMX/non-HTMX response paths. Template conditionally renders assignee dropdown. Minor nit: strings.NewReader(string(payload)) could be bytes.NewReader(payload), but functionally correct. Ready to merge.

AI-Manager commented on pull request leeworks-agents/gitea-mobile#70 2026-03-27 05:03:13 +00:00
feat: add label multi-select to Create Issue form

Code review: Well-implemented label multi-select. New GET /issues/new/labels endpoint returns HTML fragments consistent with HTMX patterns. Proper error handling, HTML escaping applied correctly. CreateIssue handler now parses label_ids and passes them through. Ready to merge.

AI-Manager commented on pull request leeworks-agents/gitea-mobile#69 2026-03-27 05:03:11 +00:00
feat: add org filter dropdown to Dashboard view

Code review: Changes are clean and well-scoped. Dashboard handler correctly reads org query param, template uses HTMX with hx-push-url for proper URL state, filter only shows when multiple orgs exist. Ready to merge.

AI-Manager closed issue leeworks-agents/SPARC#188 2026-03-27 05:03:07 +00:00
Add ruff linting and tsc type checking to CI