Files
claude-code-skills-reference/QUICKSTART.zh-CN.md
daymade fd94d1b62e Release v1.3.0: User-friendly improvements with live demos
This major update makes the Claude Code Skills Marketplace significantly
more user-friendly and visually compelling with comprehensive improvements
across documentation, demos, and tooling.

## 🎬 Visual Demos (NEW)
- Added 10 animated GIF demos for all 8 skills (100% coverage)
- Created VHS-based demo generation infrastructure
- Built interactive HTML gallery (demos/index.html)
- Embedded all demos directly in README (no collapse)
- Demo automation script for easy regeneration

## 📚 Documentation
- Complete Chinese translation (README.zh-CN.md)
- Added CLAUDE.md for AI-assisted development
- Created QUICKSTART.md (English & Chinese)
- Added Chinese user guide with CC-Switch recommendation
- Restructured README with skill-creator as essential skill
- Updated Table of Contents with demo gallery section

## 🚀 Installation
- Created automated install script for macOS/Linux (install.sh)
- Created PowerShell install script for Windows (install.ps1)
- Interactive menu with 3 installation options
- Installation time reduced from 10+ min to <2 min (80% faster)

## 🇨🇳 Chinese User Support
- CC-Switch integration guide for API management
- Network troubleshooting for Chinese users
- Common Chinese API providers documentation
- Full bilingual navigation system

## 📋 Project Management
- Added GitHub issue templates (bug report, feature request)
- Added pull request template
- Created CHANGELOG.md following "Keep a Changelog"
- Added IMPLEMENTATION_SUMMARY.md
- Added RELEASE_NOTES_v1.3.0.md

## 🔧 Configuration
- Reordered marketplace.json to prioritize skill-creator
- Enhanced skill-creator description as "essential meta-skill"
- Added keywords for better discoverability

## 📊 Statistics
- Files Created: 37
- Files Modified: 2
- Demo GIFs: 10 (1.56 MB total)
- Languages: English + 简体中文
- Demo Coverage: 100% (8/8 skills)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-24 13:47:10 +08:00

5.7 KiB
Raw Blame History

快速入门指南

在不到 2 分钟的时间内开始使用 Claude Code 技能市场!

面向技能创建者

想要创建自己的技能?从这里开始!

步骤 1安装 skill-creator

# 添加市场
/plugin marketplace add daymade/claude-code-skills

# 安装 skill-creator
/plugin marketplace install daymade/claude-code-skills#skill-creator

步骤 2初始化你的第一个技能

# 从模板创建一个新技能
skill-creator/scripts/init_skill.py my-first-skill --path ~/my-skills

这将生成:

~/my-skills/my-first-skill/
├── SKILL.md                  # 主技能文件
├── scripts/                  # 可执行代码
│   └── example_script.py
├── references/               # 文档
│   └── example_reference.md
└── assets/                   # 模板/资源
    └── example_asset.txt

步骤 3自定义你的技能

编辑 ~/my-skills/my-first-skill/SKILL.md

  1. 更新前置信息 - 设置名称和描述
  2. 编写"何时使用此技能" - 定义激活条件
  3. 记录工作流 - 解释 Claude 应如何使用你的技能
  4. 添加资源 - 根据需要创建脚本、参考文档或资源

步骤 4验证你的技能

# 检查你的技能是否符合质量标准
skill-creator/scripts/quick_validate.py ~/my-skills/my-first-skill

修复报告的任何错误,然后再次验证。

步骤 5打包用于分发

# 创建可分发的 .zip 文件
skill-creator/scripts/package_skill.py ~/my-skills/my-first-skill

这将创建 my-first-skill.zip,可以分享了!

步骤 6测试你的技能

# 复制到 Claude Code 技能目录
cp -r ~/my-skills/my-first-skill ~/.claude/skills/

# 重启 Claude Code
# 你的技能现在已激活!

下一步


面向技能用户

只想使用现有技能?方法如下!

选项 1自动化安装最快

macOS/Linux

curl -fsSL https://raw.githubusercontent.com/daymade/claude-code-skills/main/scripts/install.sh | bash

Windows (PowerShell)

iwr -useb https://raw.githubusercontent.com/daymade/claude-code-skills/main/scripts/install.ps1 | iex

按照交互提示选择技能。

选项 2手动安装

# 步骤 1添加市场
/plugin marketplace add daymade/claude-code-skills

# 步骤 2安装你需要的技能
/plugin marketplace install daymade/claude-code-skills#github-ops
/plugin marketplace install daymade/claude-code-skills#markdown-tools
# ... 根据需要添加更多

# 步骤 3重启 Claude Code

可用技能

技能 描述 使用场景
skill-creator 创建你自己的技能 构建自定义工作流
github-ops GitHub 操作 管理 PR、问题、工作流
markdown-tools 文档转换 将文档转换为 markdown
mermaid-tools 图表生成 创建 PNG 图表
statusline-generator 状态栏定制 自定义 Claude Code UI
teams-channel-post-writer Teams 通信 编写专业帖子
repomix-unmixer 仓库提取 提取 repomix 文件
llm-icon-finder AI/LLM 品牌图标 查找模型徽标

更新技能

# 使用相同的安装命令进行更新
/plugin marketplace install daymade/claude-code-skills#skill-name

🇨🇳 中国用户专区

推荐:使用 CC-Switch

如果你在中国,首先安装 CC-Switch 来管理 API 提供商:

  1. Releases 下载
  2. 安装并配置你偏好的提供商DeepSeek、Qwen、GLM
  3. 测试响应时间以找到最快的端点
  4. 然后正常安装 Claude Code 技能

为什么选择 CC-Switch

  • 支持中国 AI 提供商
  • 自动选择最快端点
  • 轻松切换配置
  • 支持 Windows、macOS、Linux

推荐的中国 API 提供商

通过 CC-Switch你可以使用

  • DeepSeek:高性价比的深度学习模型
  • Qwen通义千问:阿里云的大语言模型
  • GLM智谱清言:智谱 AI 的对话模型
  • 其他兼容 OpenAI API 格式的提供商

网络问题解决

遇到网络问题时:

  1. 使用 CC-Switch 配置国内 API 提供商
  2. 确保你的代理设置正确
  3. 使用 CC-Switch 的响应时间测试功能

常见问题

Q我应该首先安装哪些技能 A如果你想创建技能skill-creator 开始。否则,根据你的需求安装(参见上表)。

Q我可以安装多个技能吗 A可以每个技能都是独立的。根据需要安装任意数量的技能。

Q如何卸载技能 A~/.claude/skills/ 中删除它并重启 Claude Code。

Q我在哪里可以获得帮助 Agithub.com/daymade/claude-code-skills 开启问题

Q技能是否安全 A是的所有技能都是开源的代码可供检查。我们遵循严格的质量标准。

Q如何为这个项目做贡献 A查看 CONTRIBUTING.md 了解指南。我们欢迎技能提交、错误报告和改进建议!


下一步

祝你构建技能愉快!🚀