From 1b861800ac10f202937f4fa3ff1e062e4c7fa430 Mon Sep 17 00:00:00 2001 From: Michael Kantor <6068672+kantorcodes@users.noreply.github.com> Date: Fri, 15 May 2026 15:46:49 -0400 Subject: [PATCH 1/2] fix(readme): use literal quoting for marketplace URL Signed-off-by: Michael Kantor <6068672+kantorcodes@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4b231aeb..3a87cf84 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ Install plugins directly from this curated list by pointing Codex at the repo ma ```bash # Add this repo as a marketplace source (one-time setup) codex plugin marketplace add \ - "https://github.com/hashgraph-online/awesome-codex-plugins.git" \ + 'https://github.com/hashgraph-online/awesome-codex-plugins.git' \ --ref main \ --sparse .agents/plugins \ --sparse plugins From 683822796f1794e03ea1647affb06ceebac19591 Mon Sep 17 00:00:00 2001 From: Michael Kantor <6068672+kantorcodes@users.noreply.github.com> Date: Fri, 15 May 2026 15:52:49 -0400 Subject: [PATCH 2/2] fix(readme): quote marketplace command arguments Signed-off-by: Michael Kantor <6068672+kantorcodes@users.noreply.github.com> --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3a87cf84..9923bc35 100644 --- a/README.md +++ b/README.md @@ -64,9 +64,9 @@ Install plugins directly from this curated list by pointing Codex at the repo ma # Add this repo as a marketplace source (one-time setup) codex plugin marketplace add \ 'https://github.com/hashgraph-online/awesome-codex-plugins.git' \ - --ref main \ - --sparse .agents/plugins \ - --sparse plugins + --ref 'main' \ + --sparse '.agents/plugins' \ + --sparse 'plugins' # Then browse and install (the marketplace name is derived from the repo name) codex plugin list --source awesome-codex-plugins