File tree Expand file tree Collapse file tree 13 files changed +981
-0
lines changed
inv-debug-001/environment
inv-impact-001/environment
inv-migration-001/environment
inv-regression-001/environment
lfl-acpi-207835/environment
lfl-nfs-117651/environment
lfl-sata-203475/environment
lfl-sound-53441/environment
lfl-wifi-206661/environment Expand file tree Collapse file tree 13 files changed +981
-0
lines changed Original file line number Diff line number Diff line change 1+ FROM golang:1.23-bookworm
2+
3+ WORKDIR /workspace
4+
5+ # Install dependencies
6+ RUN apt-get update && apt-get install -y \
7+ git \
8+ curl \
9+ python3 \
10+ npm \
11+ && rm -rf /var/lib/apt/lists/*
12+
13+ # Install Claude Code CLI
14+ RUN npm install -g @anthropic-ai/claude-code
15+
16+ # NO repo clone — agent uses Sourcegraph MCP exclusively for code access.
17+ # Investigation tasks produce /logs/agent/investigation.md only.
18+ RUN git init && \
19+ git config user.email "agent@example.com" && \
20+ git config user.name "Agent"
21+
22+ # Create output directories
23+ RUN mkdir -p /logs/agent /logs/verifier /app
Original file line number Diff line number Diff line change 1+ FROM golang:1.23-bookworm
2+
3+ WORKDIR /workspace
4+
5+ # Install dependencies
6+ RUN apt-get update && apt-get install -y \
7+ git \
8+ curl \
9+ python3 \
10+ npm \
11+ && rm -rf /var/lib/apt/lists/*
12+
13+ # Install Claude Code CLI
14+ RUN npm install -g @anthropic-ai/claude-code
15+
16+ # NO repo clone — agent uses Sourcegraph MCP exclusively for code access.
17+ # Investigation tasks produce /logs/agent/investigation.md only.
18+ RUN git init && \
19+ git config user.email "agent@example.com" && \
20+ git config user.name "Agent"
21+
22+ # Create output directories
23+ RUN mkdir -p /logs/agent /logs/verifier /app
Original file line number Diff line number Diff line change 1+ FROM python:3.12-bookworm
2+
3+ WORKDIR /workspace
4+
5+ # Install dependencies
6+ RUN apt-get update && apt-get install -y \
7+ git \
8+ curl \
9+ npm \
10+ && rm -rf /var/lib/apt/lists/*
11+
12+ # Install Claude Code CLI
13+ RUN npm install -g @anthropic-ai/claude-code
14+
15+ # NO repo clone — agent uses Sourcegraph MCP exclusively for code access.
16+ # Investigation tasks produce /logs/agent/investigation.md only.
17+ RUN git init && \
18+ git config user.email "agent@example.com" && \
19+ git config user.name "Agent"
20+
21+ # Create output directories
22+ RUN mkdir -p /logs/agent /logs/verifier /app
Original file line number Diff line number Diff line change 1+ FROM golang:1.23-bookworm
2+
3+ WORKDIR /workspace
4+
5+ # Install dependencies
6+ RUN apt-get update && apt-get install -y \
7+ git \
8+ curl \
9+ python3 \
10+ npm \
11+ && rm -rf /var/lib/apt/lists/*
12+
13+ # Install Claude Code CLI
14+ RUN npm install -g @anthropic-ai/claude-code
15+
16+ # NO repo clone — agent uses Sourcegraph MCP exclusively for code access.
17+ # Investigation tasks produce /logs/agent/investigation.md only.
18+ RUN git init && \
19+ git config user.email "agent@example.com" && \
20+ git config user.name "Agent"
21+
22+ # Create output directories
23+ RUN mkdir -p /logs/agent /logs/verifier /app
Original file line number Diff line number Diff line change 1+ FROM gcc:13-bookworm
2+
3+ WORKDIR /workspace
4+
5+ # Install dependencies (no kernel clone needed — agent uses MCP for code access)
6+ RUN apt-get update && apt-get install -y \
7+ git \
8+ curl \
9+ ripgrep \
10+ python3 \
11+ && rm -rf /var/lib/apt/lists/*
12+
13+ # Install Node.js and Claude Code CLI
14+ RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && \
15+ apt-get install -y nodejs && \
16+ npm install -g @anthropic-ai/claude-code
17+
18+ # NO kernel source — agent reads kernel code via Sourcegraph MCP,
19+ # writes JSON answer locally.
20+ RUN mkdir -p /workspace /tests /logs /app && \
21+ git init && \
22+ git config user.email "agent@example.com" && \
23+ git config user.name "Agent"
Original file line number Diff line number Diff line change 1+ FROM gcc:13-bookworm
2+
3+ WORKDIR /workspace
4+
5+ # Install dependencies (no kernel clone needed — agent uses MCP for code access)
6+ RUN apt-get update && apt-get install -y \
7+ git \
8+ curl \
9+ ripgrep \
10+ python3 \
11+ && rm -rf /var/lib/apt/lists/*
12+
13+ # Install Node.js and Claude Code CLI
14+ RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && \
15+ apt-get install -y nodejs && \
16+ npm install -g @anthropic-ai/claude-code
17+
18+ # NO kernel source — agent reads kernel code via Sourcegraph MCP,
19+ # writes JSON answer locally.
20+ RUN mkdir -p /workspace /tests /logs /app && \
21+ git init && \
22+ git config user.email "agent@example.com" && \
23+ git config user.name "Agent"
Original file line number Diff line number Diff line change 1+ FROM gcc:13-bookworm
2+
3+ WORKDIR /workspace
4+
5+ # Install dependencies (no kernel clone needed — agent uses MCP for code access)
6+ RUN apt-get update && apt-get install -y \
7+ git \
8+ curl \
9+ ripgrep \
10+ python3 \
11+ && rm -rf /var/lib/apt/lists/*
12+
13+ # Install Node.js and Claude Code CLI
14+ RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && \
15+ apt-get install -y nodejs && \
16+ npm install -g @anthropic-ai/claude-code
17+
18+ # NO kernel source — agent reads kernel code via Sourcegraph MCP,
19+ # writes JSON answer locally.
20+ RUN mkdir -p /workspace /tests /logs /app && \
21+ git init && \
22+ git config user.email "agent@example.com" && \
23+ git config user.name "Agent"
Original file line number Diff line number Diff line change 1+ FROM gcc:13-bookworm
2+
3+ WORKDIR /workspace
4+
5+ # Install dependencies (no kernel clone needed — agent uses MCP for code access)
6+ RUN apt-get update && apt-get install -y \
7+ git \
8+ curl \
9+ ripgrep \
10+ python3 \
11+ && rm -rf /var/lib/apt/lists/*
12+
13+ # Install Node.js and Claude Code CLI
14+ RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && \
15+ apt-get install -y nodejs && \
16+ npm install -g @anthropic-ai/claude-code
17+
18+ # NO kernel source — agent reads kernel code via Sourcegraph MCP,
19+ # writes JSON answer locally.
20+ RUN mkdir -p /workspace /tests /logs /app && \
21+ git init && \
22+ git config user.email "agent@example.com" && \
23+ git config user.name "Agent"
Original file line number Diff line number Diff line change 1+ FROM gcc:13-bookworm
2+
3+ WORKDIR /workspace
4+
5+ # Install dependencies (no kernel clone needed — agent uses MCP for code access)
6+ RUN apt-get update && apt-get install -y \
7+ git \
8+ curl \
9+ ripgrep \
10+ python3 \
11+ && rm -rf /var/lib/apt/lists/*
12+
13+ # Install Node.js and Claude Code CLI
14+ RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && \
15+ apt-get install -y nodejs && \
16+ npm install -g @anthropic-ai/claude-code
17+
18+ # NO kernel source — agent reads kernel code via Sourcegraph MCP,
19+ # writes JSON answer locally.
20+ RUN mkdir -p /workspace /tests /logs /app && \
21+ git init && \
22+ git config user.email "agent@example.com" && \
23+ git config user.name "Agent"
Original file line number Diff line number Diff line change 99 " sourcegraph_base" ,
1010 " sourcegraph_full" ,
1111 " sourcegraph_isolated" ,
12+ " sourcegraph_only" ,
1213 " github_base" ,
1314 " github_full"
1415 ],
You can’t perform that action at this time.
0 commit comments