@reconcrap/boss-recommend-mcp 1.3.32 → 1.3.33
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/config/screening-config.example.json +11 -11
- package/package.json +64 -64
- package/src/boss-chat.js +769 -769
- package/src/test-adapters-runtime.js +628 -628
- package/src/test-boss-chat.js +2716 -2227
- package/vendor/boss-chat-cli/src/app.js +1435 -1268
- package/vendor/boss-chat-cli/src/browser/chat-page.js +412 -242
- package/vendor/boss-chat-cli/src/cli.js +1580 -1580
- package/vendor/boss-chat-cli/src/services/chrome-client.js +103 -103
- package/vendor/boss-chat-cli/src/services/llm.js +1146 -810
- package/vendor/boss-chat-cli/src/services/llm.test.js +326 -0
- package/vendor/boss-chat-cli/src/services/profile-store.js +168 -168
- package/vendor/boss-chat-cli/src/services/report-store.js +317 -317
- package/vendor/boss-chat-cli/src/services/resume-capture.js +469 -469
- package/vendor/boss-chat-cli/src/services/resume-network.js +727 -727
- package/vendor/boss-recommend-screen-cli/boss-recommend-screen-cli.cjs +6660 -6272
- package/vendor/boss-recommend-screen-cli/test-recoverable-resume-failures.cjs +429 -31
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
{
|
|
2
|
-
"baseUrl": "https://api.openai.com/v1",
|
|
3
|
-
"apiKey": "replace-with-openai-api-key",
|
|
4
|
-
"model": "gpt-4.1-mini",
|
|
5
|
-
"llmThinkingLevel": "low",
|
|
6
|
-
"llmTimeoutMs": 60000,
|
|
7
|
-
"llmMaxRetries": 3,
|
|
8
|
-
"humanRestEnabled": false,
|
|
9
|
-
"openaiOrganization": "optional-org-id",
|
|
10
|
-
"openaiProject": "optional-project-id"
|
|
11
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"baseUrl": "https://api.openai.com/v1",
|
|
3
|
+
"apiKey": "replace-with-openai-api-key",
|
|
4
|
+
"model": "gpt-4.1-mini",
|
|
5
|
+
"llmThinkingLevel": "low",
|
|
6
|
+
"llmTimeoutMs": 60000,
|
|
7
|
+
"llmMaxRetries": 3,
|
|
8
|
+
"humanRestEnabled": false,
|
|
9
|
+
"openaiOrganization": "optional-org-id",
|
|
10
|
+
"openaiProject": "optional-project-id"
|
|
11
|
+
}
|
package/package.json
CHANGED
|
@@ -1,64 +1,64 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@reconcrap/boss-recommend-mcp",
|
|
3
|
-
"version": "1.3.
|
|
4
|
-
"description": "Unified MCP pipeline for recommend-page filtering and screening on Boss Zhipin",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"boss",
|
|
7
|
-
"mcp",
|
|
8
|
-
"codex",
|
|
9
|
-
"recruiting",
|
|
10
|
-
"boss-zhipin",
|
|
11
|
-
"recommend"
|
|
12
|
-
],
|
|
13
|
-
"type": "module",
|
|
14
|
-
"main": "src/index.js",
|
|
15
|
-
"bin": {
|
|
16
|
-
"boss-recommend-mcp": "bin/boss-recommend-mcp.js"
|
|
17
|
-
},
|
|
18
|
-
"scripts": {
|
|
19
|
-
"start": "node src/index.js",
|
|
20
|
-
"cli": "node src/cli.js",
|
|
21
|
-
"install:local": "node src/cli.js install",
|
|
22
|
-
"postinstall": "node scripts/postinstall.cjs",
|
|
23
|
-
"test:parser": "node src/test-parser.js",
|
|
24
|
-
"test:pipeline": "node src/test-pipeline.js",
|
|
25
|
-
"test:run-state": "node src/test-run-state.js",
|
|
26
|
-
"test:runtime": "node src/test-adapters-runtime.js",
|
|
27
|
-
"test:async": "node src/test-index-async.js",
|
|
28
|
-
"test:boss-chat": "node src/test-boss-chat.js",
|
|
29
|
-
"test:self-heal": "node src/test-self-heal.js",
|
|
30
|
-
"test:search-job": "node vendor/boss-recommend-search-cli/src/test-job-selection.js",
|
|
31
|
-
"test:screen-runtime": "node vendor/boss-recommend-screen-cli/test-recoverable-resume-failures.cjs"
|
|
32
|
-
},
|
|
33
|
-
"files": [
|
|
34
|
-
"bin",
|
|
35
|
-
"config/screening-config.example.json",
|
|
36
|
-
"skills",
|
|
37
|
-
"scripts/postinstall.cjs",
|
|
38
|
-
"src",
|
|
39
|
-
"vendor",
|
|
40
|
-
"README.md"
|
|
41
|
-
],
|
|
42
|
-
"dependencies": {
|
|
43
|
-
"chrome-remote-interface": "^0.33.3",
|
|
44
|
-
"sharp": "^0.34.4",
|
|
45
|
-
"ws": "^8.19.0"
|
|
46
|
-
},
|
|
47
|
-
"engines": {
|
|
48
|
-
"node": ">=18"
|
|
49
|
-
},
|
|
50
|
-
"publishConfig": {
|
|
51
|
-
"access": "public"
|
|
52
|
-
},
|
|
53
|
-
"license": "MIT",
|
|
54
|
-
"devDependencies": {},
|
|
55
|
-
"repository": {
|
|
56
|
-
"type": "git",
|
|
57
|
-
"url": "git+https://github.com/reconcrap-cpu/boss-recommend-mcp.git"
|
|
58
|
-
},
|
|
59
|
-
"author": "",
|
|
60
|
-
"bugs": {
|
|
61
|
-
"url": "https://github.com/reconcrap-cpu/boss-recommend-mcp/issues"
|
|
62
|
-
},
|
|
63
|
-
"homepage": "https://github.com/reconcrap-cpu/boss-recommend-mcp#readme"
|
|
64
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@reconcrap/boss-recommend-mcp",
|
|
3
|
+
"version": "1.3.33",
|
|
4
|
+
"description": "Unified MCP pipeline for recommend-page filtering and screening on Boss Zhipin",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"boss",
|
|
7
|
+
"mcp",
|
|
8
|
+
"codex",
|
|
9
|
+
"recruiting",
|
|
10
|
+
"boss-zhipin",
|
|
11
|
+
"recommend"
|
|
12
|
+
],
|
|
13
|
+
"type": "module",
|
|
14
|
+
"main": "src/index.js",
|
|
15
|
+
"bin": {
|
|
16
|
+
"boss-recommend-mcp": "bin/boss-recommend-mcp.js"
|
|
17
|
+
},
|
|
18
|
+
"scripts": {
|
|
19
|
+
"start": "node src/index.js",
|
|
20
|
+
"cli": "node src/cli.js",
|
|
21
|
+
"install:local": "node src/cli.js install",
|
|
22
|
+
"postinstall": "node scripts/postinstall.cjs",
|
|
23
|
+
"test:parser": "node src/test-parser.js",
|
|
24
|
+
"test:pipeline": "node src/test-pipeline.js",
|
|
25
|
+
"test:run-state": "node src/test-run-state.js",
|
|
26
|
+
"test:runtime": "node src/test-adapters-runtime.js",
|
|
27
|
+
"test:async": "node src/test-index-async.js",
|
|
28
|
+
"test:boss-chat": "node src/test-boss-chat.js",
|
|
29
|
+
"test:self-heal": "node src/test-self-heal.js",
|
|
30
|
+
"test:search-job": "node vendor/boss-recommend-search-cli/src/test-job-selection.js",
|
|
31
|
+
"test:screen-runtime": "node vendor/boss-recommend-screen-cli/test-recoverable-resume-failures.cjs"
|
|
32
|
+
},
|
|
33
|
+
"files": [
|
|
34
|
+
"bin",
|
|
35
|
+
"config/screening-config.example.json",
|
|
36
|
+
"skills",
|
|
37
|
+
"scripts/postinstall.cjs",
|
|
38
|
+
"src",
|
|
39
|
+
"vendor",
|
|
40
|
+
"README.md"
|
|
41
|
+
],
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"chrome-remote-interface": "^0.33.3",
|
|
44
|
+
"sharp": "^0.34.4",
|
|
45
|
+
"ws": "^8.19.0"
|
|
46
|
+
},
|
|
47
|
+
"engines": {
|
|
48
|
+
"node": ">=18"
|
|
49
|
+
},
|
|
50
|
+
"publishConfig": {
|
|
51
|
+
"access": "public"
|
|
52
|
+
},
|
|
53
|
+
"license": "MIT",
|
|
54
|
+
"devDependencies": {},
|
|
55
|
+
"repository": {
|
|
56
|
+
"type": "git",
|
|
57
|
+
"url": "git+https://github.com/reconcrap-cpu/boss-recommend-mcp.git"
|
|
58
|
+
},
|
|
59
|
+
"author": "",
|
|
60
|
+
"bugs": {
|
|
61
|
+
"url": "https://github.com/reconcrap-cpu/boss-recommend-mcp/issues"
|
|
62
|
+
},
|
|
63
|
+
"homepage": "https://github.com/reconcrap-cpu/boss-recommend-mcp#readme"
|
|
64
|
+
}
|