From bba2619f615e21ca329e2ba0fe08cb4ae55c1e7b Mon Sep 17 00:00:00 2001 From: Chris Kinzel Date: Wed, 8 Apr 2026 00:50:42 +0000 Subject: [PATCH] fix: set correct plugin path in Codex installer script --- codex-install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/codex-install.sh b/codex-install.sh index c396d00..7a25e39 100755 --- a/codex-install.sh +++ b/codex-install.sh @@ -53,7 +53,8 @@ data.plugins = data.plugins || []; data.plugins = data.plugins.filter(p => p.name !== '${PLUGIN_NAME}'); data.plugins.push({ name: '${PLUGIN_NAME}', - source: { source: 'local', path: './${PLUGIN_NAME}' }, + interface: { displayName: 'Google Data Cloud AI Dev Kit' }, + source: { source: 'local', path: './.agents/plugins/${PLUGIN_NAME}' }, policy: { installation: 'AVAILABLE', authentication: 'ON_INSTALL' }, category: 'Productivity' });