@becrafter/prompt-manager 0.0.10 → 0.0.12

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 CHANGED
@@ -130,7 +130,7 @@ npm run desktop:build
130
130
  | `MCP_SERVER_NAME` | 服务器名称 | `prompt-manager` |
131
131
  | `SERVER_PORT` | 服务器端口 | `5621` |
132
132
  | `PROMPTS_DIR` | Prompts目录路径 | `~/.prompt-manager/prompts` |
133
- | `MCP_SERVER_VERSION` | 服务器版本 | `0.0.10` |
133
+ | `MCP_SERVER_VERSION` | 服务器版本 | `0.0.12` |
134
134
  | `LOG_LEVEL` | 日志级别 (error, warn, info, debug) | `info` |
135
135
  | `MAX_PROMPTS` | 最大prompt数量限制 | `100` |
136
136
  | `RECURSIVE_SCAN` | 是否启用递归扫描子目录 | `true` |
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@becrafter/prompt-desktop",
3
- "version": "0.0.10",
3
+ "version": "0.0.12",
4
4
  "description": "Menu bar desktop wrapper for @becrafter/prompt-manager",
5
5
  "private": true,
6
6
  "main": "main.js",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@becrafter/prompt-manager",
3
- "version": "0.0.10",
3
+ "version": "0.0.12",
4
4
  "description": "Remote MCP Server for managing prompts",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -95,7 +95,7 @@ export class Config {
95
95
 
96
96
  // 其他配置
97
97
  this.serverName = process.env.MCP_SERVER_NAME || 'prompt-manager';
98
- this.serverVersion = process.env.MCP_SERVER_VERSION || '0.0.10';
98
+ this.serverVersion = process.env.MCP_SERVER_VERSION || '0.0.12';
99
99
  this.logLevel = process.env.LOG_LEVEL || 'info';
100
100
  this.maxPrompts = parseInt(process.env.MAX_PROMPTS) || 100;
101
101
  this.recursiveScan = process.env.RECURSIVE_SCAN !== 'false'; // 默认启用递归扫描