applyr
Your AI agent's job application tracker — score offers, detect duplicates, generate ATS-safe CVs, all from the terminal.
applyr is the storage layer; your AI coding agent is the brain. Paste a job offer, get a weighted 0–100 compatibility score, an APPLY / SKIP recommendation, skill gaps, and a tailored ATS-safe CV — local, private, agent-native.
Fast to start — one command. Local-first — SQLite on your machine, no API keys, nothing leaves your system unless you opt in to the update check (check_updates in applyr.toml, off by default).
Features • Quick Start • Commands • Scoring • Configuration • Contributing
pip install applyr && applyr init && applyr setup-agent
[!NOTE] Requires Python 3.11+ and an AI coding agent (Claude Code, Cursor, OpenCode, or any agent that reads instruction files).
How it works
You: paste a job offer into your AI agent
|
v
Agent: reads cv-master.md + evaluates 6 topics
runs applyr add '<json>'
|
v
applyr: 82% compatibility (>= 80% threshold_apply)
>> RECOMMENDATION: APPLY
Skill gaps: English, Experience
| (you confirm)
v
Agent: blind recruiter evaluation (applyr cv review-blind)
generates CV with tailoring plan (applyr cv generate)
└─ plan auto-created: evidence map, priorities, forbidden claims
applies plan to fill CV skeleton from cv-master.md
verifies every claim (applyr cv verify) — PASS
checks ATS compatibility (applyr cv ats-check)
delivers PDF ready to send
applyr is the storage layer. Your AI agent is the brain.
The CV tailoring pipeline flows through structured roles:
Matcher → Recruiter → CV Architect → CV Writer → Fact Checker → Final
(fit) (quality) (plan) (execute) (verify)
Each role reads the previous output — no information is lost between steps.
Features
- Three-state recommendation — APPLY (>=80%), MAYBE (60-79%), LOW MATCH (<60%) with configurable thresholds
- Skill-level breakdown — Strong/Partial/Missing per topic with icons (✓/△/✕)
- "Why you match" — Executive summary of strengths and weaknesses
- Weighted scoring — 6 configurable topics (tech stack 35%, experience 35%, projects 15%, education 5%, english 5%, cultural fit 5%), with a per-offer
weights_usedsnapshot sorescoreand future rebalances never corrupt historical scores - Score breakdown — Weighted contribution per topic so you understand why 78%
- CV tailoring plan — automatic evidence map per requirement (STRONG/WEAK/MISSING), priorities (P0-P3), forbidden claims, and section strategy — generated on
cv generate, saved to DB - Claim-grounding gate —
cv verifychecks every technology, metric, and employer name in a generated CV against yourcv-master.md, deterministically — no LLM call, exit 0 (PASS) or 1 (BLOCKED, lists unsupported claims). JSON output includes evidence density metric and Fact Checker-compatible issue format - Agent role instructions — dedicated
.mdfiles per role (Matcher, Recruiter, CV Architect, Fact Checker) inapplyr/templates/agents/, referenced from the main agent instructions - Duplicate detection — same company+title? applyr catches it before you waste time
- ATS-safe CVs — locked single-column CSS, standard fonts, no images. Your agent fills content, never touches structure
- ATS compatibility check — validates CV against ATS rules (headers, formatting, keywords)
- Keyword extraction — pulls keywords from job offers and matches against your CV
- Bullet point optimization — analyzes weak verbs, suggests strong alternatives, detects missing metrics
- Cover letter generation — tailored letters from your profile + offer data
- CV comparison — compare two CV versions (ATS compatibility score delta, keyword coverage)
- Recruiter review — built-in prompt scores your CV 0-100 with specific improvements
- Response rate tracking — measure application performance with monthly trends
- Score calibration —
applyr statsreports real response/interview rates per score band, so you can see whether a higher compatibility score actually predicts a better outcome - Confidence + evidence — score each topic with a
high/medium/lowcertainty and a justification;add/showsurface both, so a score is never just a bare number - 28 commands — pipeline, stats, gaps, trends, salary insights, follow-ups, compare, rescore, export, and more
- Local and private — SQLite on your machine. No API keys, no subscriptions, nothing leaves your system
- Agent-native — ships with
AGENT_INSTRUCTIONS.mdthat tells Claude/Cursor/OpenCode exactly what to do
Quick start
1. Install and initialize
pip install applyr
applyr init
This creates ~/.applyr/ with config, database, and agent instructions, plus a starter
cv-master.md in ~/Documents/applyr/ — outside the dotfile since you edit it by hand often.
2. Fill your profile
Edit ~/Documents/applyr/cv-master.md with your complete professional profile. This is the only source of truth — the agent reads it to score offers and write CVs.
3. Connect your agent
applyr setup-agent # Auto-detects Claude/Cursor/OpenCode
applyr setup-agent --agent claude # Or specify: claude | cursor | opencode | generic
Done. Paste a job offer into your agent and say "analyze this".
What your agent sees
You: "Analyze this AI Engineer posting at Acme Corp"
Agent: Checks duplicates → none found
Scores: tech_stack 85%, experience 40%, projects 90%...
applyr add '<json>'
→ "82% match. APPLY recommended. Generate CV?"
You: "Yes"
Agent: applyr cv generate 1 → fills from cv-master.md
applyr cv review → ATS compatibility score: 87/100, READY TO SEND
applyr cv verify → PASS, every claim grounded in cv-master.md
applyr cv pdf → delivers PDF
You: "Analyze this Data Analyst role at SmallCo"
Agent: applyr add '<json>'
→ "42% match. SKIP recommended. Gaps: no R/Tableau, 0 data roles."
You: "What should I learn?"
Agent: applyr gaps → "Experience: seen in 15 offers, avg gap 20%"
Commands
Tracking
applyr add '<json>' # Register offer (agent builds the JSON)
applyr list [--status S] # All offers or filtered
applyr show <id> # Full detail + topic scores
applyr pipeline # Grouped by status
applyr update <id> <status> # Change status, add notes
applyr delete <id> # Remove an offer
applyr search <keyword> # Search by company/title/tech
applyr search --company <name> # Exact company match (same definition add uses for duplicates)
Analytics
applyr stats # Conversion funnel + metrics
applyr gaps # Skills to improve (by frequency)
applyr trends # Applications per week
applyr summary --json # Weekly summary for LLM
applyr compare 1 3 4 # Side-by-side offers
applyr rescore <id> # Recompute compatibility_pct under current weights
applyr plan # Learning priorities
applyr salary [--seniority mid] # Salary insights
applyr followups # Overdue + upcoming
CV pipeline
applyr cv generate <id> # Markdown CV with YAML frontmatter
applyr cv review <file.md> # Recruiter review prompt (accepts .md or .html)
applyr cv review-blind <id> # Independent CV evaluation (no score bias)
applyr cv verify <file.md> # Deterministic claim-grounding gate (no LLM, exit 0/1)
applyr cv pdf <file.md> # Markdown → ATS-HTML → PDF via Chrome
applyr cv ats-check <file.html> # Check ATS compatibility (0-100 score)
applyr cv keywords <id> # Extract & match keywords vs CV
applyr cv bullet-optimize <file> # Analyze bullet points (weak verbs, metrics)
applyr cv cover-letter <id> # Generate tailored cover letter
applyr cv compare <v1.html> <v2.html> # Compare two CV versions
applyr cv stats # CV performance analytics
Response tracking
applyr response-rate # Application response rate + trends
System
applyr doctor # Health check
applyr export --format json # Export everything
applyr version # Show version
Aliases and flags
| Alias | Command | Flag | Effect | |
|---|---|---|---|---|
ls |
list |
--json |
Structured JSON output | |
st |
stats |
--no-color |
Disable colors (also respects NO_COLOR) |
|
fu |
followups |
|||
cmp |
compare |
|||
sal |
salary |
Scoring
Each topic is scored 0-100 by the AI agent, then weighted:
| Topic | Weight | What it measures |
|---|---|---|
tech_stack |
35% | Required technologies vs. your skills |
experience |
35% | Years, seniority, industry match |
projects |
15% | Portfolio relevance to the role |
education |
5% | Degree level and field |
english |
5% | Language level vs. requirement |
cultural_fit |
5% | Work mode, location, values |
Formula: sum(score * weight) / sum(weights) — configurable in ~/.applyr/applyr.toml.
Every offer stores a weights_used snapshot of the weights that actually produced its
score, so changing [weights] later never corrupts the meaning of scores already stored.
Run applyr rescore <id> to recompute one offer's score under the current weights; use
applyr show <id> to see which weights produced any offer's stored score.
Thresholds: score >= 80% → APPLY, 60-79% → MAYBE, below 60% → LOW MATCH. Configurable via threshold_apply/threshold_maybe in applyr.toml.
Status flow
pending ──> applied ──> waiting ──> in_process ──> offer
| | |
v v v
discarded rejected rejected
Configuration
# ~/.applyr/applyr.toml
[general]
threshold_apply = 80 # Score >= this → APPLY
threshold_maybe = 60 # Score >= this → MAYBE (below → LOW MATCH)
followup_days = 10 # Days before follow-up reminder
[weights] # Auto-normalized, no need to sum to 1.0
tech_stack = 35
experience = 35
projects = 15
education = 5
english = 5
cultural_fit = 5
Offer fields reference
| Field | Type | Valid values | Required |
|---|---|---|---|
title |
string | Any | Yes |
company |
string | Any | No |
summary |
string | Any | No |
date_received |
string | YYYY-MM-DD |
No |
date_applied |
string | YYYY-MM-DD |
No |
status |
string | pending applied waiting in_process rejected discarded offer |
No |
canal |
string | linkedin_easy linkedin_direct email portal referral other |
No |
work_mode |
string | remote hybrid onsite |
No |
location |
string | Any | No |
salary_min / salary_max |
integer | Amount | No |
salary_period |
string | annual monthly hourly |
No |
seniority_level |
string | trainee entry_level junior mid senior lead director |
No |
role_category |
string | backend frontend fullstack ai devops data mobile qa other |
No |
language |
string | en es — the language the CV is written in. Defaults to [cv] language in applyr.toml |
No |
tech_stack |
string | Comma-separated | No |
job_url |
string | URL | No |
contact_name / contact_role |
string | Any | No |
cover_letter |
integer | 0 or 1 |
No |
notes |
string | Any | No |
topics |
object | See Scoring section | No |
Project structure
applyr/
cli.py # Entry point
config.py # TOML config
db.py # SQLite schema (offers: 36 columns, 6 tables)
scoring.py # Weighted scoring engine + CV_TAILORING_PLAN builder
cv.py # Markdown CV + Chrome PDF + recruiter review
evidence.py # Deterministic claim parsing (parse_evidence, is_evidenced)
ats.py # ATS compatibility checking + keyword matching
analytics.py # CV comparison + response rate tracking
md_render.py # Narrow markdown → ATS-HTML converter
commands/
core.py # add, list, show, update, delete, search, init, setup-agent
analytics.py # stats, gaps, trends, pipeline, compare, plan, salary
workflow.py # export, doctor
templates/
AGENT_INSTRUCTIONS.md # Main agent dispatcher (references agent roles)
agents/
matcher.md # Matcher role: evaluates offer fit
recruiter.md # Recruiter role: blind CV evaluation
architect.md # CV Architect role: builds tailoring plan
fact_checker.md # Fact Checker role: verifies claims
ats_rules.json # ATS validation rules
bullet_patterns.json # Bullet optimization patterns
cover_letter.md # Cover letter template
tests/
test_tailoring.py # Evidence evaluation + tailoring plan tests
test_cli_routing.py # CLI router coverage
test_cv.py # CV pipeline tests
test_ats.py # ATS compatibility tests
test_analytics.py # Analytics tests
test_cv_bullets.py # Bullet optimization tests
test_cover_letter.py # Cover letter tests
test_md_render.py # Markdown renderer tests
test_db.py # Schema + migration tests
test_scoring.py # Scoring engine tests
test_config.py # Config loading tests
test_validators.py # Input validation tests
...
Development
git clone https://github.com/DeibyGS/applyr.git
cd applyr
pip install -e ".[dev]"
pytest # 828 tests, ~5s
Built with AI
applyr was designed to work for AI agents — it made sense to build it with one, as a pair programming partner.
| Human-owned | AI-assisted (human-reviewed) |
|---|---|
| Domain model & 32-column schema | Python implementation |
| Scoring engine & threshold logic | CLI scaffolding |
| ATS CV template & locked CSS | Test suite (715 tests) |
| Architecture & code review | Module split & CI |
Process: Spec (SDD) → AI implementation → Human review → Test → Merge
Principles & metrics
Principles:
- AI never made product decisions — domain model and UX flow are human-designed.
- Every feature started from a written spec (SDD) before any code.
AGENT_INSTRUCTIONS.mdis a contract, not a suggestion.- PRs follow a 400-line budget with work-unit commits.
Metrics:
| PRs | 42 (all human-reviewed) |
| Tests | 828 (cli, cv, ats, analytics, bullets, cover_letter, md_render, db, scoring, config, validators, tailoring) |
| Commands | 27 + 5 aliases |
| Schema | 36 columns, 6 tables, 13 migrations |
| Models | Claude Opus 4.6, DeepSeek V4 Flash |
Measured with ClaudeStat.
License
MIT — use it, fork it, improve it.
Release files for applyr 1.13.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| applyr-1.13.1.tar.gz | 203.8 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| applyr-1.13.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 339.7 kB
Release files / applyr-1.13.1.tar.gz
| Download URL | applyr-1.13.1.tar.gz |
|---|---|
| Size | 203.8 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
19db149076f4452b67d3bfe5935bc46caec25c0d90fdf71339da345354f728da
|
|
BLAKE2b-256 checksum How to use checksums |
d9d6f2d805db0737b158e9510745d90f4716c80e8fb20074dc46a7448ae994a3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / applyr-1.13.1-py3-none-any.whl
| Download URL | applyr-1.13.1-py3-none-any.whl |
|---|---|
| Size | 135.9 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
d8761a73a4e19b18a8e6004450de6e58e59709a438eadbb4662e934d732a1602
|
|
BLAKE2b-256 checksum How to use checksums |
4f99cad384e3ade481cd06e6f037d7874f6e805b42ae481331d0983a8ce34157
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency log