fix: Update plugin installation commands to use correct CLI syntax

Changed all installation instructions from the deprecated TUI-style
commands to the correct CLI syntax:

- Old: `/plugin marketplace install daymade/claude-code-skills#skill-name`
- New: `claude plugin install skill-name@daymade/claude-code-skills`

- Old: `/plugin marketplace add daymade/claude-code-skills`
- New: `claude plugin marketplace add daymade/claude-code-skills`

Files updated:
- README.md and README.zh-CN.md
- QUICKSTART.md and QUICKSTART.zh-CN.md
- CLAUDE.md
- scripts/install.sh
- scripts/install.ps1

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
daymade
2025-10-26 12:54:46 +08:00
parent acd4bb2dfc
commit 2d9dde15f7
7 changed files with 201 additions and 52 deletions

View File

@@ -10,10 +10,10 @@ Get started with Claude Code Skills Marketplace in less than 2 minutes!
```bash
# Add the marketplace
/plugin marketplace add daymade/claude-code-skills
claude plugin marketplace add daymade/claude-code-skills
# Install skill-creator
/plugin marketplace install daymade/claude-code-skills#skill-creator
claude plugin install skill-creator@daymade/claude-code-skills
```
### Step 2: Initialize Your First Skill
@@ -102,11 +102,11 @@ Follow the interactive prompts to select skills.
```bash
# Step 1: Add the marketplace
/plugin marketplace add daymade/claude-code-skills
claude plugin marketplace add daymade/claude-code-skills
# Step 2: Install skills you need
/plugin marketplace install daymade/claude-code-skills#github-ops
/plugin marketplace install daymade/claude-code-skills#markdown-tools
claude plugin install github-ops@daymade/claude-code-skills
claude plugin install markdown-tools@daymade/claude-code-skills
# ... add more as needed
# Step 3: Restart Claude Code
@@ -129,7 +129,7 @@ Follow the interactive prompts to select skills.
```bash
# Use the same install command to update
/plugin marketplace install daymade/claude-code-skills#skill-name
claude plugin install skill-name@daymade/claude-code-skills
```
---