From 12b86829d9395098b621b90f7c772bf765889043 Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Wed, 23 Jul 2025 12:14:54 -0400 Subject: [PATCH] add debug paths command --- packages/opencode/src/cli/cmd/debug/index.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages/opencode/src/cli/cmd/debug/index.ts b/packages/opencode/src/cli/cmd/debug/index.ts index 77f4129a..265296f5 100644 --- a/packages/opencode/src/cli/cmd/debug/index.ts +++ b/packages/opencode/src/cli/cmd/debug/index.ts @@ -1,3 +1,4 @@ +import { Global } from "../../../global" import { bootstrap } from "../../bootstrap" import { cmd } from "../cmd" import { FileCommand } from "./file" @@ -15,6 +16,7 @@ export const DebugCommand = cmd({ .command(FileCommand) .command(ScrapCommand) .command(SnapshotCommand) + .command(PathsCommand) .command({ command: "wait", async handler() { @@ -26,3 +28,12 @@ export const DebugCommand = cmd({ .demandCommand(), async handler() {}, }) + +const PathsCommand = cmd({ + command: "paths", + handler() { + for (const [key, value] of Object.entries(Global.Path)) { + console.log(key.padEnd(10), value) + } + }, +})