diff --git a/.github/workflows/disabled/kilo.yml.disabled b/.github/workflows/disabled/kilo.yml.disabled index a66c314e88..afedad0200 100644 --- a/.github/workflows/disabled/kilo.yml.disabled +++ b/.github/workflows/disabled/kilo.yml.disabled @@ -29,7 +29,7 @@ jobs: - uses: ./.github/actions/setup-bun - name: Run opencode - uses: Kilo-Org/kilo/github@latest + uses: Kilo-Org/kilocode/github@latest env: KILO_API_KEY: ${{ secrets.KILO_API_KEY }} KILO_ORG_ID: ${{ secrets.KILO_ORG_ID }} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 76d1121550..a7ea159d35 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -33,7 +33,7 @@ permissions: jobs: version: runs-on: blacksmith-4vcpu-ubuntu-2404 - if: github.repository == 'Kilo-Org/kilo' + if: github.repository == 'Kilo-Org/kilocode' steps: - uses: actions/checkout@v3 with: @@ -62,7 +62,7 @@ jobs: build-cli: needs: version runs-on: blacksmith-4vcpu-ubuntu-2404 - if: github.repository == 'Kilo-Org/kilo' + if: github.repository == 'Kilo-Org/kilocode' steps: - uses: actions/checkout@v3 with: @@ -90,7 +90,7 @@ jobs: build-vscode: needs: build-cli runs-on: blacksmith-4vcpu-ubuntu-2404 - if: github.repository == 'Kilo-Org/kilo' + if: github.repository == 'Kilo-Org/kilocode' steps: - uses: actions/checkout@v3 diff --git a/github/README.md b/github/README.md index ba88c662ce..0f7fe3ba32 100644 --- a/github/README.md +++ b/github/README.md @@ -91,7 +91,7 @@ This will walk you through installing the KiloConnect GitHub app, creating the w persist-credentials: false - name: Run Kilo - uses: Kilo-Org/kilo/github@latest + uses: Kilo-Org/kilocode/github@latest with: model: kilo/claude-sonnet-4-20250514 kilo_api_key: ${{ secrets.KILO_API_KEY }} @@ -120,7 +120,7 @@ You can also use other AI providers by setting their API keys: ```yml - name: Run Kilo - uses: Kilo-Org/kilo/github@latest + uses: Kilo-Org/kilocode/github@latest with: model: anthropic/claude-sonnet-4-20250514 env: diff --git a/github/action.yml b/github/action.yml index af46755dd9..4c3fd5346c 100644 --- a/github/action.yml +++ b/github/action.yml @@ -49,7 +49,7 @@ runs: id: version shell: bash run: | - VERSION=$(curl -sf https://api.github.com/repos/Kilo-Org/kilo/releases/latest | grep -o '"tag_name": *"[^"]*"' | cut -d'"' -f4) + VERSION=$(curl -sf https://api.github.com/repos/Kilo-Org/kilocode/releases/latest | grep -o '"tag_name": *"[^"]*"' | cut -d'"' -f4) echo "version=${VERSION:-latest}" >> $GITHUB_OUTPUT - name: Cache Kilo diff --git a/install b/install index 41f62f9edd..c418668825 100755 --- a/install +++ b/install @@ -184,7 +184,7 @@ else if [ -z "$requested_version" ]; then url="https://github.com/Kilo-Org/kilocode/releases/latest/download/$filename" - specific_version=$(curl -s https://api.github.com/repos/Kilo-Org/kilo/releases/latest | sed -n 's/.*"tag_name": *"v\([^"]*\)".*/\1/p') + specific_version=$(curl -s https://api.github.com/repos/Kilo-Org/kilocode/releases/latest | sed -n 's/.*"tag_name": *"v\([^"]*\)".*/\1/p') if [[ $? -ne 0 || -z "$specific_version" ]]; then echo -e "${RED}Failed to fetch version information${NC}" diff --git a/packages/opencode/src/cli/cmd/github.ts b/packages/opencode/src/cli/cmd/github.ts index 8ba7667007..24d461fcfa 100644 --- a/packages/opencode/src/cli/cmd/github.ts +++ b/packages/opencode/src/cli/cmd/github.ts @@ -398,7 +398,7 @@ jobs: persist-credentials: false - name: Run Kilo - uses: Kilo-Org/kilo/github@latest${envStr} + uses: Kilo-Org/kilocode/github@latest${envStr} with: model: ${provider}/${model}`, ) diff --git a/packages/opencode/src/installation/index.ts b/packages/opencode/src/installation/index.ts index 862fed23d7..790dbc6c08 100644 --- a/packages/opencode/src/installation/index.ts +++ b/packages/opencode/src/installation/index.ts @@ -254,7 +254,7 @@ export namespace Installation { .then((data: any) => data.version) } - return fetch("https://api.github.com/repos/Kilo-Org/kilo/releases/latest") + return fetch("https://api.github.com/repos/Kilo-Org/kilocode/releases/latest") .then((res) => { if (!res.ok) throw new Error(res.statusText) return res.json() diff --git a/script/changelog.ts b/script/changelog.ts index 1e54f14e69..fa0da45e0c 100755 --- a/script/changelog.ts +++ b/script/changelog.ts @@ -12,7 +12,7 @@ type Release = { } export async function getLatestRelease(skip?: string) { - const data = await fetch("https://api.github.com/repos/Kilo-Org/kilo/releases?per_page=100").then((res) => { + const data = await fetch("https://api.github.com/repos/Kilo-Org/kilocode/releases?per_page=100").then((res) => { if (!res.ok) throw new Error(res.statusText) return res.json() }) @@ -43,7 +43,7 @@ export async function getCommits(from: string, to: string): Promise { // Get commit data with GitHub usernames from the API const compare = - await $`gh api "/repos/Kilo-Org/kilo/compare/${fromRef}...${toRef}" --jq '.commits[] | {sha: .sha, login: .author.login, message: .commit.message}'`.text() + await $`gh api "/repos/Kilo-Org/kilocode/compare/${fromRef}...${toRef}" --jq '.commits[] | {sha: .sha, login: .author.login, message: .commit.message}'`.text() const commitData = new Map() for (const line of compare.split("\n").filter(Boolean)) { @@ -201,7 +201,7 @@ export async function getContributors(from: string, to: string) { const fromRef = from.startsWith("v") ? from : `v${from}` const toRef = to === "HEAD" ? to : to.startsWith("v") ? to : `v${to}` const compare = - await $`gh api "/repos/Kilo-Org/kilo/compare/${fromRef}...${toRef}" --jq '.commits[] | {login: .author.login, message: .commit.message}'`.text() + await $`gh api "/repos/Kilo-Org/kilocode/compare/${fromRef}...${toRef}" --jq '.commits[] | {login: .author.login, message: .commit.message}'`.text() const contributors = new Map>() for (const line of compare.split("\n").filter(Boolean)) { diff --git a/script/stats.ts b/script/stats.ts index fa0cd15c57..c5c553e0af 100755 --- a/script/stats.ts +++ b/script/stats.ts @@ -73,7 +73,7 @@ async function fetchReleases(): Promise { const per = 100 while (true) { - const url = `https://api.github.com/repos/Kilo-Org/kilo/releases?page=${page}&per_page=${per}` + const url = `https://api.github.com/repos/Kilo-Org/kilocode/releases?page=${page}&per_page=${per}` const response = await fetch(url) if (!response.ok) { diff --git a/script/upstream/transforms/transform-scripts.ts b/script/upstream/transforms/transform-scripts.ts index 7497756fd3..0431f251b9 100644 --- a/script/upstream/transforms/transform-scripts.ts +++ b/script/upstream/transforms/transform-scripts.ts @@ -45,7 +45,7 @@ const SCRIPT_REPLACEMENTS: ScriptReplacement[] = [ // gh CLI commands { pattern: /gh api "\/repos\/anomalyco\/opencode/g, - replacement: 'gh api "/repos/Kilo-Org/kilo', + replacement: 'gh api "/repos/Kilo-Org/kilocode', description: "gh api command", },