Open-Source Job Search Framework Built in Claude Code

A developer who was laid off built an open-source job search framework in Claude Code to handle the entire job search workflow. Instead of manually applying, the system automates key parts of the process while maintaining human oversight.
Key System Components
The framework includes several interconnected components:
- Structured self-profiling: Creates a detailed profile of skills, experience, behavioral fit, and salary benchmarks
- Automated job portal scraping: Currently configured for the Danish market, but the pattern is swappable for other markets
- Fit evaluation system: Scores job postings against the user's actual profile before any application drafting begins
- Drafter-reviewer agent pipeline: One agent drafts tailored CVs and cover letters, while a separate reviewer agent checks drafts from a recruiter's perspective
Critical Design Decisions
The developer made three key architectural choices:
- The system stops before the submit button - every application requires manual review and the user presses send themselves
- Every claim must be grounded in the user's real profile - the AI cannot fabricate skills or inflate experience
- A separate reviewer agent checks drafts from a recruiter's perspective before the user sees the final version
Practical Insights
The developer found that the fit evaluation component proved more valuable than polished cover letters. Having the system score postings against their actual profile before investing hours in applications changed their approach to job searching. They reported passing on roles they would have "panic-applied" to previously.
The entire framework is available as open-source on GitHub, and the developer wrote a longer piece explaining the thinking behind the system on LinkedIn. They're also available to answer questions about the implementation or the Claude Code skills/agents setup.
📖 Read the full source: r/ClaudeAI
👀 See Also

cstat: A Native Rust Status Line for Claude Code with 2ms Performance
cstat is a native Rust binary that replaces claude-hud's 62ms status line with a 2ms implementation by eliminating 24 subprocess spawns per invocation. It displays model info, rate limits, git status, context window usage, active tools, subagents, and task progress.

Claude Code skill generates App Store screenshots using Gemini AI
A new Claude Code skill called /aso-cosmicmeta-ss creates App Store and Google Play screenshots through a 6-phase workflow that analyzes codebases and uses Gemini AI for enhancement. The skill includes an approval gate to catch layout issues before using API credits.

DeepMind DiscoRL Meta Learning Update Rule Ported from JAX to PyTorch
A developer has ported DeepMind's DiscoRL meta learning update rule from the 2025 Nature article from JAX to PyTorch. The implementation includes a GitHub repository with a Colab notebook, API, and weights hosted on Hugging Face.

AIBrain adds persistent memory and self-improvement to Claude Code
AIBrain is a tool that gives Claude Code persistent memory between sessions with semantic search retrieval and self-improvement cycles. It includes 53 workflows, 44 skills, 9 MCP servers, and supports multi-agent mesh networking via Tailscale.