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
38 changes: 25 additions & 13 deletions pnpm-lock.yaml

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

4 changes: 2 additions & 2 deletions services/cloud-agent-next/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM docker.io/cloudflare/sandbox:0.10.1
FROM docker.io/cloudflare/sandbox:0.10.3

# Build arguments for metadata (all optional with defaults)
ARG BUILD_DATE=""
ARG VCS_REF=""
ARG KILOCODE_CLI_VERSION="7.2.52"
ARG KILOCODE_CLI_VERSION="7.3.12"

# Install latest stable git + git-lfs from the git-core PPA, GitHub CLI, and supporting tools.
# The default Ubuntu git (2.34.1 on 22.04) is outdated; the git-core PPA ships the latest
Expand Down
4 changes: 2 additions & 2 deletions services/cloud-agent-next/Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM docker.io/cloudflare/sandbox:0.10.1
FROM docker.io/cloudflare/sandbox:0.10.3

# Build arguments for metadata (all optional with defaults)
ARG BUILD_DATE=""
ARG VCS_REF=""
ARG KILOCODE_CLI_VERSION="7.2.52"
ARG KILOCODE_CLI_VERSION="7.3.12"

# Build the kilo binary:
# cd ~/projects/kilocode-backend/cloud-agent
Expand Down
4 changes: 2 additions & 2 deletions services/cloud-agent-next/Dockerfile.dind
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG SANDBOX_VERSION="0.10.1"
ARG SANDBOX_VERSION="0.10.3"

FROM docker.io/cloudflare/sandbox:${SANDBOX_VERSION}-musl AS cloudflare-sandbox

Expand All @@ -9,7 +9,7 @@ USER root
# Build arguments for metadata (all optional with defaults)
ARG BUILD_DATE=""
ARG VCS_REF=""
ARG KILOCODE_CLI_VERSION="7.2.52"
ARG KILOCODE_CLI_VERSION="7.3.12"

# Cloudflare Containers run without root privileges, so Docker must run in
# rootless mode. The Sandbox SDK server is copied into this image so the
Expand Down
2 changes: 1 addition & 1 deletion services/cloud-agent-next/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ By default, the script looks for kilo-cli at `$HOME/projects/kilo-cli`. Override

**What's in Dockerfile.dev:**

