惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
大猫的无限游戏
大猫的无限游戏
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 叶小钗
月光博客
月光博客
Last Week in AI
Last Week in AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
人人都是产品经理
人人都是产品经理
阮一峰的网络日志
阮一峰的网络日志
罗磊的独立博客
IT之家
IT之家
美团技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Hugging Face - Blog
Hugging Face - Blog
博客园_首页
S
SegmentFault 最新的问题
宝玉的分享
宝玉的分享
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Jina AI
Jina AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The Cloudflare Blog
博客园 - 司徒正美
爱范儿
爱范儿

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
GitHub - ymuromcev/ai-job-searcher: Multi-profile job sea...
ymuromcev · 2026-04-30 · via Hacker News - Newest: "AI"

A personal AI agent for job search. One engine, many profiles. Built on Claude Code + a small TypeScript-free Node toolkit; all the AI lives behind the CLI.

tests node license

What it is

A job-search pipeline that scans ATS feeds and job boards, filters roles against my preferences, drafts tailored cover letters, pushes everything into Notion as a Kanban pipeline, and reads my Gmail to move cards when recruiters reply.

I built it for myself. When a family member also needed a job search, I rebuilt it so one codebase could serve multiple candidates without code duplication.

Evolution

It started as a single-user Python + AppleScript Frankenstein — hardcoded to me, hardcoded to one Notion workspace. After ~1 month of daily use and a clear picture of what actually mattered, I rewrote it from scratch:

  • v1 (prototype) — single-user, monolithic. Shipped fast, was good enough to land interviews, accumulated drift as fast as I shipped features.
  • v2 (this repo) — engine cleanly split from profile data, so one deployment serves multiple candidates. Per-profile Notion DBs, per-profile resume archetypes, per-profile salary models. Onboarding a new candidate is a 10-minute markdown questionnaire (see Stage 18), not a day of copy-paste.

The old v1 codebases are not public — they predate the clean-slate rewrite and carry personal data in their history.

Architecture

engine/              shared code — no PII, no personal preferences
  modules/
    discovery/       ATS / board adapters (Greenhouse, Lever, Ashby,
                     SmartRecruiters, Workday, CalCareers, USAJOBS,
                     RemoteOK). Auto-registered.
    generators/      Resume DOCX / PDF, cover letter PDF.
    tracking/        Gmail delegation (via Claude MCP, not OAuth-on-disk).
  core/              filter / dedup / validator / notion_sync /
                     company_resolver / salary_calc / url_check /
                     jd_cache / email_* / fit_prompt / profile_loader
  commands/          scan · prepare · sync · validate · check
  cli.js             dispatch + arg parse
profiles/
  _example/          template profile, synthetic data (committed)
  <id>/              personal profile (gitignored)
data/                shared master pool (jobs.tsv, companies.tsv) — gitignored
scripts/stage18/     onboarding wizard for new profiles
skills/job-pipeline/ Claude skill that drives the flow
rfc/                 design docs (001-core split, 002-check, 004-onboarding)

Mental model: Profile = data. Engine = service. Anything in engine/ must work for any candidate; anything candidate-specific lives in profiles/<id>/.

Features

  • Scan — Poll ~8 ATS / job-board adapters for roles at target companies. Dedup across profiles via shared data/jobs.tsv.
  • Filter — Rule-driven (title / company / location blocklists, level caps, per-company active caps). Retroactive sweeps via validate.
  • Prepare — Two-phase (pre / commit) with a human review gate. Assigns resume archetype, drafts cover letter with per-profile voice, computes a salary band from Tier × Level × cost-of-living.
  • Sync — Push / pull against Notion. Defaults to dry-run; --apply writes. Uses Notion SDK v5 (dataSources.query).
  • Check — Reads Gmail replies via Claude MCP, classifies (rejection / interview invite / info request / recruiter outreach), updates Notion status and adds comments.
  • Onboarding wizard — A markdown intake form generates profile.json / filter_rules.json / resume_versions.json / cover letter templates, provisions per-profile Notion databases, and (optionally) imports a prior hand-rolled prototype.

Quick start

git clone https://github.com/ymuromcev/ai-job-searcher.git
cd ai-job-searcher
npm install
npm run setup-hooks          # installs the PII pre-commit guard
npm test                     # 490+ tests, no network required

cp -r profiles/_example profiles/me
cp .env.example .env         # then fill in ME_NOTION_TOKEN etc.
node engine/cli.js scan --profile me

Full onboarding (per-profile Notion DB provisioning + resume archetypes + cover-letter voice) goes through the Stage 18 wizard.

Requirements

  • Node 20+
  • A Notion integration token per profile (the pipeline writes to per-profile databases it creates during onboarding)
  • Claude Code for the end-to-end flow (the job-pipeline skill drives prepare → human-in-the-loop review → sync). The CLI itself runs without Claude for scan / validate / filter use cases.

Secrets

All tokens live in a root .env, namespaced by profile id:

ME_NOTION_TOKEN=secret_...
ME_USAJOBS_API_KEY=...
ME_USAJOBS_EMAIL=...

profile_loader.loadSecrets(id, env) strips the <ID>_ prefix so engine code sees NOTION_TOKEN etc. The .env file is gitignored; a pre-commit hook scans diffs for common leak patterns as backup.

Development

npm test               # Node's built-in test runner, no framework
  • Pure helpers are the default; side-effectful code lives in commands/ and scripts/.
  • Network calls go through modules/discovery/_http.js#defaultFetch (ctx.fetchFn in tests) — never fetch directly.
  • Architectural changes go through an RFC under rfc/ before code.
  • PRs welcome but please open an issue to discuss direction first — this is a personal tool, not an open-source product.

See CLAUDE.md for agent-facing rules, docs/ai-assistant-notes.md for the longer "how this codebase thinks" note.

License

MIT © 2026 Jared Moore

Author

Jared Moore — Senior AI Product Manager. Bay Area. Contact: ymuromcev@gmail.com