From 5ce1247847e623ac2b9388886cf751a5f32ae220 Mon Sep 17 00:00:00 2001 From: ved015 Date: Tue, 12 May 2026 19:51:44 +0530 Subject: [PATCH] add codex plugin --- apps/web/app/auth/connect/page.tsx | 11 +++++++++++ apps/web/components/dashboard-view.tsx | 5 +++++ 2 files changed, 16 insertions(+) diff --git a/apps/web/app/auth/connect/page.tsx b/apps/web/app/auth/connect/page.tsx index 544002e0..816ad10e 100644 --- a/apps/web/app/auth/connect/page.tsx +++ b/apps/web/app/auth/connect/page.tsx @@ -88,6 +88,17 @@ const PLUGIN_INFO: Record = { ], icon: "/images/plugins/cursor.svg", }, + codex: { + name: "OpenAI Codex", + description: + "Persistent memory for OpenAI Codex CLI. Remembers your coding context, patterns, and decisions across sessions.", + features: [ + "Auto-recalls relevant context before each prompt", + "Captures coding decisions and patterns automatically", + "Builds persistent user profile across projects", + ], + icon: "/images/plugins/codex.svg", + }, } function getPluginName(client: string): string { diff --git a/apps/web/components/dashboard-view.tsx b/apps/web/components/dashboard-view.tsx index 04a6446e..627d14ec 100644 --- a/apps/web/components/dashboard-view.tsx +++ b/apps/web/components/dashboard-view.tsx @@ -320,6 +320,11 @@ const PLUGIN_DISPLAY_CATALOG: Record< icon: "/images/plugins/hermes.svg", type: "Plugin", }, + codex: { + name: "OpenAI Codex", + icon: "/images/plugins/codex.svg", + type: "Plugin", + }, } // Types for tool usage