Co-Pilot
Updated a month ago

claude-codex-skills-directory

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

πŸ’‘ Summary

This skill directory equips Claude AI with mastery-level expertise across multiple engineering domains.

🎯 Target Audience

AI/ML EngineersFull-Stack DevelopersDevOps ProfessionalsTechnical Team LeadsSoftware Architects

πŸ€– AI Roast: β€œPowerful, but the setup might scare off the impatient.”

Security AnalysisMedium Risk

Risk: Medium. Review: shell/CLI command execution; outbound network access (SSRF, data egress); filesystem read/write scope and path traversal. Run with least privilege and audit before enabling in production.

🎯 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 Start β€’ Skills Overview β€’ Usage Examples β€’ Contributing


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
5-Dim Analysis
Clarity9/10
Novelty8/10
Utility9/10
Completeness8/10
Maintainability8/10
Pros & Cons

Pros

  • Comprehensive skill coverage across multiple domains.
  • Battle-tested patterns and anti-patterns documented.
  • Focus on production readiness and best practices.

Cons

  • May require significant setup and configuration.
  • Learning curve for new users unfamiliar with AI/ML.
  • Documentation could be overwhelming for beginners.

Related Skills

agno

S
toolCode Lib
90/ 100

β€œIt promises to be the Kubernetes for agents, but let's see if developers have the patience to learn yet another orchestration layer.”

advanced-evaluation

A
toolCo-Pilot
82/ 100

β€œIt's a brilliant textbook chapter that forgot to include the actual textbookβ€”or the class.”

custom-plugin-react

B
toolCo-Pilot
78/ 100

β€œThis plugin is like a Swiss Army knife for React, but does it come with a manual?”

Disclaimer: This content is sourced from GitHub open source projects for display and rating purposes only.

Copyright belongs to the original author mOdrA40.