From 41757e712fd9eb2800f5c250fd59b9d791378732 Mon Sep 17 00:00:00 2001 From: bendtherules Date: Fri, 20 Mar 2026 10:41:58 +0530 Subject: [PATCH] fix: update package name to remove username prefix --- README.md | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index e5d3308..02a3ea6 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Add to your OpenCode config (`opencode.json`): ```json { - "plugin": ["@bendtherules/opencode-multi-model"] + "plugin": ["opencode-multi-model"] } ``` @@ -21,10 +21,10 @@ Add to your OpenCode config (`opencode.json`): ```bash # Using bunx (no install) -bunx @bendtherules/opencode-multi-model open my-session -m openai/gpt-5.2 anthropic/claude-3-5-sonnet +bunx opencode-multi-model open my-session -m openai/gpt-5.2 anthropic/claude-3-5-sonnet # Or install globally -bun install -g @bendtherules/opencode-multi-model +bun install -g opencode-multi-model opencode-multi-model open my-session -m openai/gpt-5.2 ``` @@ -34,7 +34,7 @@ If you installed it via bun and want to use it as a project tool, import it from ```typescript // .opencode/tools/multi-model.ts -import { openTool as open, closeTool as close } from "@bendtherules/opencode-multi-model" +import { openTool as open, closeTool as close } from "opencode-multi-model" export { open, close } ``` diff --git a/package.json b/package.json index 66162d9..477540c 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "@bendtherules/opencode-multi-model", + "name": "opencode-multi-model", "version": "0.0.2", "description": "Launch multiple AI models in tmux sessions - OpenCode Plugin, CLI, and Project Tool", "type": "module",