Skip to content
Merged
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
3 changes: 3 additions & 0 deletions providers/workspaces/claude-cli/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,9 @@ RUN uv python install 3.12.13 \
ARG CLAUDE_CLI_VERSION
RUN npm install -g @anthropic-ai/claude-code@${CLAUDE_CLI_VERSION}

# Install the skills CLI globally via npm. Pin exact version deliberately.
RUN npm install -g skills@1.5.14
Comment on lines +100 to +101

# =============================================================================
# LSP: Language Servers for code intelligence
# Plugins: pyright-lsp, typescript-lsp, rust-analyzer-lsp (claude-plugins-official)
Expand Down
4 changes: 3 additions & 1 deletion providers/workspaces/interactive-tmux/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,11 @@ RUN npm install -g \
@anthropic-ai/claude-code@${CLAUDE_CLI_VERSION} \
@openai/codex@${CODEX_CLI_VERSION} \
@google/gemini-cli@${GEMINI_CLI_VERSION} \
skills@1.5.14 \
&& claude --version \
&& codex --version \
&& gemini --version
&& gemini --version \
&& skills --version

# Non-root user. node:22-slim ships node:node uid/gid 1000; rename to
# agent for parity with the claude-cli provider's user model.
Expand Down
Loading