@factiii/runner 0.6.0 → 0.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/Dockerfile.claude +6 -2
  2. package/dist/cli.js +9093 -2174
  3. package/package.json +1 -1
package/Dockerfile.claude CHANGED
@@ -1,6 +1,8 @@
1
1
  FROM node:20-bookworm-slim
2
+ # awscli + jq: general-purpose cloud/JSON CLIs for agent tasks. apt (system
3
+ # PATH) so they aren't shadowed by the persistent /nix volume.
2
4
  RUN apt-get update && apt-get install -y --no-install-recommends \
3
- git bash sudo curl tmux ca-certificates xz-utils fuse3 \
5
+ git bash sudo curl tmux ca-certificates xz-utils fuse3 awscli jq \
4
6
  && rm -rf /var/lib/apt/lists/*
5
7
  # Keep downloaded .debs so the /cache-backed apt archive persists across
6
8
  # sessions (debian-slim's docker-clean hook wipes them otherwise).
@@ -9,7 +11,9 @@ RUN rm -f /etc/apt/apt.conf.d/docker-clean \
9
11
  > /etc/apt/apt.conf.d/keep-cache
10
12
  RUN useradd -m -s /bin/bash claude \
11
13
  && echo "claude ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers
12
- RUN npm install -g @anthropic-ai/claude-code@~2.1.0
14
+ # claude-code + codex (both agent providers) + the Vercel & Cloudflare
15
+ # (wrangler) CLIs.
16
+ RUN npm install -g @anthropic-ai/claude-code@~2.1.0 @openai/codex@~0.144.1 vercel wrangler
13
17
  RUN mkdir -p /cache && chown claude:claude /cache
14
18
 
15
19
  # Nix (single-user, owned by `claude`) for prebuilt runtime/tool installs at run