docs: Update marketplace URL format to full GitHub URL

- Update plugin marketplace add command from 'daymade/claude-code-skills' to full GitHub URL
- Add marketplace name clarification (daymade-skills from marketplace.json)
- Update all plugin install commands to use @daymade-skills suffix
- Standardize marketplace references across all documentation files
- Update installation scripts to use new URL format

Affected files:
- CLAUDE.md: Development commands and skill creation workflow
- CONTRIBUTING.md: Contribution guidelines
- QUICKSTART.md: Quick start guide
- QUICKSTART.zh-CN.md: Chinese quick start guide
- README.md: Main documentation
- README.zh-CN.md: Chinese documentation
- demos/index.html: Demo page
- scripts/install.ps1: Windows installation script
- scripts/install.sh: Unix installation script

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

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
daymade
2025-12-20 23:22:51 +08:00
parent 4e3a54175e
commit 6a94cfcc69
9 changed files with 86 additions and 73 deletions

View File

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