opencode/packages/cli/src/debug/index.ts
2026-05-30 18:57:42 -04:00

7 lines
265 B
TypeScript

import * as Command from "effect/unstable/cli/Command"
import { AgentsCommand } from "./agents"
export const DebugCommand = Command.make("debug").pipe(
Command.withDescription("Debugging and troubleshooting tools"),
Command.withSubcommands([AgentsCommand]),
)