Files
Catriel Müller 1eedad9213 Refactor publish workflow and environment variables (#261)
* feat: changelog generation

* refactor: rename all ENV variables to KILO prefix

* refactor: publish rework

* refactor: publish rework

* refactor: unify git commiter action

* refactor: add all kilobots to the team
2026-02-12 09:00:51 +01:00

366 lines
10 KiB
TypeScript

#!/usr/bin/env bun
/**
* Transform i18n translation files with Kilo branding
*
* This script handles i18n files by:
* 1. Taking upstream's version as the base (to get new translation keys)
* 2. Applying intelligent string replacements for Kilo branding
* 3. Preserving lines marked with `// kilocode_change`
*
* String replacement rules:
* - opencode.ai -> kilo.ai (domain)
* - app.opencode.ai -> app.kilo.ai (app domain)
* - OpenCode Desktop -> Kilo Desktop (desktop app name)
* - OpenCode -> Kilo (product name in user-visible text)
* - opencode upgrade -> kilo upgrade (CLI commands)
* - npx opencode -> npx kilo (CLI invocation)
* - anomalyco/opencode -> Kilo-Org/kilo (GitHub repo)
*
* Preserved (not replaced):
* - opencode.json (actual config filename)
* - .opencode/ (actual directory name)
* - Lines with `// kilocode_change`
*/
import { $ } from "bun"
import { Glob } from "bun"
import { info, success, warn, debug } from "../utils/logger"
import { defaultConfig } from "../utils/config"
export interface I18nTransformResult {
file: string
replacements: number
preserved: number
dryRun: boolean
}
export interface I18nTransformOptions {
dryRun?: boolean
verbose?: boolean
patterns?: string[]
}
interface StringReplacement {
pattern: RegExp
replacement: string
description: string
}
// Order matters! More specific patterns should come first
const I18N_REPLACEMENTS: StringReplacement[] = [
// GitHub repo references
{
pattern: /github\.com\/anomalyco\/opencode/g,
replacement: "github.com/Kilo-Org/kilo",
description: "GitHub URL",
},
{
pattern: /anomalyco\/opencode/g,
replacement: "Kilo-Org/kilo",
description: "GitHub repo reference",
},
// Domain replacements (specific first)
{
pattern: /app\.opencode\.ai/g,
replacement: "app.kilo.ai",
description: "App domain",
},
{
pattern: /opencode\.ai(?!\/zen)/g,
replacement: "kilo.ai",
description: "Main domain (excluding zen)",
},
// Product name (specific phrases first)
{
pattern: /OpenCode Desktop/g,
replacement: "Kilo Desktop",
description: "Desktop app name",
},
// CLI commands (be careful with order)
{
pattern: /npx opencode(?!\w)/g,
replacement: "npx kilo",
description: "npx command",
},
{
pattern: /bun add opencode(?!\w)/g,
replacement: "bun add kilo",
description: "bun add command",
},
{
pattern: /npm install opencode(?!\w)/g,
replacement: "npm install kilo",
description: "npm install command",
},
{
pattern: /opencode upgrade(?!\w)/g,
replacement: "kilo upgrade",
description: "upgrade command",
},
{
pattern: /opencode dev(?!\w)/g,
replacement: "kilo dev",
description: "dev command",
},
{
pattern: /opencode serve(?!\w)/g,
replacement: "kilo serve",
description: "serve command",
},
{
pattern: /opencode auth(?!\w)/g,
replacement: "kilo auth",
description: "auth command",
},
// Generic product name replacement (must come after specific patterns)
// Only replace "OpenCode" when it's a standalone word (not part of opencode.json, etc.)
{
pattern: /\bOpenCode\b(?!\.json|\/| Zen)/g,
replacement: "Kilo",
description: "Product name",
},
// Environment variables (exclude OPENCODE_API_KEY)
{
pattern: /\bOPENCODE_(?!API_KEY\b)([A-Z_]+)\b/g,
replacement: "KILO_$1",
description: "Environment variable",
},
]
// Patterns that should NOT be replaced (preserved as-is)
const PRESERVE_PATTERNS = [
/opencode\.json/g, // Config filename
/\.opencode\//g, // Directory name
/\.opencode`/g, // Directory name in template strings
/"\.opencode"/g, // Directory name in quotes
/'\.opencode'/g, // Directory name in single quotes
]
/**
* Check if a line should be preserved (has kilocode_change marker)
*/
function shouldPreserveLine(line: string): boolean {
return line.includes("// kilocode_change")
}
/**
* Apply string replacements to content, preserving kilocode_change lines
*/
export function transformI18nContent(
content: string,
verbose = false,
): { result: string; replacements: number; preserved: number } {
const lines = content.split("\n")
const transformedLines: string[] = []
let totalReplacements = 0
let preservedCount = 0
for (const line of lines) {
// Skip lines marked with kilocode_change
if (shouldPreserveLine(line)) {
transformedLines.push(line)
preservedCount++
if (verbose) debug(`Preserved line: ${line.trim().substring(0, 50)}...`)
continue
}
let transformedLine = line
let lineReplacements = 0
// Check if line contains patterns that should be preserved entirely
let hasPreservePattern = false
for (const pattern of PRESERVE_PATTERNS) {
if (pattern.test(line)) {
hasPreservePattern = true
// Reset the regex lastIndex
pattern.lastIndex = 0
}
}
// Apply replacements
for (const { pattern, replacement, description } of I18N_REPLACEMENTS) {
// Reset lastIndex for global regexes
pattern.lastIndex = 0
if (pattern.test(transformedLine)) {
pattern.lastIndex = 0
// Special handling: if line has preserve patterns, be more careful
if (hasPreservePattern) {
// Only replace if the match is not part of a preserve pattern
// This is a simplified check - we replace and let preserve patterns win
}
const before = transformedLine
transformedLine = transformedLine.replace(pattern, replacement)
if (before !== transformedLine) {
lineReplacements++
if (verbose) debug(` ${description}: "${before.trim()}" -> "${transformedLine.trim()}"`)
}
}
}
transformedLines.push(transformedLine)
totalReplacements += lineReplacements
}
return {
result: transformedLines.join("\n"),
replacements: totalReplacements,
preserved: preservedCount,
}
}
/**
* Transform a single i18n file
*/
export async function transformI18nFile(
filePath: string,
options: I18nTransformOptions = {},
): Promise<I18nTransformResult> {
const file = Bun.file(filePath)
const content = await file.text()
const { result, replacements, preserved } = transformI18nContent(content, options.verbose)
if (replacements > 0 && !options.dryRun) {
await Bun.write(filePath, result)
}
return {
file: filePath,
replacements,
preserved,
dryRun: options.dryRun ?? false,
}
}
/**
* Check if a file is an i18n translation file
*/
export function isI18nFile(filePath: string, patterns?: string[]): boolean {
const i18nPatterns = patterns || defaultConfig.i18nPatterns
return i18nPatterns.some((pattern) => {
// Convert glob pattern to regex
const regex = new RegExp("^" + pattern.replace(/\./g, "\\.").replace(/\*\*/g, ".*").replace(/\*/g, "[^/]*") + "$")
return regex.test(filePath)
})
}
/**
* Transform all i18n files
*/
export async function transformAllI18n(options: I18nTransformOptions = {}): Promise<I18nTransformResult[]> {
const results: I18nTransformResult[] = []
const patterns = options.patterns || defaultConfig.i18nPatterns
for (const pattern of patterns) {
const glob = new Glob(pattern)
for await (const path of glob.scan({ absolute: true })) {
// Skip index.ts files (they're usually just exports)
if (path.endsWith("/index.ts")) continue
const result = await transformI18nFile(path, options)
if (result.replacements > 0 || result.preserved > 0) {
results.push(result)
if (options.dryRun) {
info(
`[DRY-RUN] Would transform ${result.file}: ${result.replacements} replacements, ${result.preserved} preserved`,
)
} else if (result.replacements > 0) {
success(`Transformed ${result.file}: ${result.replacements} replacements, ${result.preserved} preserved`)
}
}
}
}
return results
}
/**
* Transform i18n files that are in conflict during merge
* Takes upstream version (theirs) and applies Kilo branding
*/
export async function transformConflictedI18n(
files: string[],
options: I18nTransformOptions = {},
): Promise<I18nTransformResult[]> {
const results: I18nTransformResult[] = []
for (const file of files) {
if (!isI18nFile(file)) {
debug(`Skipping non-i18n file: ${file}`)
continue
}
// First, take upstream's version (theirs)
if (!options.dryRun) {
await $`git checkout --theirs ${file}`.quiet().nothrow()
await $`git add ${file}`.quiet().nothrow()
}
// Then apply Kilo branding transformations
const result = await transformI18nFile(file, options)
results.push(result)
if (options.dryRun) {
info(`[DRY-RUN] Would take upstream and transform ${file}: ${result.replacements} replacements`)
} else if (result.replacements > 0) {
success(`Transformed ${file}: took upstream + ${result.replacements} Kilo branding replacements`)
}
}
return results
}
// CLI entry point
if (import.meta.main) {
const args = process.argv.slice(2)
const dryRun = args.includes("--dry-run")
const verbose = args.includes("--verbose")
const conflicted = args.includes("--conflicted")
// Get specific files if provided
const files = args.filter((a) => !a.startsWith("--"))
if (dryRun) {
info("Running in dry-run mode (no files will be modified)")
}
let results: I18nTransformResult[]
if (conflicted && files.length > 0) {
results = await transformConflictedI18n(files, { dryRun, verbose })
} else if (files.length > 0) {
results = []
for (const file of files) {
const result = await transformI18nFile(file, { dryRun, verbose })
results.push(result)
}
} else {
results = await transformAllI18n({ dryRun, verbose })
}
const totalReplacements = results.reduce((sum, r) => sum + r.replacements, 0)
const totalPreserved = results.reduce((sum, r) => sum + r.preserved, 0)
console.log()
success(`Processed ${results.length} files`)
info(`Total replacements: ${totalReplacements}`)
info(`Total preserved lines: ${totalPreserved}`)
if (dryRun) {
info("Run without --dry-run to apply changes")
}
}