From 414ea90e11a24547799650daf5c7e80fd55d2150 Mon Sep 17 00:00:00 2001 From: senoldogann Date: Fri, 27 Mar 2026 18:28:18 +0200 Subject: [PATCH] fix(codex): correct marketplace.json plugin source path Codex CLI resolves plugin paths relative to the home directory (~), not relative to marketplace.json. The previous path "./everything-claude-code" resolved to ~/everything-claude-code (non-existent), causing "plugin/read failed" error in the TUI. --- .agents/plugins/marketplace.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.agents/plugins/marketplace.json b/.agents/plugins/marketplace.json index 930213d6..635d8442 100644 --- a/.agents/plugins/marketplace.json +++ b/.agents/plugins/marketplace.json @@ -8,7 +8,7 @@ "name": "everything-claude-code", "source": { "source": "local", - "path": "./everything-claude-code" + "path": "./.agents/plugins/everything-claude-code" }, "policy": { "installation": "AVAILABLE",