From f9746b762802514b7086c2be3e86ff9ca269c18b Mon Sep 17 00:00:00 2001 From: steponeerror Date: Thu, 18 Jun 2026 13:40:09 +0800 Subject: [PATCH 1/2] docs(readme): document Claude Code plugin marketplace install --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 724baea..2b77588 100644 --- a/README.md +++ b/README.md @@ -70,6 +70,17 @@ npx skills add https://github.com/Leonxlnx/taste-skill --skill "design-taste-fro You can also copy any `SKILL.md` into your project or paste it into ChatGPT / Codex conversations. +### Install as a Claude Code plugin + +If you only use Claude Code, you can install the whole repo as a plugin from the included `.claude-plugin/` manifests. Every skill is namespaced under `taste-skill:` (for example, `/taste-skill:imagegen-frontend-web`), so they won't collide with your other skills — no `npx skills` step required. + +```bash +/plugin marketplace add Leonxlnx/taste-skill +/plugin install taste-skill@taste-skill +``` + +Run `/plugin marketplace update taste-skill` later to pull new versions. + ### Updating from the previous version The default `taste-skill` (install name `design-taste-frontend`) is now **v2 (experimental)**, a substantial rewrite of the original v1. If you already have v1 installed, just re-run the install command and you will be upgraded: From 8db78a40ef706770064031bfaa9f35aec7d4cd0d Mon Sep 17 00:00:00 2001 From: steponeerror Date: Thu, 18 Jun 2026 15:34:07 +0800 Subject: [PATCH 2/2] docs(readme): use /plugin update for plugin upgrades `/plugin marketplace update` only refreshes the marketplace catalog and does not upgrade already-installed plugins; the correct command is `/plugin update`, which Claude Code also runs automatically at startup. Also drop the misleading `bash` info string on the slash-command block, since those are Claude Code REPL commands rather than shell commands. --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2b77588..f9e40be 100644 --- a/README.md +++ b/README.md @@ -74,12 +74,14 @@ You can also copy any `SKILL.md` into your project or paste it into ChatGPT / Co If you only use Claude Code, you can install the whole repo as a plugin from the included `.claude-plugin/` manifests. Every skill is namespaced under `taste-skill:` (for example, `/taste-skill:imagegen-frontend-web`), so they won't collide with your other skills — no `npx skills` step required. -```bash +Run these inside Claude Code: + +``` /plugin marketplace add Leonxlnx/taste-skill /plugin install taste-skill@taste-skill ``` -Run `/plugin marketplace update taste-skill` later to pull new versions. +Run `/plugin update` later to upgrade installed plugins to new versions. Claude Code also checks for updates automatically at startup. ### Updating from the previous version