By MarcelLeon
Enables Chinese-language workflow automation and task execution with localized agent skills. Covers document creation (DOCX, PPTX, PDF, XLSX), generative art and UI design, MCP server development, Slack GIFs, web testing, and skill-file optimization.
使用 p5.js 创建具有确定性随机和交互式参数探索的算法艺术。当用户请求使用代码创作艺术、生成式艺术、算法艺术、流场或粒子系统时使用此技能。创建原创的算法艺术而非复制现有艺术家的作品,以避免版权侵犯。
将 Anthropic 的官方品牌颜色和排版应用于任何可能受益于 Anthropic 外观和感觉的 artifact。当品牌颜色或风格指南、视觉格式或公司设计标准适用时使用它。
使用设计哲学创建精美的 .png 和 .pdf 文档视觉艺术。当用户要求创建海报、艺术作品、设计或其他静态作品时,您应该使用此技能。创建原创的视觉设计,绝不复制现有艺术家的作品以避免侵犯版权。
引导用户通过结构化工作流共同撰写文档。当用户想要编写文档、提案、技术规范、决策文档或类似的结构化内容时使用。此工作流帮助用户高效传递上下文、通过迭代精炼内容,并验证文档对读者是否有效。当用户提到编写文档、创建提案、起草规范或类似文档任务时触发。
当用户需要创建、读取、编辑或转换 Word 文档(.docx)时必须使用本技能。触发场景包括:提到 Word/docx、报告/备忘录/正式函件输出、目录和页眉页脚、批注或修订模式、替换文档内容、插入或替换图片、从 docx 提取结构化内容等。若目标交付物是 .docx,本技能应优先触发。不要用于 PDF、电子表格、Google Docs API 或无关编程任务。
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimnpx claudepluginhub marcelleon/skills-zhBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
这是 Claude Skills 样例库的中文适配版本,基于 Anthropic 官方 Skills 仓库改造而成。
本项目对所有 16 个官方 skills 进行了完整的中文化,包括:
本项目中的 skills 默认是为 Claude 模型编写的,文档中多处包含"Claude"字样。如果您想将这些 skills 适配到其他大语言模型,可以使用以下命令批量替换:
# 替换所有 skills 文件中的 "Claude" 为您的模型名称
# 注意:此命令会区分大小写,精确匹配 "Claude"
find ./skills -type f \( -name "*.md" -o -name "*.py" -o -name "*.js" -o -name "*.html" \) \
-exec sed -i '' 's/Claude/[您的大模型名称]/g' {} +
# 示例:替换为 "GPT"
find ./skills -type f \( -name "*.md" -o -name "*.py" -o -name "*.js" -o -name "*.html" \) \
-exec sed -i '' 's/Claude/GPT/g' {} +
# 示例:替换为 "Qwen"
find ./skills -type f \( -name "*.md" -o -name "*.py" -o -name "*.js" -o -name "*.html" \) \
-exec sed -i '' 's/Claude/Qwen/g' {} +
# Windows 下使用 sed(无需 '' 参数)
find ./skills -type f \( -name "*.md" -o -name "*.py" -o -name "*.js" -o -name "*.html" \) \
-exec sed -i 's/Claude/[您的大模型名称]/g' {} +
如果需要同时替换不同大小写形式(如 Claude, claude, CLAUDE),使用以下命令:
# macOS/Linux - 替换所有大小写变体
find ./skills -type f \( -name "*.md" -o -name "*.py" -o -name "*.js" -o -name "*.html" \) \
-exec sed -i '' -E 's/Claude|claude|CLAUDE/[您的大模型名称]/g' {} +
# Windows (Git Bash/WSL)
find ./skills -type f \( -name "*.md" -o -name "*.py" -o -name "*.js" -o -name "*.html" \) \
-exec sed -i -E 's/Claude|claude|CLAUDE/[您的大模型名称]/g' {} +
⚠️ 重要提示:
skills-zh/
├── README.md # 本文件(中英文双语)
├── skills/ # 所有 skills(已中文化)
│ ├── skill-creator/ # Skill 创建工具
│ ├── docx/ # Word 文档生成
│ ├── pdf/ # PDF 文档生成
│ ├── pptx/ # PowerPoint 演示文稿生成
│ ├── xlsx/ # Excel 表格生成
│ ├── mcp-builder/ # MCP 服务器构建
│ ├── webapp-testing/ # Web 应用测试
│ ├── web-artifacts-builder/ # Web 工件构建
│ ├── internal-comms/ # 内部沟通
│ ├── brand-guidelines/ # 品牌指南
│ ├── canvas-design/ # 画布设计
│ ├── theme-factory/ # 主题工厂
│ ├── slack-gif-creator/ # Slack GIF 创建
│ ├── algorithmic-art/ # 算法艺术
│ ├── doc-coauthoring/ # 文档共同撰写
│ └── frontend-design/ # 前端设计
├── spec/ # Agent Skills 规范
└── template/ # Skill 模板
如果您使用的 AI 平台支持 Skills 功能,可以直接将 skills/ 目录下的任何 skill 文件夹上传使用。
即使平台不支持 Skills,您也可以将 SKILL.md 文件中的内容作为高质量提示词模板参考。
cd skills/skill-creator
python3 scripts/init_skill.py
# 按提示输入 skill 名称和描述
欢迎提交 Issue 和 Pull Request 来改进中文化质量或添加新的中文 skills。
This is a Chinese-adapted version of the Claude Skills repository, based on the official Anthropic Skills repository.
This project provides complete Chinese localization for all 16 official skills, including:
The skills in this project are written for Claude by default, with "Claude" mentioned throughout the documentation. If you want to adapt these skills for other large language models, use the following commands for batch replacement:
# Replace "Claude" with your model name in all skills files
# Note: This command is case-sensitive and matches "Claude" exactly
Anthropic's open-source skill for authoring new Agent Skills. For finance devs and power users building their own skills.
18 universal AI skills for Claude Code — skill creation, deep research, strategic planning, content processing, solution architecture, and orchestration workflows
Core skills library for Claude Code: TDD, debugging, collaboration patterns, and proven techniques
Harness-native ECC operator layer - 67 agents, 277 skills, 92 legacy command shims, reusable hooks, rules, selective install profiles, and production-ready workflows for Claude Code, Codex, OpenCode, Cursor, and related agent harnesses
Plugin-safe Claude Code distribution of Agentic Awesome Skills with 1,894 supported skills.
Tools to maintain and improve CLAUDE.md files - audit quality, capture session learnings, and keep project memory current.