fix: update npm @username to @bendtherules

This commit is contained in:
2026-03-20 10:33:39 +05:30
parent 05dc93b1ed
commit 7cecbede6d
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": ["@username/opencode-multi-model"]
"plugin": ["@bendtherules/opencode-multi-model"]
}
```
@@ -21,10 +21,10 @@ Add to your OpenCode config (`opencode.json`):
```bash
# Using bunx (no install)
bunx @username/opencode-multi-model open my-session -m openai/gpt-5.2 anthropic/claude-3-5-sonnet
bunx @bendtherules/opencode-multi-model open my-session -m openai/gpt-5.2 anthropic/claude-3-5-sonnet
# Or install globally
bun install -g @username/opencode-multi-model
bun install -g @bendtherules/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 "@username/opencode-multi-model"
import { openTool as open, closeTool as close } from "@bendtherules/opencode-multi-model"
export { open, close }
```