@mbc-cqrs-serverless/mcp-server 1.0.23 → 1.0.24
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 +56 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -144,6 +144,62 @@ Use mbc_generate_module to create a Product module with sync mode
|
|
|
144
144
|
Run mbc_validate_cqrs to check my CQRS implementation
|
|
145
145
|
```
|
|
146
146
|
|
|
147
|
+
## Claude Code Skills
|
|
148
|
+
|
|
149
|
+
This package includes Claude Code skills that provide guided assistance for MBC CQRS Serverless development.
|
|
150
|
+
|
|
151
|
+
### Available Skills
|
|
152
|
+
|
|
153
|
+
| Skill | Description |
|
|
154
|
+
|-------|-------------|
|
|
155
|
+
| `/mbc-generate` | Generate boilerplate code (modules, services, controllers, DTOs, handlers) |
|
|
156
|
+
| `/mbc-review` | Review code for best practices and anti-patterns (20 patterns) |
|
|
157
|
+
| `/mbc-migrate` | Guide version migrations and breaking changes |
|
|
158
|
+
| `/mbc-debug` | Debug and troubleshoot common issues |
|
|
159
|
+
|
|
160
|
+
### Installing Skills
|
|
161
|
+
|
|
162
|
+
To use the skills, copy them to your Claude Code skills directory:
|
|
163
|
+
|
|
164
|
+
```bash
|
|
165
|
+
# Copy to personal skills (available in all projects)
|
|
166
|
+
cp -r node_modules/@mbc-cqrs-serverless/mcp-server/skills/* ~/.claude/skills/
|
|
167
|
+
|
|
168
|
+
# Or copy to project skills (shared with team)
|
|
169
|
+
cp -r node_modules/@mbc-cqrs-serverless/mcp-server/skills/* .claude/skills/
|
|
170
|
+
```
|
|
171
|
+
|
|
172
|
+
### Using Skills
|
|
173
|
+
|
|
174
|
+
Once installed, use the skills via slash commands:
|
|
175
|
+
|
|
176
|
+
```
|
|
177
|
+
/mbc-generate
|
|
178
|
+
Create an Order module with RDS synchronization
|
|
179
|
+
```
|
|
180
|
+
|
|
181
|
+
```
|
|
182
|
+
/mbc-review
|
|
183
|
+
Review the code in src/order/order.service.ts
|
|
184
|
+
```
|
|
185
|
+
|
|
186
|
+
```
|
|
187
|
+
/mbc-migrate
|
|
188
|
+
I need to upgrade from v1.0.20 to v1.0.23
|
|
189
|
+
```
|
|
190
|
+
|
|
191
|
+
```
|
|
192
|
+
/mbc-debug
|
|
193
|
+
I'm getting ConditionalCheckFailedException errors
|
|
194
|
+
```
|
|
195
|
+
|
|
196
|
+
Or let Claude automatically detect when to use them based on your request:
|
|
197
|
+
|
|
198
|
+
```
|
|
199
|
+
"Generate a new Product module for my MBC CQRS project"
|
|
200
|
+
```
|
|
201
|
+
|
|
202
|
+
|
|
147
203
|
## Development
|
|
148
204
|
|
|
149
205
|
### Building
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mbc-cqrs-serverless/mcp-server",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.24",
|
|
4
4
|
"description": "MCP (Model Context Protocol) server for MBC CQRS Serverless framework - enables AI tools to interact with the framework",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mbc",
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"engines": {
|
|
60
60
|
"node": ">=18.0.0"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "1160a791f4cacaba65620f048611294737b7e2aa"
|
|
63
63
|
}
|