fix: update package name to remove username prefix

This commit is contained in:
2026-03-20 10:41:58 +05:30
parent 96e3922c42
commit 41757e712f
2 changed files with 5 additions and 5 deletions
+4 -4
View File
@@ -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 }
```
+1 -1
View File
@@ -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",