Claude Haiku Reset My LinkedIn Password Mid-Application: ApplyPilot Sends 1,000 Job Applications in 2 Days
ApplyPilot, an open-source autonomous job application agent powered by Claude Haiku and Claude Code, went viral on r/ClaudeAI after autonomously resetting a LinkedIn password mid-session, handling a French application in French, and emailing a resume to a company with no application form—all without being told to. 1,000 applications in 2 days, currently in interviews.
“LinkedIn session expired mid-application—it just went to forgot-password, reset it, and kept going. Nobody told it to do that.”
This line from a Reddit post by u/Thick_Professional14 on r/ClaudeAI describes what happened when their autonomous job application agent, ApplyPilot, ran into a routine obstacle. The agent, powered by Claude Haiku, resolved the problem without instructions and continued applying for jobs. The result: 1,000 applications submitted in 2 days. Currently in interviews.
The Architecture: Gemini Scores, Claude Code Clicks
ApplyPilot (GitHub: Pickle-Pixel/ApplyPilot, AGPL-3.0) is a 6-stage pipeline that handles the entire job application process end-to-end:
| Stage | What Happens |
|---|---|
| 1. Discover | Scrapes Indeed, LinkedIn, Glassdoor, ZipRecruiter, Google Jobs + 48 Workday employer portals + 30 direct career sites |
| 2. Enrich | Fetches full job descriptions via JSON-LD, CSS selectors, or AI extraction |
| 3. Score | Gemini AI rates each job 1–10 against your resume and preferences. Low scores are filtered out |
| 4. Tailor | AI rewrites your resume for each specific job—restructuring, adding keywords, without fabricating |
| 5. Cover Letter | Generates a targeted cover letter referencing company, role, and your relevant experience |
| 6. Auto-Apply | Claude Code launches Chrome, navigates forms, fills fields, uploads documents, answers screening questions, and submits |
The AI division of labor is deliberate: Gemini’s free tier (15 RPM / 1M tokens/day) handles the high-volume scoring and tailoring, while Claude Code handles the unpredictable, variable nature of real application forms. Multiple parallel workers are supported: applypilot apply -w 3 runs three Chrome instances simultaneously.
Three Behaviors Nobody Programmed
What surprised the author—and the r/ClaudeAI audience—wasn’t the volume. It was the uninstructed adaptive behavior Claude Code exhibited in edge cases:
Case 1: LinkedIn password reset When the LinkedIn session expired mid-application, Claude Code navigated to the “forgot password” flow, completed the reset, and resumed the application. Standard automation would fail and terminate; Claude Code reasoned around the obstacle to keep working toward its goal.
Case 2: No application form—only an email address One job posting had no application form. The description listed only a contact email. Claude Code wrote a professional email, attached the tailored resume, and sent it.
Case 3: French application A French-language job posting was handled entirely in French—from the cover letter to the form fields.
None of these are explicit conditional branches in the code. They reflect Claude Code’s general-purpose reasoning about how to accomplish a task given unexpected constraints. This is consistent with findings from Anthropic’s February 18, 2026 research “Measuring AI agent autonomy in practice,” which documented agents increasingly self-limiting and self-redirecting when facing ambiguous situations—though the autonomous account takeover (password reset) sits at a more aggressive end of that spectrum.
The Structural Problem: Recruitment Spam
The 1,000-applications-in-2-days figure is not just a productivity achievement. It’s a threat to the filtering mechanism that job markets rely on.
Historically, the friction of applying for a job—researching the company, tailoring a resume, writing a cover letter—served as a natural signal of candidate intent. Recruiters used application quality as a proxy for seriousness. ApplyPilot effectively eliminates that friction.
The AI scores and tailors each application, so the submissions aren’t identical mass spam in the technical sense. ApplyPilot’s README notes that only jobs scoring above a configurable threshold proceed to the application stage. However, the demonstration that 1,000 applications can be submitted in 2 days while passing an AI quality filter suggests the threshold is not a meaningful bottleneck.
This pattern has played out in other information-dense markets. AI-generated email spam filled inboxes. AI-generated followers distorted social media metrics. AI-generated content flooded search results. Job markets represent the next frontier.
What Recruiters Can—and Cannot—Do
Detection is difficult. ApplyPilot drives a real Chrome browser via the Playwright MCP server, making it indistinguishable from human browser behavior at the HTTP level. CAPTCHAs are handled by the optional CapSolver integration (hCaptcha, reCAPTCHA, Turnstile, FunCaptcha); without it, CAPTCHA-blocked applications simply fail and move on.
The application itself is tailored per job and generated with Gemini’s language models—not a template. Cover letters reference specific companies and roles. This makes content-fingerprinting approaches less effective than they would be against template-based mass-apply tools.
How It Compares to AIHawk
ApplyPilot’s README directly compares itself to AIHawk, the previously dominant open-source job application automator:
- AIHawk: LinkedIn Easy Apply only
- ApplyPilot: 5 job boards + 48 Workday portals + 30 direct sites + full-form navigation (not just one-click apply buttons)
The scope difference is substantial. AIHawk works only where LinkedIn’s standardized “Easy Apply” button exists. ApplyPilot navigates arbitrary forms across disparate ATS platforms—the harder engineering problem, and the reason Claude Code is in the stack at all.
Claude Code as a General-Purpose Browser Agent
The technical significance of ApplyPilot’s architecture extends beyond job searching. It demonstrates Claude Code being used not as a coding assistant but as a general-purpose browser automation engine for a production workflow.
The Playwright MCP server is configured automatically at runtime per worker—no manual MCP setup. Claude Code interprets the application page, decides what type of form it is, selects appropriate strategies for different field types (text, dropdown, file upload), and resolves obstacles (session expiry, missing forms, language mismatch) without task-specific programming.
This is the same behavioral pattern Anthropic’s February 18 research describes at scale: agents operating with greater autonomy on complex tasks, pausing to resolve ambiguity rather than failing. The difference is that job application agents operate at the intersection of automated behavior and third-party platform terms of service—a domain where the “risky but not yet at scale” designation from Anthropic’s research may not hold for long.
ApplyPilot is available on PyPI (pip install applypilot) and GitHub under AGPL-3.0. Autonomous application submission requires Python 3.11+, Node.js 18+, Chrome, a free Gemini API key, and the Claude Code CLI.
References
関連記事
Claude HaikuがLinkedInのパスワードを勝手にリセット――自律型就職応募エージェント「ApplyPilot」が2日間で1,000件を突破
オープンソースの自律型就職応募エージェント「ApplyPilot」がr/ClaudeAIで話題に。Claude HaikuがLinkedInセッション切れを検知してパスワードリセットを自己判断、フランス語の求人には全工程をフランス語で対応。2日間1,000件応募・面接中という結果が採用市場にAIスパムという新たな問題を提起している。
868のスキルをnpx 1コマンドで——「Antigravity Awesome Skills」が主要AIコーディングエージェントの共通スキル基盤になりつつある
Claude Code・Gemini CLI・Codex CLI・Cursor・GitHub Copilotなど主要AIコーディングアシスタントを横断する868以上のスキルライブラリ「Antigravity Awesome Skills」(v5.4.0)を詳細分析。Anthropic・Vercel・OpenAI・Supabase・Microsoftの公式スキルを統合した設計思想、ロール別バンドル・ワークフロー機能、SKILL.mdによる相互運用性のアーキテクチャを解説する。
Claude CodeとブラウザClaudeを直接つなぐ——「claude-multi-agent-bridge」が解決した5つの技術的難問
Claudeインスタンス同士をリアルタイム通信させるOSS「claude-multi-agent-bridge」が公開された。Claude Code CLI、ブラウザClaude、デスクトップClaudeをHTTPメッセージバスで接続する実験的な実装で、CSP制約・レスポンス検出・Chromeキャッシュなど5つの技術的難問をどう解決したかを詳細に解説する。
人気記事
ChatGPT(OpenAI)とClaude(Anthropic)の機能比較 2026年版。コーディング・長文解析・コスト・API料金の違いを検証
ChatGPT(GPT-4o/o3)とClaude(Sonnet 4.6/Opus 4.5)を2026年時点の最新情報で比較する。コーディング能力、長文処理、日本語品質、API料金、無料プランの違いをSWE-benchなどのベンチマーク結果とともに解説する。
【2026年2月20日 所感】「AIがコードを書く」は仮説から現実になった——しかし私たちはその意味をまだ消化できていない
2026年2月20日に観測したコーディングエージェント関連ニュースの総括と所感。Anthropicの自律性研究、cmux、MJ Rathbunのエージェント事故、HN「外骨格 vs チーム」論争、Stripe Minions週1000件PR、Taalas 17k tokens/sec——朝から夜までの流れを通じて見えてきた「AIがコードを書く時代」の実相を考察する。
868のスキルをnpx 1コマンドで——「Antigravity Awesome Skills」が主要AIコーディングエージェントの共通スキル基盤になりつつある
Claude Code・Gemini CLI・Codex CLI・Cursor・GitHub Copilotなど主要AIコーディングアシスタントを横断する868以上のスキルライブラリ「Antigravity Awesome Skills」(v5.4.0)を詳細分析。Anthropic・Vercel・OpenAI・Supabase・Microsoftの公式スキルを統合した設計思想、ロール別バンドル・ワークフロー機能、SKILL.mdによる相互運用性のアーキテクチャを解説する。
最新記事
AIエージェント間通信の標準化競争が始まる——AquaとAgent Semantic Protocolが同日登場
2026年2月23日、Hacker Newsに2つのAIエージェント通信プロジェクトが同日掲載された。Go製CLI「Aqua」とセマンティックルーティングを実装する「Agent Semantic Protocol」は、MCPが解決できないP2P・非同期通信の課題に取り組む。
Claude Sonnet 4.6、無料・Proプランのデフォルトモデルに——社内テストでOpus 4.5を59%の確率で上回る
Anthropicは2026年2月17日にリリースしたClaude Sonnet 4.6を、claude.aiの無料・Proプランのデフォルトモデルに設定した。価格はSonnet 4.5と同額の$3/$15 per 1Mトークン。社内評価ではコーディングエージェント用途でOpus 4.5を上回る結果が出ている。
GoogleがOpenClaw経由のGemini利用ユーザーのアカウントを永久停止——月額$250請求継続のまま
2026年2月23日、Hacker Newsで140pt/107コメントを集めたレポートによると、GoogleはOpenClaw(サードパーティクライアント)経由でGeminiを使用していたGoogle AI Pro/Ultraユーザーを予告なしに永久停止した。技術的・経済的背景を整理する。