← Reddit

I made a 0 token free job scrapper after using Claude Pro coding for a day!

Reddit · Kindly-Plastic3553 · April 22, 2026
A free, open-source job scraper tool was created that aggregates listings from LinkedIn, Indeed, Greenhouse, Lever, Ashby, Himalayas and other platforms, then automatically scores each job against a user's resume without requiring tokens or API keys. The tool extracts skills and job titles from resume files and evaluates job postings based on title match, skill overlap, industry fit, location, and salary range, displaying results in a local dashboard with pros and gaps for each listing. Built with semantic skill matching and deduplication features, the tool filters job listings to surface the most relevant matches from potentially hundreds of postings.

Detailed Analysis

A developer frustrated with two weeks of manual LinkedIn job searching built and open-sourced a fully local job pipeline called Job Tracker Lite, constructed entirely with the assistance of Claude Code over the course of a single day. The tool scrapes job listings from multiple major platforms — LinkedIn, Indeed, Greenhouse, Lever, Ashby, and Himalayas, among others — and scores each listing on a scale of one to ten against the user's actual resume, which it parses automatically from a .docx file. A locally hosted dashboard at localhost:3000 presents ranked results with per-job explanations of strengths and gaps. The project is MIT licensed, requires no API keys, sends no data off-device, and operates entirely without token consumption, positioning itself as a direct functional alternative to AI-powered job scrapers that can become expensive at scale.

The technical architecture of the tool reflects thoughtful engineering despite its rapid development timeline. The scoring engine evaluates each job listing across five dimensions — title match, skill overlap, industry fit, location, and salary range — and applies semantic skill matching so that conceptually equivalent terms, such as "managed teams" and "team leadership" or "Salesforce" and "CRM," are recognized as equivalent rather than penalized as mismatches. Smart deduplication prevents the same posting appearing across multiple job boards from inflating the result count. The system also offers a Lite mode completing seven queries in under ten minutes and a Pro mode running 31 queries for a comprehensive sweep, along with filters for salary floors, regions, and niche industries. Per-job notes, applied tracking, and export to PDF or Excel are included, as is a one-click Windows installer requiring no administrative rights.

The project's creation using Claude Code is itself a notable data point in the broader narrative of AI-assisted software development. Claude Code, Anthropic's agentic coding tool, has increasingly been positioned as a way for developers — including those without deep software engineering backgrounds — to produce functional, deployable applications within compressed timeframes. The creator's explicit attribution of the build to a single day of Claude Pro coding sessions illustrates a concrete productivity ceiling that AI-assisted development is pushing upward, particularly for tooling projects with well-defined requirements. This pattern mirrors a growing category of Claude Code use cases in which the AI is employed not as a query-answering assistant but as a collaborative implementation partner capable of scaffolding entire projects.

The broader context surrounding zero-token or low-cost job automation tools reveals a clear market tension. Commercial AI-powered job scraping and resume-matching services exist, but they either charge per-token API fees that accumulate quickly at scale or bundle functionality into subscription products priced at tens to hundreds of dollars per month. The open-source, fully local approach taken by Job Tracker Lite sidesteps both cost structures by replacing AI inference entirely with deterministic scoring logic — a trade-off that sacrifices some flexibility in interpretation but eliminates ongoing operating expenses entirely. Research into comparable tools confirms that even within the Claude ecosystem, developers have begun engineering around token costs by using cleaned HTML pipelines, semantic caching, and lightweight model alternatives, reflecting a maturing developer culture that treats AI inference as a resource to be conserved rather than consumed freely.

The release is also emblematic of a wider trend in which job seekers are engineering their own tooling rather than relying on platforms that have progressively restricted automated access to their data. LinkedIn in particular has tightened scraping policies over time, and the proliferation of community-built scrapers — often open-sourced and rapidly iterated upon — suggests that demand for programmatic job search far outpaces what official APIs provide. That such a tool can now be prototyped in a day using Claude Code and released with production-quality features like deduplication, semantic matching, and a polished dashboard underscores how dramatically AI-assisted development has compressed the gap between problem identification and deployable solution, a dynamic with compounding implications for the pace of open-source software creation in 2026 and beyond.

Read original article →