job-pro 1.0.84 → 1.0.86

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/dist/apply.js CHANGED
@@ -579,8 +579,8 @@ export async function executeFeishu3Step(staged, session, target) {
579
579
  ok: false,
580
580
  posted_to: staged.submit_endpoint,
581
581
  message: "executeFeishu3Step requires a captured session (~/.jobpro/<adapter>.session.json) " +
582
- "— Feishu apply endpoints all gate on candidate-session cookies. Install extension/ " +
583
- "in Chrome, log in to the careers site, click Export.",
582
+ "— Feishu apply endpoints all gate on candidate-session cookies. Run `job-pro extension` " +
583
+ "for the bundled MV3 path + install walkthrough, log into the careers site, click Export.",
584
584
  steps: [],
585
585
  };
586
586
  }
package/dist/index.js CHANGED
@@ -194,22 +194,25 @@ USAGE
194
194
  by ATS family (Bespoke / Feishu / Beisen Wecruit / Beisen iTalent / Moka
195
195
  / Greenhouse-Lever / Liepin). Coverage summary at job.ha7ch.com.
196
196
 
197
- PHASE 2 (auto-apply) — schema coverage is now 50/50:
198
- ✅ 3 Greenhouse / Lever (xpeng / hoyoverse / weride auto-submit
199
- ready, no session needed)
200
- 🟡 22 bespoke session (tencent, bytedance, alibaba, …)
201
- 🟡 9 Feishu (xiaomi, nio, minimax, moonshot, zhipu,
202
- iqiyi, agibot, lilith, zerooneai, baichuan)
203
- 🟡 7 Moka (megvii, deepseek, galaxyuniversal,
204
- stepfun, cambricon, geely, moonshot)
205
- 🟡 2 Beisen Wecruit (sensetime, horizonrobotics)
206
- 🟡 2 Beisen iTalent (vivo, iflytek)
207
- 5 external (unitree WeChat, hikvision/cicc/cainiao/
208
- webankLiepin IM-mediated)
209
- \`apply <postId>\` dry-runs the staged POST for any of them. The 🟡
210
- families need a session.json (extension/) + a family-specific
211
- multi-step submitter; --really-submit currently fires only for ✅.
212
- See docs/auto-apply.md.
197
+ PHASE 2 (auto-apply) — 50/50 schema-ok, **45/50 endpoint-verified**:
198
+ multipart-anon (3) — xpeng / weride / hoyoverse. Anon submit, no session.
199
+ multipart-session (20) — tencent / alibaba / pdd / meituan / mihoyo /
200
+ liauto / jd / oppo / trip / baidu / xiaohongshu /
201
+ netease / didi / pingan / sf / byd / bilibili /
202
+ kuaishou / huawei / antgroup. Needs session.
203
+ feishu-3-step (9) — xiaomi / nio / minimax / zhipu / iqiyi / agibot /
204
+ zerooneai / baichuan / bytedance. atsx-throne tenant.
205
+ moka-aes (8) — moonshot / megvii / deepseek / galaxyuniversal /
206
+ stepfun / cambricon / geely / weibo (proxies to Moka).
207
+ beisen-italent (2) — iflytek / vivo.
208
+ beisen-wecruit (2) sensetime / horizonrobotics.
209
+ cdp-real-browser (1) — lilith (puppeteer for ByteDance _signature bypass).
210
+ external (5) — hikvision / cicc / cainiao / webank (Liepin chat),
211
+ unitree (WeChat QR). Structurally non-API.
212
+ \`apply <postId>\` dry-runs the staged POST. \`--really-submit\` runs the
213
+ 4-layer safety gate (env attest + staged.ready + endpoint_verified +
214
+ session<30d). Run \`job-pro list\` for the ✓ column or \`job-pro recon\`
215
+ for the live probe matrix. See docs/auto-apply.md.
213
216
 
214
217
  VERBS (same surface for every company)
215
218
  search <kw> search openings (free text)
@@ -806,8 +809,8 @@ async function runCompany(adapter, company, rawArgs) {
806
809
  staged,
807
810
  submit_kind: kind,
808
811
  message: `${kind} submission requires a captured session at ` +
809
- `~/.jobpro/${company}.session.json. Install extension/ in Chrome, ` +
810
- `log in to the careers site, click Export.`,
812
+ `~/.jobpro/${company}.session.json. Run \`job-pro extension\` for ` +
813
+ `the bundled MV3 path + Chrome install walkthrough.`,
811
814
  }, compact);
812
815
  }
813
816
  const age = sessionAgeDays(session);
@@ -1101,7 +1104,7 @@ function printStatus(compact) {
1101
1104
  // Sessions
1102
1105
  if (r.sessions.length === 0) {
1103
1106
  console.log(`Sessions ✗ no session.json files captured`);
1104
- console.log(` install extension/ in Chrome to capture sessions for non-anon adapters.`);
1107
+ console.log(` run \`job-pro extension\` for the bundled MV3 extension path + Chrome install steps.`);
1105
1108
  }
1106
1109
  else {
1107
1110
  console.log(`Sessions ✓ ${r.sessions.length} captured`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "job-pro",
3
- "version": "1.0.84",
3
+ "version": "1.0.86",
4
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",