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
2 changes: 1 addition & 1 deletion kiloclaw/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ RUN npm install -g pnpm

# Install OpenClaw
# Pin to specific version for reproducible builds
RUN npm install -g openclaw@2026.2.9 \
RUN npm install -g openclaw@2026.2.19 \
&& openclaw --version

# Create non-root user for runtime
Expand Down
2 changes: 1 addition & 1 deletion kiloclaw/openclaw-pairing-list.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ for (const channel of channels) {
try {
const output = execFileSync('openclaw', ['pairing', 'list', channel, '--json'], {
encoding: 'utf8',
timeout: 10000,
timeout: 30000,
stdio: ['pipe', 'pipe', 'pipe'],
env: { ...process.env, HOME: '/root' },
});
Expand Down
4 changes: 2 additions & 2 deletions kiloclaw/src/durable-objects/kiloclaw-instance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,7 @@ export class KiloClawInstance extends DurableObject<KiloClawEnv> {
flyConfig,
flyMachineId,
['/usr/bin/env', 'HOME=/root', 'node', '/usr/local/bin/openclaw-pairing-list.js'],
20
60
);

const empty = {
Expand Down Expand Up @@ -663,7 +663,7 @@ export class KiloClawInstance extends DurableObject<KiloClawEnv> {
flyConfig,
flyMachineId,
['/usr/bin/env', 'HOME=/root', 'openclaw', 'pairing', 'approve', channel, code, '--notify'],
15
60
);

const success = result.exit_code === 0;
Expand Down