@reconcrap/boss-recommend-mcp 1.1.5 → 1.1.6

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": "@reconcrap/boss-recommend-mcp",
3
- "version": "1.1.5",
3
+ "version": "1.1.6",
4
4
  "description": "Unified MCP pipeline for recommend-page filtering and screening on Boss Zhipin",
5
5
  "keywords": [
6
6
  "boss",
@@ -39,6 +39,7 @@
39
39
  ],
40
40
  "dependencies": {
41
41
  "chrome-remote-interface": "^0.33.3",
42
+ "sharp": "^0.34.4",
42
43
  "ws": "^8.19.0"
43
44
  },
44
45
  "engines": {
@@ -47,5 +48,15 @@
47
48
  "publishConfig": {
48
49
  "access": "public"
49
50
  },
50
- "license": "MIT"
51
+ "license": "MIT",
52
+ "devDependencies": {},
53
+ "repository": {
54
+ "type": "git",
55
+ "url": "git+https://github.com/reconcrap-cpu/boss-recommend-mcp.git"
56
+ },
57
+ "author": "",
58
+ "bugs": {
59
+ "url": "https://github.com/reconcrap-cpu/boss-recommend-mcp/issues"
60
+ },
61
+ "homepage": "https://github.com/reconcrap-cpu/boss-recommend-mcp#readme"
51
62
  }
@@ -213,16 +213,13 @@ CLI fallback 的状态机与 MCP 保持一致:
213
213
  ```text
214
214
  你是环境修复 agent。请根据 diagnostics.checks 修复依赖,必须串行执行:
215
215
  1) 若 node_cli 失败:先安装 Node.js >=18,未成功前禁止执行 npm install。
216
- 2) 若任意 npm_dep_* 失败:再安装 npm 依赖(chrome-remote-interface / ws)。
217
- 3) 若 python_cli 失败:安装 Python,并确保 python 命令可用。
218
- 4) 若 python_pillow 失败:最后执行 python -m pip install pillow。
216
+ 2) 若任意 npm_dep_* 失败:再安装 npm 依赖(chrome-remote-interface / ws / sharp)。
219
217
  每一步完成后重新运行 doctor,全部通过后再重试 start_recommend_pipeline_run。
220
218
  ```
221
219
 
222
220
  安装顺序约束(必须遵守):
223
221
 
224
222
  - 没有 Node.js 时,不能先装 npm 包
225
- - 没有 Python 时,不能先装 Pillow
226
223
 
227
224
  ## Response Style
228
225