From cc461a40837cb5f1721bedafd6564e5e5449dbd4 Mon Sep 17 00:00:00 2001 From: Dominik Simonik Date: Wed, 20 May 2026 15:47:06 +0200 Subject: [PATCH] docs: fix install command and clarify in-session steps in README Drop the @very-good-claude-code-marketplace suffix from the install commands so they resolve like the working vgv-wingspan install, and split the in-session install into two numbered /plugin steps with a note that the second command must run after the first completes. Claude Code requires separate command invocations for /plugin marketplace add and /plugin install, so the prior single code block could mislead users into pasting both at once. Switched the in-session code-block language tag from bash to text since slash commands are not shell input. Co-Authored-By: Claude Opus 4.7 (1M context) --- README.md | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 478116d..934f265 100644 --- a/README.md +++ b/README.md @@ -16,15 +16,22 @@ VGV AI Flutter Plugin is a collection of contextual best-practices skills that C One-line install from your terminal: ```bash -claude plugin marketplace add VeryGoodOpenSource/very_good_claude_marketplace && claude plugin install vgv-ai-flutter-plugin@very-good-claude-code-marketplace +claude plugin marketplace add VeryGoodOpenSource/very_good_claude_marketplace && claude plugin install vgv-ai-flutter-plugin ``` -Or inside an active Claude Code session: +Or inside an active Claude Code session, run these as **two separate commands** (the second only after the first completes): -```bash -/plugin marketplace add VeryGoodOpenSource/very_good_claude_marketplace -/plugin install vgv-ai-flutter-plugin@very-good-claude-code-marketplace -``` +1. Add the marketplace: + + ```text + /plugin marketplace add VeryGoodOpenSource/very_good_claude_marketplace + ``` + +2. Install the plugin: + + ```text + /plugin install vgv-ai-flutter-plugin + ``` For more details, see the [Very Good Claude Marketplace][marketplace_link].