From 90afa20810dac609ab75fe518b2aa32f10e61f71 Mon Sep 17 00:00:00 2001 From: Mahesh Sanikommu Date: Mon, 31 Aug 2026 15:56:40 -0700 Subject: [PATCH 1/2] chore(auth): update plugin login URL Points the browser login flow at the current login page. Bumps the version so the release workflow publishes it. --- package.json | 2 +- src/services/auth.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index a4484f1..c5b217c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "opencode-supermemory", - "version": "2.0.12", + "version": "2.0.13", "description": "OpenCode plugin that gives coding agents persistent memory using Supermemory", "type": "module", "main": "dist/index.js", diff --git a/src/services/auth.ts b/src/services/auth.ts index 5e368c0..bacfac8 100644 --- a/src/services/auth.ts +++ b/src/services/auth.ts @@ -8,7 +8,7 @@ import { openUrl } from "./openUrl.js"; const CREDENTIALS_DIR = join(homedir(), ".supermemory-opencode"); export const CREDENTIALS_FILE = join(CREDENTIALS_DIR, "credentials.json"); -const AUTH_BASE_URL = process.env.SUPERMEMORY_AUTH_URL || "https://app.supermemory.ai/auth/agent-connect"; +const AUTH_BASE_URL = process.env.SUPERMEMORY_AUTH_URL || "https://console.supermemory.ai/auth/connect"; const AUTH_TIMEOUT = Number(process.env.SUPERMEMORY_AUTH_TIMEOUT) || 5 * 60_000; const CLIENT_NAME = "opencode"; From 511af9bd58783c1ba17f1d0f42764c6c111c9cf1 Mon Sep 17 00:00:00 2001 From: Mahesh Sanikommu Date: Mon, 31 Aug 2026 18:03:17 -0700 Subject: [PATCH 2/2] chore: regenerate the checked-in plugin version src/version.ts is generated from package.json; dev builds run tsc only, so it has to be committed alongside the bump. --- src/version.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/version.ts b/src/version.ts index f987e67..d0ae4d7 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1,3 +1,3 @@ // AUTO-GENERATED by scripts/sync-version.mjs — do not edit by hand. // Sourced from package.json "version" so the two cannot drift. -export const PLUGIN_VERSION = "2.0.12"; +export const PLUGIN_VERSION = "2.0.13";