Fix critical import bugs in linkedin.mjs and wellfound.mjs, clean up status/setup

- linkedin.mjs: LINKEDIN_LINKEDIN_MAX_SEARCH_PAGES → LINKEDIN_MAX_SEARCH_PAGES
  (typo would crash searcher at module load — constant doesn't exist)
- wellfound.mjs: WELLFOUND_WELLFOUND_MAX_INFINITE_SCROLL → WELLFOUND_MAX_INFINITE_SCROLL
  (same — doubled prefix crashes at import)
- status.mjs: remove double-counting ATS from both queue and log
- setup.mjs: replace PM2 instructions with OpenClaw crons

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-06 12:15:52 -08:00
parent 51ca354c52
commit a498f49b95
4 changed files with 4 additions and 15 deletions

View File

@@ -82,13 +82,6 @@ function buildStatus() {
}
}
// From log too
for (const entry of log) {
if (entry.status === 'skipped_external_unsupported' && entry.ats_platform) {
atsCounts[entry.ats_platform] = (atsCounts[entry.ats_platform] || 0) + 1;
}
}
// Last applied
const applied = [...queue, ...log].filter(j => j.status === 'applied')
.sort((a, b) => (b.applied_at || 0) - (a.applied_at || 0));