From 3e0a4147f140b64de7d9825d1f942d8fe89536d6 Mon Sep 17 00:00:00 2001 From: Affaan Mustafa Date: Thu, 12 Feb 2026 13:50:39 -0800 Subject: [PATCH] fix: rename opencode package from opencode-ecc to ecc-universal Update all references in .opencode/ to use the published npm package name ecc-universal instead of the old opencode-ecc name. --- .opencode/MIGRATION.md | 4 ++-- .opencode/README.md | 4 ++-- .opencode/index.ts | 6 +++--- .opencode/package.json | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.opencode/MIGRATION.md b/.opencode/MIGRATION.md index ca65411b..589105c0 100644 --- a/.opencode/MIGRATION.md +++ b/.opencode/MIGRATION.md @@ -285,13 +285,13 @@ The `.opencode/` directory contains everything pre-configured. ### Option 2: Install as npm Package ```bash -npm install opencode-ecc +npm install ecc-universal ``` Then in your `opencode.json`: ```json { - "plugin": ["opencode-ecc"] + "plugin": ["ecc-universal"] } ``` diff --git a/.opencode/README.md b/.opencode/README.md index 9447ea08..6c0aa682 100644 --- a/.opencode/README.md +++ b/.opencode/README.md @@ -7,14 +7,14 @@ Everything Claude Code (ECC) plugin for OpenCode - agents, commands, hooks, and ### Option 1: npm Package ```bash -npm install opencode-ecc +npm install ecc-universal ``` Add to your `opencode.json`: ```json { - "plugin": ["opencode-ecc"] + "plugin": ["ecc-universal"] } ``` diff --git a/.opencode/index.ts b/.opencode/index.ts index e6b39b06..d4e9474d 100644 --- a/.opencode/index.ts +++ b/.opencode/index.ts @@ -12,13 +12,13 @@ * * Option 1: Install via npm * ```bash - * npm install opencode-ecc + * npm install ecc-universal * ``` * * Then add to your opencode.json: * ```json * { - * "plugin": ["opencode-ecc"] + * "plugin": ["ecc-universal"] * } * ``` * @@ -43,7 +43,7 @@ export const VERSION = "1.0.0" // Plugin metadata export const metadata = { - name: "opencode-ecc", + name: "ecc-universal", version: VERSION, description: "Everything Claude Code plugin for OpenCode", author: "affaan-m", diff --git a/.opencode/package.json b/.opencode/package.json index e7ba66f0..ba1f6957 100644 --- a/.opencode/package.json +++ b/.opencode/package.json @@ -1,5 +1,5 @@ { - "name": "opencode-ecc", + "name": "ecc-universal", "version": "1.0.0", "description": "Everything Claude Code (ECC) plugin for OpenCode - agents, commands, hooks, and skills", "main": "dist/index.js",