cv-optimizer-feature

Rules for an automated feature that improves a CV, meaning a résumé, against a job description. A hiring-manager step evaluates the CV, and an optimizer revises it repeatedly until a stopping condition is reached.

In plain words
What is it for?
Use them when changing CV scoring and revision, cover-letter finalization, gap analysis, job-description fallbacks, iteration limits, or Redis-backed task state.
Why use it?
They define how the improvement loop, background work, and Redis lock behave. This prevents duplicate runs and makes partial progress available when limits or other stopping conditions occur.

Cursor rule for Claude Code

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add rules/eliornl/rolemule/cv-optimizer-feature
Clone the repo
git clone --depth 1 https://github.com/eliornl/rolemule

Made for: Claude Code.

Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 2,193 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00000 $0.02193
Opus 5 $0.00000 $0.01097
Sonnet 5 $0.00000 $0.00439
Haiku 4.5 $0.00000 $0.00219

Measured 2d ago against content hash 19afb7536f94, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

cv-optimizer-feature scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/rules/cv-optimizer-feature.mdc · 161 lines

How it starts

The opening of the file, as written. The whole thing — 161 lines — stays where its author put it; the contents beside it link to each section on GitHub.

CV Optimizer Feature

Standalone Agents (NOT in LangGraph workflow)

Three agents in agents/cv_optimizer_loop.py plus HiringManagerAgent in agents/hiring_manager.py run on demand after a workflow session reaches completed. They are orchestrated by CVOptimizationOrchestrator — never add them to job_application_workflow.py.

Hiring Manager (evaluate) → convergence check → CV Optimizer (revise) → repeat
→ Cover Letter Finalizer → optimized CV + cover letter + gap analysis

Loop stops when: score ≥ threshold, max iterations reached, score decreases vs best, plateau detected, or API quota/rate limit (stop_reason: api_rate_limit, status: partial — saves best progress so far; cover letter skipped if quota hit before it runs).

Initial CV is composed from the user profile via _compose_cv_from_profile(). Job description comes from job_input_data["job_input"] with fallback to _synthesize_jd_from_analysis(job_analysis) when raw paste text is missing.

Background Task with Atomic Redis Locking

from utils.cache import (
    set_cv_optimization_running,   # Returns False if already locked (409)
    clear_cv_optimization_running,
    cache_cv_optimization,
    get_cached_cv_optimization,    # Unwraps cache_set {"data": ...} wrapper
    invalidate_cv_optimization,
    is_cv_optimization_running,
)

claimed = await set_cv_optimization_running(session_id)
if not claimed:
    raise APIError(ErrorCode.RESOURCE_CONFLICT, "CV optimization is already running...", status_code=409)

background_tasks.add_task(_run_cv_optimization_background, session_id=..., user_id=str(user_id), ...)

Always clear the lock in finally and broadcast lifecycle events:

from api.websocket import (
    broadcast_cv_optimization_started,
    broadcast_cv_optimization_iteration,
    broadcast_cv_optimization_complete,
    broadcast_cv_optimization_error,
)

Background task uses get_session(), not get_database(). Top-level except must call await report_exception(exc, user_id=...) and log with exc_info=True.

Read the full file on GitHub · 161 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 161 lines · 0 tokens per session scan A 19afb7536f94

Subscribe to this mod's changes

cv-optimizer-feature is a cursor rule published in the GitHub repository eliornl/rolemule (37 stars, last pushed 2d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 2,193 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other cursor rules, from other repositories

cursorrules

Agent2 is a framework for building production AI agents with typed HTTP APIs. PydanticAI handles the agent loop. Agent2 handles everything else: API, auth, pause/resume, approvals, provider routing, knowledge search.

Artesiana/agent2 · 399 tokens

product-manager

Holistic product leader who owns the full product lifecycle — from discovery and strategy through roadmap, stakeholder alignment, go-to-market, and outcome measurement. Bridges business goals, user needs, and technical reality to ship the right thing at the right time.

Treevu-ai/cli-market-world · 5,350 tokens

developer-advocate

Expert developer advocate specializing in building developer communities, creating compelling technical content, optimizing developer experience (DX), and driving platform adoption through authentic engineering engagement. Bridges product and engineering teams with external developers.

Treevu-ai/cli-market-world · 38 tokens

api-tester

Expert API testing specialist focused on comprehensive API validation, performance testing, and quality assurance across all systems and third-party integrations.

Treevu-ai/cli-market-world · 23 tokens

architectural-and-structural-rules

The project follows a layered architecture with clear separation of concerns.

mrharishkumar/fastapi-cursor-boilerplate · 559 tokens

angular-20

This rule provides comprehensive best practices and coding standards for Angular development, focusing on modern TypeScript, standalone components, signals, and performance optimizations.

angular/angular · 0 tokens