快速入门指南
在不到 2 分钟的时间内开始使用 Claude Code 技能市场!
在不到 2 分钟的时间内开始使用 Claude Code 技能市场!
Real data. Real impact.
Emerging
Developers
Per week
Excellent
Skills give you superpowers. Install in 30 seconds.
在不到 2 分钟的时间内开始使用 Claude Code 技能市场!
想要创建自己的技能?从这里开始!
# 添加市场 claude plugin marketplace add https://github.com/daymade/claude-code-skills # Marketplace 名称:daymade-skills(来自 marketplace.json) # 安装 skill-creator claude plugin install skill-creator@daymade-skills
# 从模板创建一个新技能 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
编辑
~/my-skills/my-first-skill/SKILL.md:
# 检查你的技能是否符合质量标准 skill-creator/scripts/quick_validate.py ~/my-skills/my-first- ## Code Examples ### README.md
This directory contains automated demonstrations of each skill using VHS (Video Home System) by Charmbracelet.
VHS allows you to write terminal recordings as code, making demos reproducible, version-controllable, and typo-free.
demos/ ├── skill-creator/ │ ├── init-skill.tape # Initialize a new skill │ ├── validate-skill.tape # Validate skill quality │ └── package-skill.tape # Package for distribution ├── github-ops/ │ └── create-pr.tape # Create pull requests ├── markdown-tools/ │ └── convert-docs.tape # Convert documents └── generate_all_demos.sh # Generate all GIFs
Install VHS:
macOS:
brew install vhs
Linux (with Go):
go install github.com/charmbracelet/vhs@latest
Or download from: https://github.com/charmbracelet/vhs/releases
### generate_all_demos.sh
#!/bin/bash set -e
echo "================================================" echo "Generating Claude Code Skills Demo GIFs" echo "================================================" echo ""
GREEN='\033[0;32m' YELLOW='\033[1;33m' RED='\033[0;31m' NC='\033[0m' # No Color
if ! command -v vhs &> /dev/null; then echo -e "${RED}Error: VHS is not installed!${NC}" echo "" echo "Install VHS to generate demo GIFs:" echo "" echo "macOS:" echo " brew install vhs" echo "" echo "Linux (with Go):" echo " go install github.com/charmbracelet/vhs@latest" echo "" echo "Or download from: https://github.com/charmbracelet/vhs/releases" echo "" exit 1 fi
echo -e "${GREEN}✓ VHS found${NC}" echo ""
TAPE_FILES=$(find demos -name "*.tape" -type f | sort) TOTAL=$(echo "$TAPE_FILES" | wc -l | tr -d ' ') CURRENT=0
echo "Found $TOTAL demo tape files" echo ""
for tape_fi
### index.html
No automatic installation available. Please visit the source repository for installation instructions.
View Installation InstructionsThe Claude Code Skills Marketplace
Discover and install production-ready AI capabilities in 60 seconds. Part of the Torly.ai family.
© 2026 Torly.ai. All rights reserved.