chore: cleanup versioned zod imports (#3460)

Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
Co-authored-by: opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com>
Co-authored-by: rekram1-node <rekram1-node@users.noreply.github.com>
This commit is contained in:
Jérôme Benoit
2025-10-26 20:50:41 +01:00
committed by GitHub
parent 3241f6b8bb
commit 0eb899a950
53 changed files with 78 additions and 77 deletions

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bun
import { z } from "zod/v4"
import { z } from "zod"
import { Config } from "../src/config/config"
const file = process.argv[2]

View File

@@ -1,5 +1,5 @@
import { Config } from "../config/config"
import z from "zod/v4"
import z from "zod"
import { Provider } from "../provider/provider"
import { generateObject, type ModelMessage } from "ai"
import PROMPT_GENERATE from "./generate.txt"

View File

@@ -1,4 +1,4 @@
import z from "zod/v4"
import z from "zod"
import { Auth } from "./index"
import { NamedError } from "../util/error"

View File

@@ -1,7 +1,7 @@
import path from "path"
import { Global } from "../global"
import fs from "fs/promises"
import z from "zod/v4"
import z from "zod"
export namespace Auth {
export const Oauth = z

View File

@@ -1,4 +1,4 @@
import z from "zod/v4"
import z from "zod"
import { Global } from "../global"
import { Log } from "../util/log"
import path from "path"

View File

@@ -1,5 +1,5 @@
import z from "zod/v4"
import type { ZodType } from "zod/v4"
import z from "zod"
import type { ZodType } from "zod"
import { Log } from "../util/log"
import { Instance } from "../project/instance"

View File

@@ -1,4 +1,4 @@
import z from "zod/v4"
import z from "zod"
import { EOL } from "os"
import { NamedError } from "../util/error"

View File

@@ -1,4 +1,4 @@
import z from "zod/v4"
import z from "zod"
import { Config } from "../config/config"
import { Instance } from "../project/instance"

View File

@@ -1,7 +1,7 @@
import { Log } from "../util/log"
import path from "path"
import os from "os"
import z from "zod/v4"
import z from "zod"
import { Filesystem } from "../util/filesystem"
import { ModelsDev } from "../provider/models"
import { mergeDeep, pipe } from "remeda"

View File

@@ -1,7 +1,7 @@
import path from "path"
import { Global } from "../global"
import fs from "fs/promises"
import z from "zod/v4"
import z from "zod"
import { NamedError } from "../util/error"
import { lazy } from "../util/lazy"
import { Log } from "../util/log"

View File

@@ -1,4 +1,4 @@
import z from "zod/v4"
import z from "zod"
import { Bus } from "../bus"
import { $ } from "bun"
import type { BunFile } from "bun"

View File

@@ -2,7 +2,7 @@
import path from "path"
import { Global } from "../global"
import fs from "fs/promises"
import z from "zod/v4"
import z from "zod"
import { NamedError } from "../util/error"
import { lazy } from "../util/lazy"
import { $ } from "bun"
@@ -218,7 +218,7 @@ export namespace Ripgrep {
code: "ENOENT",
errno: -2,
path: input.cwd,
});
})
}
const proc = Bun.spawn(args, {

View File

@@ -1,4 +1,4 @@
import z from "zod/v4"
import z from "zod"
import { Bus } from "../bus"
import { Flag } from "../flag/flag"
import { Instance } from "../project/instance"

View File

@@ -1,4 +1,4 @@
import z from "zod/v4"
import z from "zod"
import { randomBytes } from "crypto"
export namespace Identifier {

View File

@@ -1,5 +1,5 @@
import { spawn } from "bun"
import z from "zod/v4"
import z from "zod"
import { NamedError } from "../util/error"
import { Log } from "../util/log"
import { Bus } from "../bus"

View File

@@ -1,6 +1,6 @@
import path from "path"
import { $ } from "bun"
import z from "zod/v4"
import z from "zod"
import { NamedError } from "../util/error"
import { Bus } from "../bus"
import { Log } from "../util/log"

View File

@@ -4,7 +4,7 @@ import type { Diagnostic as VSCodeDiagnostic } from "vscode-languageserver-types
import { Log } from "../util/log"
import { LANGUAGE_EXTENSIONS } from "./language"
import { Bus } from "../bus"
import z from "zod/v4"
import z from "zod"
import type { LSPServer } from "./server"
import { NamedError } from "../util/error"
import { withTimeout } from "../util/timeout"

View File

@@ -2,7 +2,7 @@ import { Log } from "../util/log"
import { LSPClient } from "./client"
import path from "path"
import { LSPServer } from "./server"
import z from "zod/v4"
import z from "zod"
import { Config } from "../config/config"
import { spawn } from "child_process"
import { Instance } from "../project/instance"

View File

@@ -5,7 +5,7 @@ import { StdioClientTransport } from "@modelcontextprotocol/sdk/client/stdio.js"
import { Config } from "../config/config"
import { Log } from "../util/log"
import { NamedError } from "../util/error"
import z from "zod/v4"
import z from "zod"
import { Session } from "../session"
import { Bus } from "../bus"
import { Instance } from "../project/instance"

View File

@@ -1,4 +1,4 @@
import z from "zod/v4"
import z from "zod"
import { Bus } from "../bus"
import { Log } from "../util/log"
import { Identifier } from "../id/id"

View File

@@ -1,4 +1,4 @@
import z from "zod/v4"
import z from "zod"
import { Filesystem } from "../util/filesystem"
import path from "path"
import { $ } from "bun"

View File

@@ -1,7 +1,7 @@
import { Global } from "../global"
import { Log } from "../util/log"
import path from "path"
import z from "zod/v4"
import z from "zod"
import { data } from "./models-macro" with { type: "macro" }
import { Installation } from "../installation"

View File

@@ -1,4 +1,4 @@
import z from "zod/v4"
import z from "zod"
import path from "path"
import { Config } from "../config/config"
import { mergeDeep, sortBy } from "remeda"

View File

@@ -5,7 +5,7 @@ import { Hono } from "hono"
import { cors } from "hono/cors"
import { stream, streamSSE } from "hono/streaming"
import { Session } from "../session"
import z from "zod/v4"
import z from "zod"
import { Provider } from "../provider/provider"
import { mapValues } from "remeda"
import { NamedError } from "../util/error"

View File

@@ -7,7 +7,7 @@ import { defer } from "../util/defer"
import { MessageV2 } from "./message-v2"
import { SystemPrompt } from "./system"
import { Bus } from "../bus"
import z from "zod/v4"
import z from "zod"
import type { ModelsDev } from "../provider/models"
import { SessionPrompt } from "./prompt"
import { Flag } from "../flag/flag"

View File

@@ -1,5 +1,5 @@
import { Decimal } from "decimal.js"
import z from "zod/v4"
import z from "zod"
import { type LanguageModelUsage, type ProviderMetadata } from "ai"
import PROMPT_INITIALIZE from "../session/prompt/initialize.txt"

View File

@@ -1,4 +1,4 @@
import z from "zod/v4"
import z from "zod"
import { Instance } from "../project/instance"
import { Log } from "../util/log"
import { NamedError } from "../util/error"

View File

@@ -1,4 +1,4 @@
import z from "zod/v4"
import z from "zod"
import { Bus } from "../bus"
import { NamedError } from "../util/error"
import { Message } from "./message"

View File

@@ -1,4 +1,4 @@
import z from "zod/v4"
import z from "zod"
import { NamedError } from "../util/error"
export namespace Message {

View File

@@ -1,7 +1,7 @@
import path from "path"
import os from "os"
import fs from "fs/promises"
import z from "zod/v4"
import z from "zod"
import { Identifier } from "../id/id"
import { MessageV2 } from "./message-v2"
import { Log } from "../util/log"

View File

@@ -1,4 +1,4 @@
import z from "zod/v4"
import z from "zod"
import { Identifier } from "../id/id"
import { Snapshot } from "../snapshot"
import { MessageV2 } from "./message-v2"

View File

@@ -1,4 +1,4 @@
import z from "zod/v4"
import z from "zod"
import { Bus } from "../bus"
import { Storage } from "../storage/storage"

View File

@@ -3,7 +3,7 @@ import path from "path"
import fs from "fs/promises"
import { Log } from "../util/log"
import { Global } from "../global"
import z from "zod/v4"
import z from "zod"
import { Config } from "../config/config"
import { Instance } from "../project/instance"

View File

@@ -1,4 +1,4 @@
import z from "zod/v4"
import z from "zod"
import { spawn } from "child_process"
import { Tool } from "./tool"
import DESCRIPTION from "./bash.txt"

View File

@@ -3,7 +3,7 @@
// https://github.com/google-gemini/gemini-cli/blob/main/packages/core/src/utils/editCorrector.ts
// https://github.com/cline/cline/blob/main/evals/diff-edits/diff-apply/diff-06-26-25.ts
import z from "zod/v4"
import z from "zod"
import * as path from "path"
import { Tool } from "./tool"
import { LSP } from "../lsp"

View File

@@ -1,4 +1,4 @@
import z from "zod/v4"
import z from "zod"
import path from "path"
import { Tool } from "./tool"
import DESCRIPTION from "./glob.txt"

View File

@@ -1,4 +1,4 @@
import z from "zod/v4"
import z from "zod"
import { Tool } from "./tool"
import { Ripgrep } from "../file/ripgrep"

View File

@@ -1,4 +1,4 @@
import z from "zod/v4"
import z from "zod"
import { Tool } from "./tool"
export const InvalidTool = Tool.define("invalid", {

View File

@@ -1,4 +1,4 @@
import z from "zod/v4"
import z from "zod"
import { Tool } from "./tool"
import * as path from "path"
import DESCRIPTION from "./ls.txt"

View File

@@ -1,4 +1,4 @@
import z from "zod/v4"
import z from "zod"
import { Tool } from "./tool"
import path from "path"
import { LSP } from "../lsp"

View File

@@ -1,4 +1,4 @@
import z from "zod/v4"
import z from "zod"
import { Tool } from "./tool"
import path from "path"
import { LSP } from "../lsp"

View File

@@ -1,4 +1,4 @@
import z from "zod/v4"
import z from "zod"
import { Tool } from "./tool"
import { EditTool } from "./edit"
import DESCRIPTION from "./multiedit.txt"

View File

@@ -1,4 +1,4 @@
import z from "zod/v4"
import z from "zod"
import * as path from "path"
import * as fs from "fs/promises"
import { Tool } from "./tool"
@@ -17,7 +17,8 @@ const PatchParams = z.object({
})
export const PatchTool = Tool.define("patch", {
description: "Apply a patch to modify multiple files. Supports adding, updating, and deleting files with context-aware changes.",
description:
"Apply a patch to modify multiple files. Supports adding, updating, and deleting files with context-aware changes.",
parameters: PatchParams,
async execute(params, ctx) {
if (!params.patchText) {
@@ -46,12 +47,12 @@ export const PatchTool = Tool.define("patch", {
type: "add" | "update" | "delete" | "move"
movePath?: string
}> = []
let totalDiff = ""
for (const hunk of hunks) {
const filePath = path.resolve(Instance.directory, hunk.path)
if (!Filesystem.contains(Instance.directory, filePath)) {
throw new Error(`File ${filePath} is not in the current working directory`)
}
@@ -62,30 +63,30 @@ export const PatchTool = Tool.define("patch", {
const oldContent = ""
const newContent = hunk.contents
const diff = createTwoFilesPatch(filePath, filePath, oldContent, newContent)
fileChanges.push({
filePath,
oldContent,
newContent,
type: "add",
})
totalDiff += diff + "\n"
}
break
case "update":
// Check if file exists for update
const stats = await fs.stat(filePath).catch(() => null)
if (!stats || stats.isDirectory()) {
throw new Error(`File not found or is directory: ${filePath}`)
}
// Read file and update time tracking (like edit tool does)
await FileTime.assert(ctx.sessionID, filePath)
const oldContent = await fs.readFile(filePath, "utf-8")
let newContent = oldContent
// Apply the update chunks to get new content
try {
const fileUpdate = Patch.deriveNewContentsFromChunks(filePath, hunk.chunks)
@@ -93,9 +94,9 @@ export const PatchTool = Tool.define("patch", {
} catch (error) {
throw new Error(`Failed to apply update to ${filePath}: ${error}`)
}
const diff = createTwoFilesPatch(filePath, filePath, oldContent, newContent)
fileChanges.push({
filePath,
oldContent,
@@ -103,23 +104,23 @@ export const PatchTool = Tool.define("patch", {
type: hunk.move_path ? "move" : "update",
movePath: hunk.move_path ? path.resolve(Instance.directory, hunk.move_path) : undefined,
})
totalDiff += diff + "\n"
break
case "delete":
// Check if file exists for deletion
await FileTime.assert(ctx.sessionID, filePath)
const contentToDelete = await fs.readFile(filePath, "utf-8")
const deleteDiff = createTwoFilesPatch(filePath, filePath, contentToDelete, "")
fileChanges.push({
filePath,
oldContent: contentToDelete,
newContent: "",
type: "delete",
})
totalDiff += deleteDiff + "\n"
break
}
@@ -141,7 +142,7 @@ export const PatchTool = Tool.define("patch", {
// Apply the changes
const changedFiles: string[] = []
for (const change of fileChanges) {
switch (change.type) {
case "add":
@@ -153,12 +154,12 @@ export const PatchTool = Tool.define("patch", {
await fs.writeFile(change.filePath, change.newContent, "utf-8")
changedFiles.push(change.filePath)
break
case "update":
await fs.writeFile(change.filePath, change.newContent, "utf-8")
changedFiles.push(change.filePath)
break
case "move":
if (change.movePath) {
// Create parent directories for destination
@@ -173,13 +174,13 @@ export const PatchTool = Tool.define("patch", {
changedFiles.push(change.movePath)
}
break
case "delete":
await fs.unlink(change.filePath)
changedFiles.push(change.filePath)
break
}
// Update file time tracking
FileTime.read(ctx.sessionID, change.filePath)
if (change.movePath) {
@@ -193,7 +194,7 @@ export const PatchTool = Tool.define("patch", {
}
// Generate output summary
const relativePaths = changedFiles.map(filePath => path.relative(Instance.worktree, filePath))
const relativePaths = changedFiles.map((filePath) => path.relative(Instance.worktree, filePath))
const summary = `${fileChanges.length} files changed`
return {
@@ -201,7 +202,7 @@ export const PatchTool = Tool.define("patch", {
metadata: {
diff: totalDiff,
},
output: `Patch applied successfully. ${summary}:\n${relativePaths.map(p => ` ${p}`).join("\n")}`,
output: `Patch applied successfully. ${summary}:\n${relativePaths.map((p) => ` ${p}`).join("\n")}`,
}
},
})
})

View File

@@ -1,4 +1,4 @@
import z from "zod/v4"
import z from "zod"
import * as fs from "fs"
import * as path from "path"
import { Tool } from "./tool"

View File

@@ -16,7 +16,7 @@ import { Instance } from "../project/instance"
import { Config } from "../config/config"
import path from "path"
import { type ToolDefinition } from "@opencode-ai/plugin"
import z from "zod/v4"
import z from "zod"
import { Plugin } from "../plugin"
export namespace ToolRegistry {

View File

@@ -1,6 +1,6 @@
import { Tool } from "./tool"
import DESCRIPTION from "./task.txt"
import z from "zod/v4"
import z from "zod"
import { Session } from "../session"
import { Bus } from "../bus"
import { MessageV2 } from "../session/message-v2"

View File

@@ -1,4 +1,4 @@
import z from "zod/v4"
import z from "zod"
import { Tool } from "./tool"
import DESCRIPTION_WRITE from "./todowrite.txt"
import { Todo } from "../session/todo"

View File

@@ -1,4 +1,4 @@
import z from "zod/v4"
import z from "zod"
import type { MessageV2 } from "../session/message-v2"
export namespace Tool {

View File

@@ -1,4 +1,4 @@
import z from "zod/v4"
import z from "zod"
import { Tool } from "./tool"
import TurndownService from "turndown"
import DESCRIPTION from "./webfetch.txt"

View File

@@ -1,4 +1,4 @@
import z from "zod/v4"
import z from "zod"
import * as path from "path"
import { Tool } from "./tool"
import { LSP } from "../lsp"

View File

@@ -1,4 +1,4 @@
import z from "zod/v4"
import z from "zod"
export abstract class NamedError extends Error {
abstract schema(): z.core.$ZodType

View File

@@ -1,7 +1,7 @@
import path from "path"
import fs from "fs/promises"
import { Global } from "../global"
import z from "zod/v4"
import z from "zod"
export namespace Log {
export const Level = z.enum(["DEBUG", "INFO", "WARN", "ERROR"]).meta({ ref: "LogLevel", description: "Log level" })

View File

@@ -1,4 +1,4 @@
import { z } from "zod/v4"
import { z } from "zod"
export type ToolContext = {
sessionID: string