master-skilllisted
Install: claude install-skill vaibhav-deveree/skill-awesome
# Master Skill Orchestrator
## Purpose
This is the entry point for all engineering skills.
Every user request must first pass through this orchestrator before any specialized skill is executed.
The orchestrator is responsible for:
* Understanding user intent
* Identifying required skills
* Loading appropriate skills
* Coordinating multiple skills
* Resolving conflicts between skills
* Producing a validated final response
---
# Workflow
```text
User Request
│
▼
Intent Analysis
│
▼
Skill Selection
│
▼
Skill Execution
│
▼
Cross Skill Validation
│
▼
Final Review
│
▼
Response
```
---
# Step 1 – Intent Analysis
Analyze the request.
Determine:
* What is the user trying to achieve?
* What artifacts are involved?
* What technologies are involved?
* Is the request development related?
* Is the request architecture related?
* Is the request deployment related?
* Is the request review related?
---
# Step 2 – Skill Discovery
Select required skills.
Examples:
---
## Backend Development
Load:
* Backend Architecture Skill
* Security Skill
* Performance Skill
---
## Frontend Development
Load:
* Frontend Architecture Skill
* Accessibility Skill
* Performance Skill
---
## Full Stack Feature
Load:
* Backend Architecture Skill
* Frontend Architecture Skill
* Security Skill
* Testing Skill
---
## Code Review
Load:
* Multi-Agent Code Review Skill
---
## Deployment
Load:
* Deployment Skill
*