Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Use the plugin update command for installed plugins

This tells users to run /plugin marketplace update taste-skill to pull new versions, but the Claude Code docs distinguish marketplace refreshes from plugin updates: marketplace update only refreshes the marketplace listing, while plugin update <plugin> updates an installed plugin. In this context, users who installed taste-skill@taste-skill will leave the cached installed plugin unchanged, so the documented update path will not actually pull a new skill version.

Useful? React with 👍 / 👎.


### 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:
Expand Down