@reconcrap/boss-recommend-mcp 2.0.47 → 2.0.49
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/bin/boss-recommend-mcp.js +4 -4
- package/config/screening-config.example.json +27 -27
- package/package.json +1 -1
- package/scripts/postinstall.cjs +44 -44
- package/skills/boss-chat/README.md +39 -39
- package/skills/boss-chat/SKILL.md +93 -93
- package/skills/boss-recommend-pipeline/README.md +12 -12
- package/skills/boss-recommend-pipeline/SKILL.md +180 -180
- package/skills/boss-recruit-pipeline/README.md +17 -17
- package/skills/boss-recruit-pipeline/SKILL.md +58 -58
- package/src/chat-mcp.js +1780 -1780
- package/src/chat-runtime-config.js +749 -749
- package/src/cli.js +3054 -3054
- package/src/core/boss-cards/index.js +199 -199
- package/src/core/browser/index.js +1586 -1453
- package/src/core/capture/index.js +1201 -1201
- package/src/core/cv-acquisition/index.js +238 -238
- package/src/core/cv-capture-target/index.js +299 -299
- package/src/core/greet-quota/index.js +54 -54
- package/src/core/infinite-list/index.js +1326 -1326
- package/src/core/reporting/legacy-csv.js +341 -341
- package/src/core/run/timing.js +33 -33
- package/src/core/self-heal/index.js +973 -973
- package/src/core/self-heal/viewport.js +564 -564
- package/src/domains/chat/cards.js +137 -137
- package/src/domains/chat/constants.js +221 -221
- package/src/domains/chat/detail.js +1668 -1668
- package/src/domains/chat/index.js +7 -7
- package/src/domains/chat/jobs.js +592 -592
- package/src/domains/chat/page-guard.js +98 -98
- package/src/domains/chat/roots.js +56 -56
- package/src/domains/chat/run-service.js +1977 -1977
- package/src/domains/recommend/actions.js +457 -457
- package/src/domains/recommend/cards.js +243 -243
- package/src/domains/recommend/constants.js +165 -165
- package/src/domains/recommend/detail.js +1 -1
- package/src/domains/recommend/filters.js +610 -610
- package/src/domains/recommend/index.js +10 -10
- package/src/domains/recommend/jobs.js +378 -316
- package/src/domains/recommend/refresh.js +491 -472
- package/src/domains/recommend/roots.js +80 -80
- package/src/domains/recommend/run-service.js +50 -29
- package/src/domains/recommend/scopes.js +246 -246
- package/src/domains/recruit/actions.js +277 -277
- package/src/domains/recruit/cards.js +74 -74
- package/src/domains/recruit/constants.js +167 -167
- package/src/domains/recruit/detail.js +461 -461
- package/src/domains/recruit/index.js +9 -9
- package/src/domains/recruit/instruction-parser.js +451 -451
- package/src/domains/recruit/refresh.js +44 -44
- package/src/domains/recruit/roots.js +68 -68
- package/src/domains/recruit/run-service.js +1207 -1207
- package/src/domains/recruit/search.js +1202 -1202
- package/src/recommend-mcp.js +22 -22
- package/src/recruit-mcp.js +1338 -1338
|
@@ -1,54 +1,54 @@
|
|
|
1
|
-
import { normalizeText } from "../screening/index.js";
|
|
2
|
-
|
|
3
|
-
export const GREET_CREDITS_EXHAUSTED_CODE = "GREET_CREDITS_EXHAUSTED";
|
|
4
|
-
|
|
5
|
-
function coerceQuota(quota) {
|
|
6
|
-
if (!quota || typeof quota !== "object") return null;
|
|
7
|
-
return {
|
|
8
|
-
found: Boolean(quota.found),
|
|
9
|
-
text: normalizeText(quota.text),
|
|
10
|
-
numerator: Number.isFinite(Number(quota.numerator)) ? Number(quota.numerator) : null,
|
|
11
|
-
denominator: Number.isFinite(Number(quota.denominator)) ? Number(quota.denominator) : null,
|
|
12
|
-
exhausted: Boolean(quota.exhausted)
|
|
13
|
-
};
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
export function parseGreetQuota(label = "") {
|
|
17
|
-
const text = normalizeText(label);
|
|
18
|
-
const match = text.match(/立即沟通\s*[\((]\s*(\d+)\s*[//]\s*(\d+)\s*[\))]/);
|
|
19
|
-
if (!match) {
|
|
20
|
-
return {
|
|
21
|
-
found: false,
|
|
22
|
-
text,
|
|
23
|
-
numerator: null,
|
|
24
|
-
denominator: null,
|
|
25
|
-
exhausted: false
|
|
26
|
-
};
|
|
27
|
-
}
|
|
28
|
-
const numerator = Number(match[1]);
|
|
29
|
-
const denominator = Number(match[2]);
|
|
30
|
-
return {
|
|
31
|
-
found: true,
|
|
32
|
-
text,
|
|
33
|
-
numerator,
|
|
34
|
-
denominator,
|
|
35
|
-
exhausted: numerator > denominator
|
|
36
|
-
};
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
export function normalizeGreetQuotaSource(source = "") {
|
|
40
|
-
return coerceQuota(source) || parseGreetQuota(source);
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
export function assertGreetQuotaAvailable(source = "") {
|
|
44
|
-
const quota = normalizeGreetQuotaSource(source);
|
|
45
|
-
if (quota.exhausted) {
|
|
46
|
-
const error = new Error(
|
|
47
|
-
`Greet credits exhausted according to Boss quota text: ${quota.numerator}/${quota.denominator}`
|
|
48
|
-
);
|
|
49
|
-
error.code = GREET_CREDITS_EXHAUSTED_CODE;
|
|
50
|
-
error.greet_quota = quota;
|
|
51
|
-
throw error;
|
|
52
|
-
}
|
|
53
|
-
return quota;
|
|
54
|
-
}
|
|
1
|
+
import { normalizeText } from "../screening/index.js";
|
|
2
|
+
|
|
3
|
+
export const GREET_CREDITS_EXHAUSTED_CODE = "GREET_CREDITS_EXHAUSTED";
|
|
4
|
+
|
|
5
|
+
function coerceQuota(quota) {
|
|
6
|
+
if (!quota || typeof quota !== "object") return null;
|
|
7
|
+
return {
|
|
8
|
+
found: Boolean(quota.found),
|
|
9
|
+
text: normalizeText(quota.text),
|
|
10
|
+
numerator: Number.isFinite(Number(quota.numerator)) ? Number(quota.numerator) : null,
|
|
11
|
+
denominator: Number.isFinite(Number(quota.denominator)) ? Number(quota.denominator) : null,
|
|
12
|
+
exhausted: Boolean(quota.exhausted)
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export function parseGreetQuota(label = "") {
|
|
17
|
+
const text = normalizeText(label);
|
|
18
|
+
const match = text.match(/立即沟通\s*[\((]\s*(\d+)\s*[//]\s*(\d+)\s*[\))]/);
|
|
19
|
+
if (!match) {
|
|
20
|
+
return {
|
|
21
|
+
found: false,
|
|
22
|
+
text,
|
|
23
|
+
numerator: null,
|
|
24
|
+
denominator: null,
|
|
25
|
+
exhausted: false
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
const numerator = Number(match[1]);
|
|
29
|
+
const denominator = Number(match[2]);
|
|
30
|
+
return {
|
|
31
|
+
found: true,
|
|
32
|
+
text,
|
|
33
|
+
numerator,
|
|
34
|
+
denominator,
|
|
35
|
+
exhausted: numerator > denominator
|
|
36
|
+
};
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export function normalizeGreetQuotaSource(source = "") {
|
|
40
|
+
return coerceQuota(source) || parseGreetQuota(source);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export function assertGreetQuotaAvailable(source = "") {
|
|
44
|
+
const quota = normalizeGreetQuotaSource(source);
|
|
45
|
+
if (quota.exhausted) {
|
|
46
|
+
const error = new Error(
|
|
47
|
+
`Greet credits exhausted according to Boss quota text: ${quota.numerator}/${quota.denominator}`
|
|
48
|
+
);
|
|
49
|
+
error.code = GREET_CREDITS_EXHAUSTED_CODE;
|
|
50
|
+
error.greet_quota = quota;
|
|
51
|
+
throw error;
|
|
52
|
+
}
|
|
53
|
+
return quota;
|
|
54
|
+
}
|