mcp-probe-kit 1.2.9 → 1.3.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 +20 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -230,13 +230,30 @@ npm install mcp-probe-kit
|
|
|
230
230
|
### 🛠️ 开发效率工具
|
|
231
231
|
|
|
232
232
|
#### `gencommit` - 提交生成
|
|
233
|
-
自动分析代码变更,生成规范的 Git commit
|
|
233
|
+
自动分析代码变更,生成规范的 Git commit 消息(支持 emoji)。
|
|
234
234
|
|
|
235
235
|
**用法**:`gencommit`
|
|
236
236
|
|
|
237
|
-
**格式**:`<type
|
|
237
|
+
**格式**:`<type>: <emoji> <subject>` (遵循 Conventional Commits)
|
|
238
238
|
|
|
239
|
-
**类型**:
|
|
239
|
+
**类型**:
|
|
240
|
+
- `fixed` 🐛 - 线上/测试缺陷修复
|
|
241
|
+
- `fix` 🐛 - 语义同 fixed,保持兼容
|
|
242
|
+
- `feat` 🎸 - 新增或迭代业务功能
|
|
243
|
+
- `docs` ✏️ - 文档相关更新
|
|
244
|
+
- `style` 💄 - UI/样式调整
|
|
245
|
+
- `chore` 🤖 - 构建、脚本、依赖等杂项
|
|
246
|
+
- `refactor` ♻️ - 重构
|
|
247
|
+
- `test` ✅ - 测试相关
|
|
248
|
+
|
|
249
|
+
**示例**:
|
|
250
|
+
```bash
|
|
251
|
+
feat: 🎸 添加用户登录功能
|
|
252
|
+
|
|
253
|
+
影响模块: auth
|
|
254
|
+
- 实现 JWT 认证机制
|
|
255
|
+
- 添加密码加密存储
|
|
256
|
+
```
|
|
240
257
|
|
|
241
258
|
---
|
|
242
259
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-probe-kit",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"description": "Cursor Development Enhancement Toolkit - MCP Server with 23 practical tools for code quality, development efficiency, and project management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "build/index.js",
|