- Base image: `cloudflare/sandbox:0.10.1`
- Base image: `cloudflare/sandbox:0.10.3`
- Pre-built `kilo` binary (from `cloud-agent-build.sh`)
- GitHub CLI (`gh`) and GitLab CLI (`glab`)
- Wrapper bundle built inside the container
Expand Down
4 changes: 2 additions & 2 deletions services/cloud-agent-next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"update-default-slash-commands": "node scripts/update-default-slash-commands.mjs"
},
"dependencies": {
"@cloudflare/sandbox": "0.10.1",
"@cloudflare/sandbox": "0.10.3",
"@hono/trpc-server": "0.4.2",
"@kilocode/cloud-agent-profile": "workspace:*",
"@kilocode/db": "workspace:*",
Expand All @@ -47,7 +47,7 @@
"zod": "catalog:"
},
"devDependencies": {
"@cloudflare/containers": "0.3.4",
"@cloudflare/containers": "0.3.5",
"@cloudflare/vitest-pool-workers": "catalog:",
"@types/jsonwebtoken": "catalog:",
"@types/node": "catalog:",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,15 @@ async function main() {
const sourceLine = `kilo@${version}`;
const json = JSON.stringify(commands, null, 2);

const file = `import type { SlashCommandInfo } from './slash-commands.js';
const file = `export type SlashCommandInfo = {
name: string;
description?: string;
agent?: string;
model?: string;
source?: 'command' | 'mcp' | 'skill';
hints: string[];
subtask?: boolean;
};

/**
* Source Kilo version / ref used to generate this catalog.
Expand Down
2 changes: 1 addition & 1 deletion services/cloud-agent-next/src/kilo/devcontainer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export const KILO_WRAPPER_PORT_LABEL = 'kilo.wrapperPort';
* `wrangler.jsonc#image_vars` so the kilo running in the dev container
* matches the one we use on the outer sandbox.
*/
export const KILO_CLI_VERSION = '7.2.52';
export const KILO_CLI_VERSION = '7.3.12';

const DEVCONTAINER_RUNTIME_BUN_VERSION = '1.3.14';
const DEVCONTAINER_RUNTIME_BOOTSTRAP_TIMEOUT_MS = 10 * 60 * 1000;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,34 +17,42 @@ export type SlashCommandInfo = {
*
* Regenerate with `pnpm --filter cloud-agent-next update-default-slash-commands`.
*/
export const DEFAULT_SLASH_COMMANDS_SOURCE = 'kilo@7.2.49';
export const DEFAULT_SLASH_COMMANDS_SOURCE = 'kilo@7.3.12';
Comment thread
jeanduplessis marked this conversation as resolved.

/**
* Default slash command catalog used when no live wrapper-reported catalog is
* available. Sorted deterministically by name. Keep in sync with Kilo releases.
*/
export const DEFAULT_SLASH_COMMANDS = [
{
name: 'init',
description: 'guided AGENTS.md setup',
source: 'command',
hints: ['$ARGUMENTS'],
name: "init",
description: "guided AGENTS.md setup",
source: "command",
hints: [
"$ARGUMENTS"
]
},
{
name: 'local-review',
description: 'local review (current branch)',
hints: [],
name: "local-review",
description: "local review (current branch, optional base or instructions)",
hints: [
"$ARGUMENTS"
]
},
{
name: 'local-review-uncommitted',
description: 'local review (uncommitted changes)',
hints: [],
name: "local-review-uncommitted",
description: "local review (uncommitted changes)",
hints: [
"$ARGUMENTS"
]
},
{
name: 'review',
description: 'review changes [commit|branch|pr], defaults to uncommitted',
source: 'command',
name: "review",
description: "review changes [commit|branch|pr], defaults to uncommitted",
source: "command",
subtask: true,
hints: ['$ARGUMENTS'],
},
hints: [
"$ARGUMENTS"
]
}
] satisfies SlashCommandInfo[];
12 changes: 6 additions & 6 deletions services/cloud-agent-next/wrangler.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@
"image": "./Dockerfile",
"instance_type": "standard-4",
"image_vars": {
"KILOCODE_CLI_VERSION": "7.2.52",
"KILOCODE_CLI_VERSION": "7.3.12",
},
"max_instances": 250,
"rollout_active_grace_period": 1800,
Expand All @@ -156,7 +156,7 @@
"image": "./Dockerfile",
"instance_type": "standard-2",
"image_vars": {
"KILOCODE_CLI_VERSION": "7.2.52",
"KILOCODE_CLI_VERSION": "7.3.12",
},
"max_instances": 400,
"rollout_active_grace_period": 1800,
Expand All @@ -166,7 +166,7 @@
"image": "./Dockerfile.dind",
"instance_type": "standard-3",
"image_vars": {
"KILOCODE_CLI_VERSION": "7.2.52",
"KILOCODE_CLI_VERSION": "7.3.12",
},
"max_instances": 20,
"rollout_active_grace_period": 1800,
Expand Down Expand Up @@ -319,7 +319,7 @@
"image": "./Dockerfile.dev",
"instance_type": "standard-4",
"image_vars": {
"KILOCODE_CLI_VERSION": "7.2.52",
"KILOCODE_CLI_VERSION": "7.3.12",
},
"max_instances": 10,
"rollout_active_grace_period": 60,
Expand All @@ -329,7 +329,7 @@
"image": "./Dockerfile.dev",
"instance_type": "standard-2",
"image_vars": {
"KILOCODE_CLI_VERSION": "7.2.52",
"KILOCODE_CLI_VERSION": "7.3.12",
},
"max_instances": 2,
"rollout_active_grace_period": 60,
Expand All @@ -339,7 +339,7 @@
"image": "./Dockerfile.dind",
"instance_type": "standard-3",
"image_vars": {
"KILOCODE_CLI_VERSION": "7.2.52",
"KILOCODE_CLI_VERSION": "7.3.12",
},
"max_instances": 2,
"rollout_active_grace_period": 60,
Expand Down
2 changes: 1 addition & 1 deletion services/cloud-agent-next/wrapper/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"typecheck": "tsgo --noEmit"
},
"dependencies": {
"@kilocode/sdk": "7.2.52"
"@kilocode/sdk": "7.3.12"
},
"devDependencies": {
"@types/bun": "1.3.14",
Expand Down
Loading