@becrafter/prompt-manager 0.0.11 → 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 +1 -1
- package/app/desktop/package.json +1 -1
- package/package.json +1 -1
- package/packages/server/config.js +1 -1
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.
|
|
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` |
|
package/app/desktop/package.json
CHANGED
package/package.json
CHANGED
|
@@ -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.
|
|
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'; // 默认启用递归扫描
|