skill7 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +192 -0
- package/data/skills_index.json +5708 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +400 -0
- package/dist/index.js.map +1 -0
- package/package.json +56 -0
- package/scripts/sandbox_test.js +99 -0
- package/scripts/setup.js +234 -0
package/README.md
ADDED
|
@@ -0,0 +1,192 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="https://img.shields.io/badge/🌌-ANTIGRAVITY-7c3aed?style=for-the-badge&labelColor=1e1e2e" alt="Antigravity" height="60" />
|
|
3
|
+
</p>
|
|
4
|
+
|
|
5
|
+
<h1 align="center">🌌 Antigravity Skills MCP Server</h1>
|
|
6
|
+
|
|
7
|
+
<p align="center">
|
|
8
|
+
<strong>634+ production-ready AI skills for any MCP-compatible client</strong>
|
|
9
|
+
</p>
|
|
10
|
+
|
|
11
|
+
<p align="center">
|
|
12
|
+
<a href="https://abderraouf-yt.github.io/skills-mcp-server"><img src="https://img.shields.io/badge/🔗_Live_Demo-View_Skills-violet?style=for-the-badge" alt="Demo"></a>
|
|
13
|
+
<a href="https://github.com/Abderraouf-yt/skills-mcp-server/releases"><img src="https://img.shields.io/github/v/release/Abderraouf-yt/skills-mcp-server?style=for-the-badge&logo=github&logoColor=white&color=7c3aed" alt="Release"></a>
|
|
14
|
+
<a href="https://github.com/Abderraouf-yt/skills-mcp-server/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MIT-blue?style=for-the-badge" alt="License"></a>
|
|
15
|
+
<a href="https://github.com/Abderraouf-yt/skills-mcp-server/stargazers"><img src="https://img.shields.io/github/stars/Abderraouf-yt/skills-mcp-server?style=for-the-badge&logo=github&color=f59e0b" alt="Stars"></a>
|
|
16
|
+
<a href="https://hub.docker.com/r/abderraoufyt/skills-mcp-server"><img src="https://img.shields.io/badge/docker-ready-2496ED?style=for-the-badge&logo=docker&logoColor=white" alt="Docker"></a>
|
|
17
|
+
</p>
|
|
18
|
+
|
|
19
|
+
<p align="center">
|
|
20
|
+
<a href="#-quick-start">Quick Start</a> •
|
|
21
|
+
<a href="#-features">Features</a> •
|
|
22
|
+
<a href="#-tools">Tools</a> •
|
|
23
|
+
<a href="#-deployment">Deployment</a> •
|
|
24
|
+
<a href="#-api">API</a>
|
|
25
|
+
</p>
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
## 💡 Why This Exists
|
|
30
|
+
|
|
31
|
+
**Stop searching. Start building.**
|
|
32
|
+
|
|
33
|
+
You spend hours searching for best practices, design patterns, and solutions. This MCP server gives your AI instant access to **634+ curated skills** covering:
|
|
34
|
+
|
|
35
|
+
- 🔐 **Security** — Penetration testing, vulnerability scanning, secure coding
|
|
36
|
+
- ⚛️ **Frontend** — React, Next.js, Vue, Angular, modern CSS
|
|
37
|
+
- 🐍 **Backend** — Python, Node.js, Go, Rust, API design
|
|
38
|
+
- ☁️ **Infrastructure** — Docker, Kubernetes, AWS, Terraform
|
|
39
|
+
- 🧠 **AI/ML** — LangChain, RAG, prompt engineering
|
|
40
|
+
- 📊 **Architecture** — System design, microservices, DDD
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
|
|
44
|
+
## ⚡ Quick Start
|
|
45
|
+
|
|
46
|
+
### One-Liner Setup
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
# Clone and install
|
|
50
|
+
git clone https://github.com/Abderraouf-yt/skills-mcp-server.git && cd skills-mcp-server
|
|
51
|
+
npm install && npm run build
|
|
52
|
+
|
|
53
|
+
# Configure your AI client (pick one)
|
|
54
|
+
npm run setup:gemini # Gemini CLI
|
|
55
|
+
npm run setup:claude # Claude Desktop / Code
|
|
56
|
+
npm run setup:cursor # Cursor
|
|
57
|
+
npm run setup:all # All clients
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
**Restart your AI client. Done.**
|
|
61
|
+
|
|
62
|
+
---
|
|
63
|
+
|
|
64
|
+
## 🎯 Features
|
|
65
|
+
|
|
66
|
+
<table>
|
|
67
|
+
<tr>
|
|
68
|
+
<td width="50%">
|
|
69
|
+
|
|
70
|
+
### 🚀 Universal Compatibility
|
|
71
|
+
Works with **any MCP client**:
|
|
72
|
+
- Gemini CLI
|
|
73
|
+
- Claude Desktop & Code
|
|
74
|
+
- Cursor
|
|
75
|
+
- VS Code Copilot
|
|
76
|
+
- Custom integrations
|
|
77
|
+
|
|
78
|
+
</td>
|
|
79
|
+
<td width="50%">
|
|
80
|
+
|
|
81
|
+
### � Premium UI Experience
|
|
82
|
+
Immersive, modern interface:
|
|
83
|
+
- **Interactive 3D Orb** background (OGL)
|
|
84
|
+
- **Glassmorphism** design system
|
|
85
|
+
- **Stable Grid Layout** with load-more
|
|
86
|
+
- **Mobile-first** responsive design
|
|
87
|
+
|
|
88
|
+
</td>
|
|
89
|
+
</tr>
|
|
90
|
+
<tr>
|
|
91
|
+
<td width="50%">
|
|
92
|
+
|
|
93
|
+
### 📚 634+ Skills
|
|
94
|
+
Curated, production-tested guidance:
|
|
95
|
+
- **Agentic Systems** & Orchestration
|
|
96
|
+
- **Generative AI** Engineering
|
|
97
|
+
- **Platform Engineering** practices
|
|
98
|
+
- **Web3 & Security** protocols
|
|
99
|
+
|
|
100
|
+
</td>
|
|
101
|
+
<td width="50%">
|
|
102
|
+
|
|
103
|
+
### 🔧 6 Tools + 2 Prompts
|
|
104
|
+
Everything you need:
|
|
105
|
+
- **Semantic Skill Matcher**
|
|
106
|
+
- **Workflow Generator**
|
|
107
|
+
- **Deep Skill Documentation**
|
|
108
|
+
- **Smart Categorization**
|
|
109
|
+
|
|
110
|
+
</td>
|
|
111
|
+
</tr>
|
|
112
|
+
</table>
|
|
113
|
+
|
|
114
|
+
---
|
|
115
|
+
|
|
116
|
+
## � Modern Skill Taxonomy (2026 Standard)
|
|
117
|
+
|
|
118
|
+
| Category | Skills | Highlights |
|
|
119
|
+
|----------|--------|------------|
|
|
120
|
+
| 🤖 **Agentic Systems** | 98 | Autonomous Agents, Swarms, Memory, Tool Use |
|
|
121
|
+
| 🧠 **Generative AI** | 85 | LLMs, Inference, Transformers, Prompt Eng |
|
|
122
|
+
| ☁️ **Platform Eng** | 72 | Cloud, Kubernetes, Terraform, Microservices |
|
|
123
|
+
| 🎨 **Product Exp** | 95 | Next.js, React, Mobile, Accessibility, UI/UX |
|
|
124
|
+
| �️ **Security** | 107 | DevSecOps, Red Teaming, Auth, Encryption |
|
|
125
|
+
| 🎮 **Game & 3D** | 45 | Unity, Three.js, OGL, WebGL, Shaders |
|
|
126
|
+
| � **Knowledge** | 60 | RAG, Vector DBs, Semantic Search |
|
|
127
|
+
| ⚡ **Automation** | 40 | Playwright, Crawlers, ETL Pipelines |
|
|
128
|
+
| � **Web3 Core** | 35 | Smart Contracts, DeFi, Solidity |
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
---
|
|
132
|
+
|
|
133
|
+
## 🌐 API Endpoints (HTTP Mode)
|
|
134
|
+
|
|
135
|
+
When running with `MCP_TRANSPORT=http`:
|
|
136
|
+
|
|
137
|
+
| Endpoint | Method | Description |
|
|
138
|
+
|----------|--------|-------------|
|
|
139
|
+
| `/` | GET | Server info & health |
|
|
140
|
+
| `/health` | GET | Health check |
|
|
141
|
+
| `/sse` | GET | MCP SSE connection |
|
|
142
|
+
|
|
143
|
+
**Environment Variables:**
|
|
144
|
+
- `PORT` — Server port (default: 3000)
|
|
145
|
+
- `MCP_TRANSPORT` — `stdio` or `http`
|
|
146
|
+
|
|
147
|
+
---
|
|
148
|
+
|
|
149
|
+
## 📦 Project Structure
|
|
150
|
+
|
|
151
|
+
```
|
|
152
|
+
skills-mcp-server/
|
|
153
|
+
├── src/
|
|
154
|
+
│ └── index.ts # MCP server (dual transport)
|
|
155
|
+
├── data/
|
|
156
|
+
│ └── skills_index.json # 634+ skills catalog
|
|
157
|
+
├── scripts/
|
|
158
|
+
│ └── setup.js # One-click configurator
|
|
159
|
+
├── Dockerfile # Production container
|
|
160
|
+
├── docker-compose.yml # Easy deployment
|
|
161
|
+
└── package.json
|
|
162
|
+
```
|
|
163
|
+
|
|
164
|
+
---
|
|
165
|
+
|
|
166
|
+
## 🤝 Contributing
|
|
167
|
+
|
|
168
|
+
We welcome contributions! See [CONTRIBUTING.md](CONTRIBUTING.md).
|
|
169
|
+
|
|
170
|
+
```bash
|
|
171
|
+
# Development
|
|
172
|
+
npm install
|
|
173
|
+
npm run dev # Hot reload with tsx
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
---
|
|
177
|
+
|
|
178
|
+
## 📄 License
|
|
179
|
+
|
|
180
|
+
MIT © [Antigravity](https://github.com/Abderraouf-yt)
|
|
181
|
+
|
|
182
|
+
---
|
|
183
|
+
|
|
184
|
+
<p align="center">
|
|
185
|
+
<strong>Built for developers who ship.</strong>
|
|
186
|
+
</p>
|
|
187
|
+
|
|
188
|
+
<p align="center">
|
|
189
|
+
<a href="https://github.com/Abderraouf-yt/skills-mcp-server">⭐ Star this repo</a> •
|
|
190
|
+
<a href="https://github.com/Abderraouf-yt/skills-mcp-server/issues">Report Bug</a> •
|
|
191
|
+
<a href="https://github.com/Abderraouf-yt/skills-mcp-server/issues">Request Feature</a>
|
|
192
|
+
</p>
|