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

@@ -66,14 +66,14 @@ if ($isInteractive) {
}
$commands = @()
$commands += "claude plugin marketplace add daymade/claude-code-skills"
$commands += "claude plugin marketplace add https://github.com/daymade/claude-code-skills"
switch ($choice) {
"1" {
Write-Host ""
Write-Cyan "Installing skill-creator..."
Write-Host ""
$commands += "claude plugin install skill-creator@daymade/claude-code-skills"
$commands += "claude plugin install skill-creator@daymade-skills"
$afterInstall = @"
After installation, ask Claude Code:
@@ -91,7 +91,7 @@ Claude Code will guide you through the skill creation process!
$skills = @("skill-creator", "github-ops", "markdown-tools", "mermaid-tools",
"statusline-generator", "teams-channel-post-writer", "repomix-unmixer", "llm-icon-finder")
foreach ($skill in $skills) {
$commands += "claude plugin install $skill@daymade/claude-code-skills"
$commands += "claude plugin install $skill@daymade-skills"
}
}
"3" {
@@ -127,7 +127,7 @@ Claude Code will guide you through the skill creation process!
foreach ($num in $selections) {
if ($skillMap.ContainsKey($num)) {
$commands += "claude plugin install $($skillMap[$num])@daymade/claude-code-skills"
$commands += "claude plugin install $($skillMap[$num])@daymade-skills"
}
}
}

View File

@@ -64,8 +64,8 @@ case $choice in
echo ""
echo "Run these commands in Claude Code:"
echo ""
echo -e "${YELLOW}claude plugin marketplace add daymade/claude-code-skills${NC}"
echo -e "${YELLOW}claude plugin install skill-creator@daymade/claude-code-skills${NC}"
echo -e "${YELLOW}claude plugin marketplace add https://github.com/daymade/claude-code-skills${NC}"
echo -e "${YELLOW}claude plugin install skill-creator@daymade-skills${NC}"
echo ""
echo -e "${GREEN}After installation, ask Claude Code:${NC}"
echo " \"Create a new skill called my-awesome-skill in ~/my-skills\""
@@ -80,10 +80,10 @@ case $choice in
echo ""
echo "Run these commands in Claude Code:"
echo ""
echo -e "${YELLOW}claude plugin marketplace add daymade/claude-code-skills${NC}"
echo -e "${YELLOW}claude plugin marketplace add https://github.com/daymade/claude-code-skills${NC}"
echo ""
for skill in skill-creator github-ops markdown-tools mermaid-tools statusline-generator teams-channel-post-writer repomix-unmixer llm-icon-finder; do
echo -e "${YELLOW}claude plugin install ${skill}@daymade/claude-code-skills${NC}"
echo -e "${YELLOW}claude plugin install ${skill}@daymade-skills${NC}"
done
;;
3)
@@ -109,13 +109,13 @@ case $choice in
echo ""
echo "Run these commands in Claude Code:"
echo ""
echo -e "${YELLOW}claude plugin marketplace add daymade/claude-code-skills${NC}"
echo -e "${YELLOW}claude plugin marketplace add https://github.com/daymade/claude-code-skills${NC}"
echo ""
SKILLS=(skill-creator github-ops markdown-tools mermaid-tools statusline-generator teams-channel-post-writer repomix-unmixer llm-icon-finder)
for num in $selections; do
idx=$((num-1))
if [ $idx -ge 0 ] && [ $idx -lt 8 ]; then
echo -e "${YELLOW}claude plugin install ${SKILLS[$idx]}@daymade/claude-code-skills${NC}"
echo -e "${YELLOW}claude plugin install ${SKILLS[$idx]}@daymade-skills${NC}"
fi
done
;;