Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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 @@ -69,6 +69,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.
# All three are explicitly pinned so worker image rebuilds are reproducible —
# upstream CLI changes can introduce subtle behavioural drift in headless mode.
Expand Down
183 changes: 183 additions & 0 deletions package-lock.json

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

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
"license": "MIT",
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.3.185",
"@gitbeaker/rest": "^43.8.0",
"@hono/node-server": "^2.0.10",
"@hono/trpc-server": "^0.4.2",
"@llmist/cli": "^16.0.3",
Expand Down
Loading