staruhub/ClaudeSkills
Some sharing on Claude Skills
Deep Analysis
全面的Claude AI技能集合库,包含代码审查、API集成、文档处理、内容创建等8个专业技能
Core Features
代码审查专家
基于2025最佳实践的专业代码审查,8个审查维度
Coze API集成
字节跳动Coze平台完整集成指南
CrewAI开发者
多智能体AI系统构建框架
官方文档技能
支持DOCX、PDF、PPTX、XLSX格式
MCP构建器
官方Model Context Protocol服务器构建工具
播客生成器
使用火山引擎生成双人对话播客
Technical Implementation
克隆repository浏览技能和提示词
复制提示词自定义参数
通过API接口应用技能
迭代完善提示词
- 包含官方Anthropic认可的MCP构建器
- 8个专业技能覆盖全面场景
- 提供详细代码示例和使用案例
- 支持多语言(英文和中文)
- 代码审查和质量评估
- AI智能体系统构建
- 微信公众号内容创作
- MCP服务器开发
- 某些技能依赖第三方平台
- 播客生成仅支持中文
🤖 ClaudeSkills
A curated collection of skills, prompts, and best practices for Claude AI by Anthropic.
English | 简体中文
📖 About
ClaudeSkills is a comprehensive repository designed to help developers, researchers, and AI enthusiasts maximize their productivity with Claude AI. This collection includes:
- 🎯 Prompt Templates - Ready-to-use prompts for common tasks
- 🛠️ Skills & Techniques - Advanced techniques for better results
- 📚 Best Practices - Guidelines for effective Claude interactions
- 💡 Use Cases - Real-world examples and applications
- 🔧 Integration Guides - How to integrate Claude into your workflow
🚀 Quick Start
Prerequisites
- Access to Claude AI (via Claude.ai or Anthropic API)
- Basic understanding of prompt engineering
- (Optional) API key for programmatic access
Getting Started
-
Clone the repository
git clone https://github.com/staruhub/ClaudeSkills.git cd ClaudeSkills -
Browse the skills
- Navigate through different categories in the repository
- Each skill includes detailed documentation and examples
-
Try a skill
- Copy a prompt template
- Customize it for your specific use case
- Use it with Claude AI
📂 Repository Structure
ClaudeSkills/
├── prompts/ # Prompt templates by category
│ ├── coding/ # Programming and development
│ └── writing/ # Content creation and editing
├── skills/ # Claude Skills collection
│ ├── code-review/ # Code review expert skill
│ ├── coze-api/ # Coze API integration skill
│ ├── crewai-developer/ # CrewAI API skill
│ ├── document-skills/ # Anthropic official document skills
│ ├── flutter-api/ # Flutter API skill
│ ├── mcp-builder/ # MCP server builder skill (official)
│ ├── podcast/ # Podcast generator using Volcano Engine
│ └── wechat-article-writer/ # WeChat official account article writer
└── docs/ # Additional documentation
🎯 Available Skills
1. 🔍 Code Review Expert
Path: skills/code-review/
A professional code review skill that helps you conduct comprehensive, high-quality code reviews based on 2025 best practices.
Features:
- Structured 3-step review process
- 8 comprehensive review dimensions (functionality, quality, security, performance, testing, documentation, architecture, maintainability)
- Priority-based feedback (🔴 Must Fix, 🟡 Strongly Recommended, 🟢 Suggested, 💡 Optional)
- Constructive feedback guidelines
2. 🤖 Coze API Integration
Path: skills/coze-api/
Complete guide for integrating with Coze (扣子) AI agent platform by ByteDance.
Features:
- Chat API for conversational interactions
- Workflow API for executing workflows
- Message management and status tracking
- Support for both streaming and non-streaming modes
3. 🚢 CrewAI Developer
Path: skills/crewai-developer/
Skill for building multi-agent AI systems using CrewAI framework.
Features:
- Multi-agent collaboration patterns
- Task orchestration and workflow management
- Agent role definition and configuration
- Integration with various AI models
4. 📄 Document Skills (Official)
Path: skills/document-skills/
Anthropic's official document processing skills for various formats.
Features:
- DOCX: Word document creation and manipulation
- PDF: PDF generation and form handling
- PPTX: PowerPoint presentation creation
- XLSX: Excel spreadsheet operations
5. 📱 Flutter API
Path: skills/flutter-api/
Comprehensive Flutter development skill with API references.
Features:
- Flutter widget and API documentation
- Best practices for Flutter development
- Cross-platform mobile app development guidance
- State management patterns
6. 🔧 MCP Builder (Official)
Path: skills/mcp-builder/
Official skill for building high-quality Model Context Protocol (MCP) servers.
Features:
- Agent-centric design principles
- Support for Python (FastMCP) and Node.js/TypeScript
- Best practices for tool design
- Comprehensive evaluation guidelines
7. 🎙️ Podcast Generator
Path: skills/podcast/
Generate AI podcasts using Volcano Engine's podcast model.
Features:
- Dual-speaker dialogue generation
- Multiple audio formats (MP3, OGG, PCM, AAC)
- Adjustable speech rate and voice
- Streaming audio reception
- Resume from breakpoint support
8. ✍️ WeChat Article Writer
Path: skills/wechat-article-writer/
Professional WeChat official account article creation assistant.
Features:
- Convert web content, text, or images into WeChat articles
- Official copywriting style optimization
- Title optimization with proven formulas
- Content enrichment using search tools
- Quality checklist and style guide
💻 Usage Examples
Example 1: Using Code Review Skill
Simply upload your code or paste it in the conversation:
Please review this code for security issues and performance optimizations.
[Your code here]
The skill will automatically provide structured feedback with priority levels.
Example 2: Generating a Podcast
Generate a podcast about "The Future of AI" and save it as podcast.mp3
The podcast skill will create a dual-speaker dialogue in Chinese using Volcano Engine.
Example 3: Creating WeChat Articles
Convert this blog post into a WeChat official account article:
[Paste URL or content]
Target audience: Tech professionals
Style: Professional and informative
Example 4: Building an MCP Server
I want to build an MCP server for GitHub API integration.
Help me design the tools following best practices.
Example 5: Coze API Integration
import requests
url = "https://api.coze.cn/v3/chat"
headers = {
"Authorization": "Bearer YOUR_PAT_TOKEN",
"Content-Type": "application/json"
}
data = {
"bot_id": "your_bot_id",
"user_id": "user_123",
"stream": False,
"auto_save_history": True,
"additional_messages": [
{
"role": "user",
"content": "Hello!",
"content_type": "text"
}
]
}
response = requests.post(url, headers=headers, json=data)
print(response.json())
🤝 Contributing
We welcome contributions from the community! Here's how you can help:
- Fork the repository
- Create a feature branch (
git checkout -b feature/AmazingSkill) - Commit your changes (
git commit -m 'Add some AmazingSkill') - Push to the branch (
git push origin feature/AmazingSkill) - Open a Pull Request
Contribution Guidelines
- Ensure your skill/prompt is well-documented
- Include examples and use cases
- Test your prompts before submitting
- Follow the existing structure and formatting
- Add appropriate tags and categories
📋 Skill Categories
Our skills are organized into the following categories:
-
🔧 Development & Code Quality
- Code Review Expert
- Flutter API
- CrewAI Developer
-
🤖 AI & Integration
- Coze API Integration
- MCP Builder (Official)
-
📄 Document Processing
- Document Skills (DOCX, PDF, PPTX, XLSX)
-
✍️ Content Creation
- WeChat Article Writer
- Podcast Generator
-
🎙️ Media & Audio
- Podcast Generator (Volcano Engine)
🌟 Best Practices
- Be Specific - Provide clear context and requirements
- Use Examples - Show Claude what you want with examples
- Iterate - Refine your prompts based on results
- Structure - Use clear formatting and organization
- Context - Provide relevant background information
- Constraints - Specify limitations and requirements
📚 Resources
- Claude AI Official Documentation
- Anthropic API Reference
- Prompt Engineering Guide
- Model Context Protocol
🔗 Related Projects
- Awesome Claude - Curated list of Claude resources
- LangChain - Framework for LLM applications
- Anthropic Cookbook - Official examples
📄 License
This project is licensed under the MIT License - see the LICENSE file for details.
🙏 Acknowledgments
- Thanks to Anthropic for creating Claude AI
- Contributors who share their skills and prompts
- The AI community for continuous innovation
📞 Contact
- GitHub Issues - For bug reports and feature requests
- Discussions - For questions and community chat
- Twitter - @staruhub (if applicable)
⭐ Star History
If you find this repository helpful, please consider giving it a star! ⭐
Made with ❤️ by the Claude community
Last updated: October 31, 2024

