llm-sentry-tools 1.4.0 → 1.4.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "llm-sentry-tools",
3
- "version": "1.4.0",
3
+ "version": "1.4.2",
4
4
  "description": "基于 Sentry MCP 的错误分析和修复工具,支持 Claude Code、Cursor 等 AI 工具",
5
5
  "type": "module",
6
6
  "bin": {
@@ -36,7 +36,7 @@ ${promptContent.replace(/用户输入:\n```\n\/\S+/g, '用户输入:$ARGUMEN
36
36
  },
37
37
  'cursor': {
38
38
  name: 'Cursor',
39
- configDir: '.cursor/prompts',
39
+ configDir: '.cursor/commands',
40
40
  fileExtension: 'md',
41
41
  createCommand: (commandName, promptContent) => promptContent
42
42
  },
@@ -44,7 +44,8 @@ const AI_TOOLS_MCP = {
44
44
  '@sentry/mcp-server@latest',
45
45
  `--access-token=${token}`,
46
46
  `--host=${host}`
47
- ]
47
+ ],
48
+ env: {}
48
49
  };
49
50
  return config;
50
51
  }