Home/AI Agents/ai-job-search
ai-job-search logo

ai-job-search

MadsLorentzen/ai-job-search

AI job application framework built on Claude Code for evaluating postings, tailoring CVs, writing cover letters, and interview preparation.

GraphCanon updated today · GitHub synced today

21k
Stars
6.1k
Forks
3
Open issues
104
Watchers
1d
Last push
TypeScript MITCreated Mar 18, 2026

Trust & integrity

Full report
Maintenance
Very active (0d since push)
As of today · Source: github_public_v1
Provenance
Not a fork · Personal account
As of today · Source: github_public_v1
Security (OSV)
No lockfile
As of today · Source: none

Public GitHub metadata and optional OSV dependency scans. Signals, not a guarantee. Trust methodology.

Overview

A tool to streamline the process of applying for jobs by leveraging AI to evaluate job postings, tailor resumes, write cover letters, and prepare for interviews. Utilizes various search agents for different job platforms.

Capability facts

Languages
typescript

Source: github.language · Jul 11, 2026

Categories

Tags

README

2. Install job search tools

PowerShell:

$tools = @("jobbank-search", "jobdanmark-search", "jobindex-search", "jobnet-search", "linkedin-search", "freehire-search")
foreach ($tool in $tools) {
  Set-Location ".agents/skills/$tool/cli"
  bun install
  Set-Location "..\..\..\.."
}

Bash / zsh / Git Bash:

for tool in jobbank-search jobdanmark-search jobindex-search jobnet-search linkedin-search freehire-search; do
  cd .agents/skills/$tool/cli && bun install && cd ../../../..
done

For linkedin-search and freehire-search the install is optional: both have zero runtime dependencies and run with plain bun; bun install only pulls TypeScript dev types.