summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorDax Raad <[email protected]>2025-07-10 11:25:31 -0400
committerDax Raad <[email protected]>2025-07-10 11:25:37 -0400
commit1cc55b68eff5fc1fb06057e0a00d1005bed603d8 (patch)
tree3a3f6c803b549d5d28417a7921c918eec94771d2
parent469f6677741375daf3ac249f2bbf96c7c43b510b (diff)
downloadopencode-1cc55b68eff5fc1fb06057e0a00d1005bed603d8.tar.gz
opencode-1cc55b68eff5fc1fb06057e0a00d1005bed603d8.zip
wip: scrap
-rw-r--r--packages/opencode/src/cli/cmd/debug/index.ts2
-rw-r--r--packages/opencode/src/cli/cmd/debug/scrap.ts7
2 files changed, 9 insertions, 0 deletions
diff --git a/packages/opencode/src/cli/cmd/debug/index.ts b/packages/opencode/src/cli/cmd/debug/index.ts
index 886131b60..77f4129a8 100644
--- a/packages/opencode/src/cli/cmd/debug/index.ts
+++ b/packages/opencode/src/cli/cmd/debug/index.ts
@@ -3,6 +3,7 @@ import { cmd } from "../cmd"
import { FileCommand } from "./file"
import { LSPCommand } from "./lsp"
import { RipgrepCommand } from "./ripgrep"
+import { ScrapCommand } from "./scrap"
import { SnapshotCommand } from "./snapshot"
export const DebugCommand = cmd({
@@ -12,6 +13,7 @@ export const DebugCommand = cmd({
.command(LSPCommand)
.command(RipgrepCommand)
.command(FileCommand)
+ .command(ScrapCommand)
.command(SnapshotCommand)
.command({
command: "wait",
diff --git a/packages/opencode/src/cli/cmd/debug/scrap.ts b/packages/opencode/src/cli/cmd/debug/scrap.ts
new file mode 100644
index 000000000..3ba53e3f4
--- /dev/null
+++ b/packages/opencode/src/cli/cmd/debug/scrap.ts
@@ -0,0 +1,7 @@
+import { cmd } from "../cmd"
+
+export const ScrapCommand = cmd({
+ command: "scrap",
+ builder: (yargs) => yargs,
+ async handler() {},
+})