From ee4053a0cf65bf2a36bc9b2cb3fa3415ae73856d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CBeeRad=E2=80=9D?= Date: Thu, 29 Jan 2026 15:35:08 +1100 Subject: [PATCH] feat(rah-light): remove unused supabaseTokenRegistry - Delete src/services/context/supabaseTokenRegistry.ts (stub for private version, not imported) - Keep requestContext.ts (used by workflow executor, middleware) - Keep autoContext.ts (used by workflow API and tools) Co-Authored-By: Claude Opus 4.5 --- src/services/context/supabaseTokenRegistry.ts | 22 ------------------- 1 file changed, 22 deletions(-) delete mode 100644 src/services/context/supabaseTokenRegistry.ts diff --git a/src/services/context/supabaseTokenRegistry.ts b/src/services/context/supabaseTokenRegistry.ts deleted file mode 100644 index 6415f0f..0000000 --- a/src/services/context/supabaseTokenRegistry.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * Stub for SupabaseTokenRegistry - not used in open source version - * The private version uses this for backend API authentication. - * In open source mode, all API calls go directly to OpenAI/Anthropic. - */ -export class SupabaseTokenRegistry { - static async get(_key: string): Promise { - return null; - } - - static getLast(_key: string): string | null { - return null; - } - - static set(_key: string, _value: string): void { - // No-op in OS version - } - - static delete(_key: string): void { - // No-op in OS version - } -}