From f782248fa4f8800ba6fdb01741e8080217d359d7 Mon Sep 17 00:00:00 2001 From: Martin Kysel Date: Mon, 30 Mar 2026 10:15:14 +0200 Subject: [PATCH] Fix Claude Code installation commands in README `claude plugin add` does not exist. The correct flow is to first add the marketplace with `claude plugin marketplace add`, then install the plugin with `claude plugin install`. Co-Authored-By: Claude Sonnet 4.6 --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c4cf40e..c7de7c9 100644 --- a/README.md +++ b/README.md @@ -43,14 +43,16 @@ Each skill produces a file artifact and can be invoked independently: ### Claude Code ```bash -claude plugin add xmtplabs/code-factory +claude plugin marketplace add xmtplabs/code-factory +claude plugin install code-factory@code-factory ``` Or install from a local clone: ```bash git clone https://github.com/xmtplabs/code-factory.git -claude plugin add /path/to/code-factory +claude plugin marketplace add /path/to/code-factory +claude plugin install code-factory@code-factory ``` ### Codex