@becrafter/prompt-manager 0.1.17 → 0.1.18

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.
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@becrafter/prompt-desktop",
3
- "version": "0.1.17",
3
+ "version": "0.1.18",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@becrafter/prompt-desktop",
9
- "version": "0.1.17",
9
+ "version": "0.1.18",
10
10
  "dependencies": {
11
11
  "@becrafter/prompt-manager-core": "file:../../packages/server",
12
12
  "@modelcontextprotocol/sdk": "^1.20.2",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@becrafter/prompt-desktop",
3
- "version": "0.1.17",
3
+ "version": "0.1.18",
4
4
  "description": "Menu bar desktop wrapper for @becrafter/prompt-manager",
5
5
  "author": "BeCrafter",
6
6
  "homepage": "https://github.com/BeCrafter/prompt-manager",
package/env.example CHANGED
@@ -7,7 +7,7 @@ PROMPTS_DIR=$HOME/.prompt-manager/prompts
7
7
 
8
8
  # MCP服务器配置
9
9
  MCP_SERVER_NAME=prompt-manager
10
- MCP_SERVER_VERSION=0.1.17
10
+ MCP_SERVER_VERSION=0.1.18
11
11
 
12
12
  # 日志级别 (error, warn, info, debug)
13
13
  LOG_LEVEL=info
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@becrafter/prompt-manager",
3
- "version": "0.1.17",
3
+ "version": "0.1.18",
4
4
  "description": "Remote MCP Server for managing prompts",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -121,7 +121,7 @@ export class Config {
121
121
 
122
122
  // 其他配置
123
123
  this.serverName = process.env.MCP_SERVER_NAME || 'prompt-manager';
124
- this.serverVersion = process.env.MCP_SERVER_VERSION || '0.1.17';
124
+ this.serverVersion = process.env.MCP_SERVER_VERSION || '0.1.18';
125
125
  this.logLevel = process.env.LOG_LEVEL || 'info';
126
126
  this.maxPrompts = parseInt(process.env.MAX_PROMPTS) || 1000;
127
127
  this.recursiveScan = process.env.RECURSIVE_SCAN !== 'false'; // 默认启用递归扫描