Co-Pilot / 辅助式
更新于 a month ago

claude-codex-skills-directory

MmOdrA40
0.0k
modra40/claude-codex-skills-directory
84
Agent 评分

💡 摘要

这个技能目录为Claude AI提供了多个工程领域的高级专业知识。

🎯 适合人群

人工智能/机器学习工程师全栈开发人员DevOps专业人员技术团队负责人软件架构师

🤖 AI 吐槽:看起来很能打,但别让配置把人劝退。

安全分析中风险

风险:Medium。建议检查:是否执行 shell/命令行指令;是否发起外网请求(SSRF/数据外发);文件读写范围与路径穿越风险。以最小权限运行,并在生产环境启用前审计代码与依赖。

🎯 Claude and Codex Skills Directory

Elite Engineering Mastery Collection for Claude AI / ChatGPT Codex

Transform Claude AI / ChatGPT Codex into a senior/lead engineer across 8 specialized domains

License: MIT Skills Count Languages Maintained PRs Welcome

Quick StartSkills OverviewUsage ExamplesContributing


What is This?

The Claude Codex Skills Directory is a comprehensive collection of 8 mastery-level expertise systems that transform Claude AI / ChatGPT Codex into a world-class senior/lead engineer across multiple technology domains. Each skill embodies production experience with battle-tested patterns, anti-patterns to avoid, debugging strategies, and real-world decision frameworks.

📊 Skills at a Glance

| Metric | Count | |--------|-------| | Total Skills | 8 specialized domains | | Reference Docs | 64+ comprehensive guides | | Automation Scripts | 8 helper tools | | Technologies Covered | 30+ frameworks and libraries | | Expertise Level | Senior/lead engineer per skill | | Documentation | 10,000+ lines of battle-tested knowledge |

🎓 Skills Overview

🚀 Quick Start

Using a Single Skill

  1. Point Claude to the relevant skill directory (e.g., ai-ml-mastery-skill/)
  2. Claude will adopt the persona and expertise defined in SKILL.md
  3. Reference files in references/ for deep-dive knowledge

Using Multiple Skills

Load multiple skills for cross-domain projects:

- golang-mastery-skill (backend API)
- react-tanstack-mastery-skill (frontend)
- rabbitmq-mastery-skill (message broker)

Example Prompt

"Load the AI/ML mastery skill and help me build a production-ready
sentiment analysis model using PyTorch. Include proper error handling,
logging, and Docker deployment."

📝 Usage Examples

Example 1: AI/ML - Building Sentiment Analysis with PyTorch

Scenario: You need a production-ready sentiment analysis model

Load Skill: ai-ml-mastery-skill

Ask Claude:

"Build a sentiment analysis model using PyTorch and transformers.
Include:
- Proper training loop with validation
- Error handling and logging
- Model checkpointing
- Docker deployment configuration
- Inference API endpoint"

Expected Output: Claude will provide expert-level implementation with:

  • Clean PyTorch code following best practices
  • Transformer-based architecture (BERT/RoBERTa)
  • Production-ready error handling
  • MLOps deployment patterns
  • Performance optimization tips

Example 2: Full-Stack - Microservices Architecture

Scenario: Build a microservices system with async communication

Load Skills:

  • golang-mastery-skill (backend services)
  • react-tanstack-mastery-skill (frontend dashboard)
  • rabbitmq-mastery-skill (message broker)

Ask Claude:

"Design a microservices architecture for an e-commerce platform with:
- Go backend services (orders, inventory, payments)
- RabbitMQ for async communication
- React frontend with TanStack Query
- Docker Compose setup"

Expected Output: Claude will design:

  • Clean Go microservices architecture
  • RabbitMQ messaging patterns (work queues, pub/sub, RPC)
  • React frontend with proper state management
  • Production-ready Docker setup
  • API design and error handling

Example 3: Code Review - Rust Production Readiness

Scenario: Review existing Rust codebase for production deployment

Load Skill: rust-mastery-skill

Ask Claude:

"Review this Rust codebase for production readiness. Check for:
- Memory safety issues and potential panics
- Proper error handling with thiserror/anyhow
- Performance bottlenecks
- Security vulnerabilities
- Clean code violations
- Missing test coverage"

