From 3fff82bfa2bec35fd489b45b71363054fd130034 Mon Sep 17 00:00:00 2001 From: Christiaan Arnoldus Date: Fri, 6 Mar 2026 16:22:26 +0100 Subject: [PATCH] Apply suggestions from code review --- .github/workflows/disabled/kilo.yml.disabled | 2 +- packages/app/script/e2e-local.ts | 2 +- packages/opencode/script/seed-e2e.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/disabled/kilo.yml.disabled b/.github/workflows/disabled/kilo.yml.disabled index ff9d0d4cec..7687af9707 100644 --- a/.github/workflows/disabled/kilo.yml.disabled +++ b/.github/workflows/disabled/kilo.yml.disabled @@ -35,4 +35,4 @@ jobs: KILO_ORG_ID: ${{ secrets.KILO_ORG_ID }} KILO_PERMISSION: '{"bash": "deny"}' with: - model: kilo-auto/frontier + model: kilo/kilo-auto/frontier diff --git a/packages/app/script/e2e-local.ts b/packages/app/script/e2e-local.ts index be75a8a00c..767fdd9f74 100644 --- a/packages/app/script/e2e-local.ts +++ b/packages/app/script/e2e-local.ts @@ -72,7 +72,7 @@ const serverEnv = { KILO_E2E_PROJECT_DIR: repoDir, KILO_E2E_SESSION_TITLE: "E2E Session", KILO_E2E_MESSAGE: "Seeded for UI e2e", - KILO_E2E_MODEL: "kilo-auto/frontier", // kilocode_change + KILO_E2E_MODEL: "kilo/kilo-auto/frontier", // kilocode_change KILO_CLIENT: "app", } satisfies Record diff --git a/packages/opencode/script/seed-e2e.ts b/packages/opencode/script/seed-e2e.ts index 3630ab5665..f80c48f1d7 100644 --- a/packages/opencode/script/seed-e2e.ts +++ b/packages/opencode/script/seed-e2e.ts @@ -1,7 +1,7 @@ const dir = process.env.KILO_E2E_PROJECT_DIR ?? process.cwd() const title = process.env.KILO_E2E_SESSION_TITLE ?? "E2E Session" const text = process.env.KILO_E2E_MESSAGE ?? "Seeded for UI e2e" -const model = process.env.KILO_E2E_MODEL ?? "kilo-auto/frontier" +const model = process.env.KILO_E2E_MODEL ?? "kilo/kilo-auto/frontier" const parts = model.split("/") const providerID = parts[0] ?? "kilo" // kilocode_change const modelID = parts.slice(1).join("/") || "kilo-auto/frontier" // kilocode_change