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

OpenClaw Skill Connects Agents to Knods.io UI for Workflow Creation
A developer has built an OpenClaw skill that enables agents to understand and create workflows within the Knods.io UI, allowing users to switch between specific agents like brand-specific ones instead of relying on Knods' built-in agent.

Xiaozhen: A Claude Code skill that digs three layers into root causes
Xiaozhen (小真) is a Claude Code skill that uses three mechanics—The Gift, Three Layers Deep, and The Prediction—to help users uncover what's actually bothering them rather than giving direct advice. It's installed with a one-line curl command and activated by typing /小真 in Claude Code.

AskFirst API adds human approval layer for AI agents
AskFirst is a REST API that lets AI agents pause for human approval before taking irreversible actions. It works with local models, hosted APIs, and any framework, providing email notifications, approve/deny options, and audit logs.

Ninetails Memory Engine V4.5: Int8 Quantization + LRU Cache Cuts Local MCP Memory to 60MB
The Ninetails Memory Engine V4.5 uses Int8 scalar quantization and LRU cache eviction to reduce vector storage from 6KB to 1.5KB per embedding, keeping the entire engine at 40-60MB RAM. It combines 70% vector similarity with 30% BM25 search in a fully local SQLite implementation.