Expected Output: Claude will provide senior-level review with:

  • Identification of unsafe patterns
  • Error handling improvements
  • Performance optimization suggestions
  • Security hardening recommendations
  • Test coverage analysis
  • Refactoring suggestions

💡 Key Features

  • Battle-Tested Patterns: Proven solutions from real production systems
  • Anti-Patterns Documented: Learn what NOT to do and why
  • Decision Frameworks: Clear guidance for architectural choices
  • KISS Principle: Keep It Simple, Stupid - no over-engineering
  • YAGNI Enforcement: You Aren't Gonna Need It - build what's required
  • Explicit over Implicit: Clear, readable code without magic
  • Production-Ready Focus: Security, error handling, logging, monitoring
  • Library Curation: Battle-tested dependencies, not trendy experiments
  • Debugging Guides: Systematic troubleshooting strategies
  • Code Review Standards: Senior-level review checklists

📖 Philosophy & Values

All skills follow these core principles:

1. KISS - Keep It Simple, Stupid

  • Simplicity over cleverness
  • Readable code over "smart" code
  • Boring technology that works

2. YAGNI - You Aren't Gonna Need It

  • No premature optimization
  • Build for today's requirements
  • Add complexity only when proven necessary

3. Explicit over Implicit

  • Clear variable names
  • No hidden magic or DSLs
  • Obvious code flow

4. Production-Ready by Default

  • Proper error handling
  • Logging and monitoring
  • Security hardening
  • Performance testing

5. Battle-Tested Technology

  • Proven libraries and frameworks
  • Stability over bleeding edge
  • Community support and documentation

📂 Repository Structure

claude-codex-skills-directory/
├── README.md                           # This file
├── assets/
│   └── logos/                          # Technology logos
│       ├── python.svg
│       ├── bun.svg
│       ├── golang.svg
│       ├── nuxt.svg
│       ├── rabbitmq.svg
│       ├── react.svg
│       ├── rust.svg
│       └── solidjs.svg
│
├── ai-ml-mastery-skill/
│   ├── SKILL.md                        # AI/ML expertise guide
│   └── references/                     # 9 deep-dive docs
│       ├── deep-learning.md            # PyTorch, TensorFlow, JAX
│       ├── transformers-llm.md         # LLMs, fine-tuning, PEFT
│       ├── computer-vision.md          # Object detection, segmentation
│       ├── machine-learning.md         # sklearn, XGBoost, ensembles
│       ├── nlp.md                      # Text processing, embeddings
│       ├── mlops.md                    # Deployment, monitoring
│       ├── clean-code.md               # Patterns, anti-patterns
│       ├── debugging.md                # Profiling, optimization
│       └── data-engineering.md         # pandas, polars, dask
│
├── bunjs-mastery-skill/
│   ├── SKILL.md
│   ├── references/                     # 4 references
│   │   ├── clean-code-patterns.md      # Design patterns
│   │   ├── debugging-guide.md
│   │   ├── docker-patterns.md          # Advanced Docker
│   │   └── testing-strategy.md
│   ├── scripts/                        # 2 automation scripts
│   │   ├── init-project.sh             # Project bootstrap
│   │   └── healthcheck.ts              # Health check template
│   └── assets/                         # Project templates
│       └── proj
五维分析
清晰度9/10
创新性8/10
实用性9/10
完整性8/10
可维护性8/10
优缺点分析

优点

  • 涵盖多个领域的全面技能。
  • 记录了经过验证的模式和反模式。
  • 专注于生产就绪和最佳实践。

缺点

  • 可能需要大量的设置和配置。
  • 对不熟悉人工智能/机器学习的新用户有学习曲线。
  • 文档对初学者来说可能会令人感到困惑。

相关技能

agno

S
toolCode Lib / 代码库
90/ 100

“它承诺成为智能体领域的Kubernetes,但得看开发者有没有耐心学习又一个编排层。”

advanced-evaluation

A
toolCo-Pilot / 辅助式
82/ 100

“这是一份精彩绝伦的教科书章节,可惜忘了附上教科书本身——或者开课通知。”

custom-plugin-react

B
toolCo-Pilot / 辅助式
78/ 100

“这个插件就像React的瑞士军刀,但它有说明书吗?”

免责声明:本内容来源于 GitHub 开源项目,仅供展示和评分分析使用。

版权归原作者所有 mOdrA40.