From fec50c5d850bee956dc4a47d8ff6f89905516eca Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Fri, 17 Apr 2026 12:42:21 +0900 Subject: [PATCH] fix: add oh-my-openagent bin alias for renamed package After the package was renamed from oh-my-opencode to oh-my-openagent, the bin entry only had 'oh-my-opencode'. Users running: npm install -g oh-my-openagent could not invoke 'oh-my-openagent' from the command line. Add 'oh-my-openagent' as a second bin entry pointing to the same bin/oh-my-opencode.js entry point. Both aliases now work. Fixes #3482 --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index c6f4029a6..f7e396d2f 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,8 @@ "types": "dist/index.d.ts", "type": "module", "bin": { - "oh-my-opencode": "bin/oh-my-opencode.js" + "oh-my-opencode": "bin/oh-my-opencode.js", + "oh-my-openagent": "bin/oh-my-opencode.js" }, "files": [ "dist",