job-pro 1.0.71 → 1.0.73

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.
Files changed (2) hide show
  1. package/dist/index.js +7 -1
  2. package/package.json +11 -2
package/dist/index.js CHANGED
@@ -1389,7 +1389,13 @@ async function main() {
1389
1389
  for (const r of results) {
1390
1390
  const tag = r.status ? `${r.status}` : "—";
1391
1391
  const vTag = r.already_verified ? " 🟢" : "";
1392
- console.log(` ${ICON[r.classification]} ${r.company.padEnd(width)} ${tag.padEnd(4)} ${r.classification.padEnd(17)}${vTag} ${r.detail}`);
1392
+ // If the schema asserts endpoint_verified: true but the anon probe
1393
+ // sees 404/HTML, the framework's response is misleading — schema's
1394
+ // probe round was deeper. Surface a ⚠ icon instead of ✗ to signal
1395
+ // "schema says verified, probe disagrees".
1396
+ const probeOK = r.classification === "verified-real" || r.classification === "external";
1397
+ const icon = r.already_verified && !probeOK ? "⚠" : ICON[r.classification];
1398
+ console.log(` ${icon} ${r.company.padEnd(width)} ${tag.padEnd(4)} ${r.classification.padEnd(17)}${vTag} ${r.detail}`);
1393
1399
  }
1394
1400
  console.log(`\n Tally:`);
1395
1401
  for (const [k, v] of [...tally.entries()].sort()) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "job-pro",
3
- "version": "1.0.71",
4
- "description": "Query Chinese big-tech campus recruiting from your terminal. 50 companies, all 50 live. 46 via each company's own API; the 4 with no public canonical feed (Hikvision, CICC, Cainiao, WeBank) surfaced via Liepin as a clearly-labeled third-party fallback. No signup, no token, no server.",
3
+ "version": "1.0.73",
4
+ "description": "Query Chinese big-tech campus recruiting + auto-apply from your terminal. 50 companies, all 50 live (46 via official APIs, 4 via Liepin third-party fallback). 45/50 with end-to-end verified apply endpoints; 5 structurally-external (Liepin IM × 4 + Unitree WeChat). No signup, no token, no server.",
5
5
  "homepage": "https://job.ha7ch.com",
6
6
  "repository": "https://github.com/HA7CH/job-pro",
7
7
  "license": "MIT",
@@ -16,12 +16,21 @@
16
16
  "keywords": [
17
17
  "campus-recruiting",
18
18
  "校招",
19
+ "auto-apply",
20
+ "投递",
19
21
  "tencent",
20
22
  "bytedance",
21
23
  "alibaba",
22
24
  "meituan",
23
25
  "xiaohongshu",
24
26
  "job-search",
27
+ "ats",
28
+ "greenhouse",
29
+ "lever",
30
+ "feishu",
31
+ "moka",
32
+ "beisen",
33
+ "liepin",
25
34
  "cli",
26
35
  "claude-code"
27
36
  ],