$git clone https://github.com/manutej/luxor-claude-marketplaceProfessional Claude Code marketplace with 140 development tools: 67 skills, 28 commands, 30 agents, 15 workflows
| 1 | # LUXOR Claude Code Marketplace |
| 2 | |
| 3 | > Professional Claude Code plugins covering the complete software development lifecycle |
| 4 | |
| 5 | [](https://github.com/luxor/luxor-claude-marketplace) |
| 6 | [](https://github.com/luxor/luxor-claude-marketplace) |
| 7 | [](LICENSE) |
| 8 | |
| 9 | ## 🌩️ LUXOR: Cheat Codes for Claude Code |
| 10 | |
| 11 | > **"Don't just chat with code. Equip it."** |
| 12 | |
| 13 | We've all been there. You ask Claude to scaffold a backend, and it gives you a generic Express server from 2021. You ask for a "modern" frontend, and it hallucinates a library that doesn't exist anymore. |
| 14 | |
| 15 | **Claude is a genius, but it's a generalist.** It lacks the *domain-specific context*—the "muscle memory"—of a Senior Engineer who has spent 10 years in the trenches. |
| 16 | |
| 17 | **We built this LUXOR plugin to fix that.** |
| 18 | |
| 19 | Think of this repository as a curated collection of "Cheat Codes" (Plugins, Skills, Agents) that force Claude to adhere to **production-grade standards** across every part of the stack. |
| 20 | |
| 21 | When you install these plugins, you aren't just adding tools. You are unlocking **God Mode** for specific domains. |
| 22 | |
| 23 | --- |
| 24 | |
| 25 | |
| 26 | ## 🚀 Quick Start |
| 27 | |
| 28 | ### Install Entire Marketplace |
| 29 | |
| 30 | ```bash |
| 31 | # Clone marketplace |
| 32 | git clone https://github.com/luxor/luxor-claude-marketplace.git |
| 33 | cd luxor-claude-marketplace |
| 34 | |
| 35 | # Install all plugins (one-liner) |
| 36 | for plugin in plugins/*/; do (cd "$plugin" && ./install.sh); done |
| 37 | ``` |
| 38 | |
| 39 | ### Install Individual Plugin |
| 40 | |
| 41 | ```bash |
| 42 | # Install just frontend skills |
| 43 | cd luxor-claude-marketplace/plugins/luxor-frontend-essentials |
| 44 | ./install.sh |
| 45 | |
| 46 | # Restart Claude Code |
| 47 | ``` |
| 48 | |
| 49 | ### Install Featured Bundle |
| 50 | |
| 51 | ```bash |
| 52 | # Install top 4 featured plugins |
| 53 | cd luxor-claude-marketplace/plugins |
| 54 | for plugin in luxor-frontend-essentials luxor-backend-toolkit luxor-devops-suite luxor-skill-builder; do |
| 55 | (cd "$plugin" && ./install.sh) |
| 56 | done |
| 57 | ``` |
| 58 | |
| 59 | --- |
| 60 | ## 🎮 Choose Your Skill Tree |
| 61 | |
| 62 | I've organized the marketplace into specialized "cartridges" you can load into Claude. Install them all to become a full-stack army, or pick the specific cheat codes you need right now. |
| 63 | |
| 64 | ### 🎨 The Frontend Master |
| 65 | |
| 66 | *Unlock the ability to ship pixel-perfect UIs without fighting the CSS.* |
| 67 | |
| 68 | > **The Problem:** Claude struggles with consistent design systems and modern frameworks. |
| 69 | > **The Cheat Code:** `luxor-frontend-essentials` |
| 70 | > **Powers Unlocked:** |
| 71 | > * ⚡ **Next.js & React Patterns** that actually scale. |
| 72 | > * 📱 **Mobile-First Mental Models** injected directly into the agent. |
| 73 | > * 🎨 **Tailwind Wizardry** that avoids clutter. |
| 74 | > |
| 75 | > |
| 76 | |
| 77 | ### ⚙️ The Backend Architect |
| 78 | |
| 79 | *Build systems that survive the "Hacker News Hug of Death".* |
| 80 | |
| 81 | > **The Problem:** AI code is often insecure or unoptimized. |
| 82 | > **The Cheat Code:** `luxor-backend-toolkit` |
| 83 | > **Powers Unlocked:** |
| 84 | > * 🛡️ **Rust & Go** systems programming expertise. |
| 85 | > * 🕸️ **Microservices Architecture** (gRPC, GraphQL) best practices. |
| 86 | > * 🔐 **OAuth2 & Auth** flows that are actually secure. |
| 87 | > |
| 88 | > |
| 89 | |
| 90 | ### 🚀 The DevOps Commander |
| 91 | |
| 92 | *Infrastructure as Code, minus the headache.* |
| 93 | |
| 94 | > **The Problem:** Asking an LLM to write Terraform is usually a recipe for a broken state file. |
| 95 | > **The Cheat Code:** `luxor-devops-suite` |
| 96 | > **Powers Unlocked:** |
| 97 | > * 🐳 **Docker & K8s Orchestration** that works on the first try. |
| 98 | > * ☁️ **AWS Architecture** patterns (Standardized). |
| 99 | > * 🔄 **CI/CD Pipelines** that don't fail silently. |
| 100 | > |
| 101 | > |
| 102 | |
| 103 | --- |
| 104 | |
| 105 | ## ⚡ Quick Start: Activate Cheat Codes |
| 106 | |
| 107 | You don't need to configure complex files. Just run the install script for the powers you want. |
| 108 | |
| 109 | **1. Clone the Cartridge Library** |
| 110 | |
| 111 | ```bash |
| 112 | git clone https://github.com/luxor/luxor-claude-marketplace.git |
| 113 | cd luxor-claude-marketplace |
| 114 | |
| 115 | ``` |
| 116 | |
| 117 | **2. Load a Specific Cheat Code (e.g., Frontend)** |
| 118 | |
| 119 | ```bash |
| 120 | cd plugins/luxor-frontend-essentials |
| 121 | ./install.sh |
| 122 | |
| 123 | ``` |
| 124 | |
| 125 | **3. Or... Unlock Everything (Full Stack God Mode)** |
| 126 | |
| 127 | ```bash |
| 128 | # Warning: This turns Claude into a beast. |
| 129 | for plugin in plugins/*/; do (cd "$plugin" && ./install.sh); done |
| 130 | |
| 131 | ``` |
| 132 | |
| 133 | --- |
| 134 | |
| 135 | ## 🧠 The Meta-Layer: Build Your Own Cheats |
| 136 | |
| 137 | The crown jewel of this repo is the **`luxor-skill-builder`**. |
| 138 | |
| 139 | I realized that eventually, you'll want to teach Claude your *own* secret techniques. This plugin includes **30+ Agents** and **15 Workflows** designed specifically to help you author new skills. |
| 140 | |
| 141 | * **The Architect Agent:** Helps you design the folder structure. |
| 142 | * **The Code Craftsman:** Writes the implementation. |
| 143 | * **The Doc Reviewer:** Ensures your new skill is readable by the AI. |
| 144 | |
| 145 | It's meta-prompting, perfected. |
| 146 | |
| 147 | --- |
| 148 | |
| 149 | ## 🌟 Why This Matters |
| 150 | |
| 151 | We are entering an era where the "Senior Engineer" isn't just the person who knows the syntax—it's the person who curates the best **context**. |
| 152 | |
| 153 | LUXOR is our attempt to open-source that context. It's the result of hundreds of hours of prompt engineering, distilled into installable packages. |
| 154 | |
| 155 | **Stop fighting the prompt. Load the cheat code. Ship the product.** |
| 156 | |
| 157 | --- |
| 158 | |
| 159 | ### 🤝 Join the Party |
| 160 | |
| 161 | Found a glitch in the matrix? Have |