Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
96f5136
feat(integrations): add GitLab as alternative SCM provider
suda Apr 9, 2026
1f2f8c2
feat(trello): add required label filter for webhook processing
Apr 9, 2026
7c953af
fix(tests): fix pre-existing test failures from GitLab integration co…
Apr 9, 2026
58294cb
fix(security): override axios to >=1.15.0 to resolve critical SSRF vu…
Apr 9, 2026
5f21e99
fix(trello): route webhooks to all matching projects for shared boards
Apr 9, 2026
3a742c8
fix(trello): pre-filter projects by card labels in resolveAllProjects
Apr 10, 2026
8f5bf3e
fix(trello): correct resolveAllProjects fallthrough and eliminate dou…
Apr 10, 2026
09776b2
fix(trello): add requiredLabelId to Zod schema to prevent silent stri…
Apr 10, 2026
e6babc9
fix(trello): thread projectId through worker to prevent wrong project…
Apr 10, 2026
db29765
feat(dashboard): add Claude Code subscription limits to sidebar
Apr 9, 2026
890d224
fix(deps): resolve critical axios vulnerability and update vulnerable…
Apr 9, 2026
3e7bf89
fix: address code review feedback
Apr 9, 2026
564285f
fix(anthropic): use correct oauth/profile endpoint for subscription info
Apr 10, 2026
7946739
fix(anthropic): switch from profile to usage endpoint for per-bucket …
suda Apr 10, 2026
ccc697a
fix(lint): apply biome formatter to claude-code-limits component
Apr 10, 2026
65b2638
fix(anthropic): add separator above Claude code limits usage section
suda Apr 10, 2026
7766fdc
fix(lint): reduce cognitive complexity and fix import order
Apr 10, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Dockerfile.worker
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,12 @@ RUN ARCH=$(dpkg --print-architecture) && \
rm /tmp/ast-grep.zip && \
chmod +x /usr/local/bin/sg

# Install glab (GitLab CLI)
RUN ARCH=$(dpkg --print-architecture) && \
curl -L "https://gitlab.com/gitlab-org/cli/-/releases/v1.52.0/downloads/glab_1.52.0_linux_${ARCH}.deb" -o /tmp/glab.deb && \
dpkg -i /tmp/glab.deb && \
rm /tmp/glab.deb

# Install agent CLIs used by headless engines in worker jobs
RUN npm install -g @anthropic-ai/claude-code @openai/codex@0.114.0 opencode-ai

Expand Down
96 changes: 81 additions & 15 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
"license": "MIT",
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.91",
"@gitbeaker/rest": "^43.8.0",
"@hono/node-server": "^1.13.7",
"@hono/trpc-server": "^0.4.2",
"@llmist/cli": "^16.0.3",
Expand Down Expand Up @@ -134,6 +135,7 @@
"overrides": {
"lodash": "^4.18.1",
"lodash-es": "^4.18.1",
"brace-expansion": "^2.0.3"
"brace-expansion": "^2.0.3",
"axios": ">=1.15.0"
}
}
Loading
Loading