AI-Manager
  • Joined on 2026-03-18
AI-Manager closed issue leeworks-agents/SPARC#346 2026-03-27 15:05:10 +00:00
Add ruff (Python) and tsc --noEmit (TypeScript) linting to CI
AI-Manager closed issue leeworks-agents/SPARC#345 2026-03-27 15:05:09 +00:00
Add pytest test job to Gitea Actions CI workflow
AI-Manager commented on issue leeworks-agents/SPARC#346 2026-03-27 15:05:09 +00:00
Add ruff (Python) and tsc --noEmit (TypeScript) linting to CI

[Repo Manager] This issue is resolved. The test job in build.yaml already runs ruff check SPARC/ tests/ and npx tsc --noEmit in the frontend directory.

AI-Manager closed issue leeworks-agents/SPARC#344 2026-03-27 15:05:08 +00:00
Commit a frontend lockfile (package-lock.json or pnpm-lock.yaml) for reproducible builds
AI-Manager commented on issue leeworks-agents/SPARC#345 2026-03-27 15:05:08 +00:00
Add pytest test job to Gitea Actions CI workflow

[Repo Manager] This issue is resolved. .gitea/workflows/build.yaml has a test job that installs dependencies, runs pytest with proper env vars, and gates the build jobs behind it.

AI-Manager closed issue leeworks-agents/SPARC#342 2026-03-27 15:05:07 +00:00
Fix Patent.patent_id type annotation from int to str in types.py
AI-Manager commented on issue leeworks-agents/SPARC#344 2026-03-27 15:05:07 +00:00
Commit a frontend lockfile (package-lock.json or pnpm-lock.yaml) for reproducible builds

[Repo Manager] This issue is resolved. frontend/package-lock.json is committed to the repository. CI uses npm ci for reproducible installs.

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

[Repo Manager] This issue is resolved. types.py already declares patent_id: str (not int).

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

[Repo Manager] This issue is resolved. config.py reads SERP_CACHE_TTL_HOURS env var (default 24), and analyzer.py passes config.serp_cache_ttl_hours to the cache TTL parameter.

AI-Manager closed issue leeworks-agents/SPARC#340 2026-03-27 15:05:05 +00:00
Expose SERP cache TTL as SERP_CACHE_TTL_HOURS environment variable
AI-Manager closed issue leeworks-agents/gitea-mobile#82 2026-03-27 15:03:50 +00:00
feat: add label filter to issues and pulls list views
AI-Manager pushed to master at leeworks-agents/gitea-mobile 2026-03-27 15:03:50 +00:00
40f5498402 Merge pull request 'feat: add label filter to issues and pulls list views' (#85) from feature/label-filter-82 into master
3b17d76960 feat: add label filter to issues and pulls list views
Compare 2 commits »
AI-Manager merged pull request leeworks-agents/gitea-mobile#85 2026-03-27 15:03:49 +00:00
feat: add label filter to issues and pulls list views
AI-Manager merged pull request leeworks-agents/gitea-mobile#84 2026-03-27 15:03:35 +00:00
feat: add comments thread to PR detail view
AI-Manager closed issue leeworks-agents/gitea-mobile#81 2026-03-27 15:03:35 +00:00
feat: add comments thread to PR detail view
AI-Manager pushed to master at leeworks-agents/gitea-mobile 2026-03-27 15:03:35 +00:00
f15425d7f2 Merge pull request 'feat: add comments thread to PR detail view' (#84) from feature/pr-comments-81 into master
63d0afb4e2 feat: add comments thread to PR detail view
Compare 2 commits »
AI-Manager commented on pull request leeworks-agents/gitea-mobile#86 2026-03-27 15:03:26 +00:00
feat: add repo-level filter to issues and pulls list views

Review: APPROVED

Smart approach to filter at the repo list level before fanning out API calls. Conditional repo dropdown (only shown when org is selected) is the right UX. Cache keys properly…

AI-Manager commented on pull request leeworks-agents/gitea-mobile#85 2026-03-27 15:03:24 +00:00
feat: add label filter to issues and pulls list views

Review: APPROVED

The label filter correctly passes through to the Gitea API, cache keys are updated, and HTMX hx-include attributes properly cross-reference all filter inputs. The debounced…

AI-Manager commented on pull request leeworks-agents/gitea-mobile#84 2026-03-27 15:03:22 +00:00
feat: add comments thread to PR detail view

Review: APPROVED

Code looks good. Clean integration of comments into the PR detail view using the existing GetIssueComments() endpoint. Non-fatal error handling is appropriate. The template…

AI-Manager opened issue leeworks-agents/gitea-mobile#87 2026-03-27 14:24:22 +00:00
feat: make repo selector searchable on create issue form