From b9eda3882f3d1f7ff97782c01889ca5f0bae71bd Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Fri, 13 Mar 2026 17:31:51 +0900 Subject: [PATCH] refactor: rename oh-my-opencode files to oh-my-openagent via git mv - git mv bin/oh-my-opencode.js -> bin/oh-my-openagent.js - git mv src/config/schema/oh-my-opencode-config.ts -> oh-my-openagent-config.ts - Update import path in src/config/schema.ts - Update self-reference comment in bin file Wave 2 Task 4 complete. --- bin/{oh-my-opencode.js => oh-my-openagent.js} | 2 +- src/config/schema.ts | 2 +- .../{oh-my-opencode-config.ts => oh-my-openagent-config.ts} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename bin/{oh-my-opencode.js => oh-my-openagent.js} (99%) rename src/config/schema/{oh-my-opencode-config.ts => oh-my-openagent-config.ts} (100%) diff --git a/bin/oh-my-opencode.js b/bin/oh-my-openagent.js similarity index 99% rename from bin/oh-my-opencode.js rename to bin/oh-my-openagent.js index 0d66e55eb..78d9d82f4 100755 --- a/bin/oh-my-opencode.js +++ b/bin/oh-my-openagent.js @@ -1,5 +1,5 @@ #!/usr/bin/env node -// bin/oh-my-opencode.js +// bin/oh-my-openagent.js // Wrapper script that detects platform and spawns the correct binary import { spawnSync } from "node:child_process"; diff --git a/src/config/schema.ts b/src/config/schema.ts index bcb36a175..161699afb 100644 --- a/src/config/schema.ts +++ b/src/config/schema.ts @@ -14,7 +14,7 @@ export * from "./schema/git-env-prefix" export * from "./schema/git-master" export * from "./schema/hooks" export * from "./schema/notification" -export * from "./schema/oh-my-opencode-config" +export * from "./schema/oh-my-openagent-config" export * from "./schema/ralph-loop" export * from "./schema/runtime-fallback" export * from "./schema/skills" diff --git a/src/config/schema/oh-my-opencode-config.ts b/src/config/schema/oh-my-openagent-config.ts similarity index 100% rename from src/config/schema/oh-my-opencode-config.ts rename to src/config/schema/oh-my-openagent-config.ts