llm-job-pipeline: Command for Claude Code

.claude/commands/jobs-review.md

jobs-review is a command for Claude Code from ncalavera/llm-job-pipeline. It costs 55 tokens per session (5,068 once invoked), scanned A, original, MIT.

A command hub for reviewing vacancies, meaning job openings, after they have been scored. It offers status, detailed review, archiving, and a thin command-line triage mode.

In plain words
What is it for?
Checking the review backlog, interviewing liked vacancies, archiving low-scoring ones, and inspecting or updating individual jobs.
Why use it?
It puts several review tasks behind one entry point and controls when changed data is published.

Command for Claude Code

Written for Claude Code: installed under .claude/.

This is ncalavera/llm-job-pipeline's own configuration. It tells Claude Code how to work on llm-job-pipeline itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything llm-job-pipeline configures →

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python3 scripts/vac.py mark <uuid> unseen.

Reuse

Borrowing it

Nothing to install: this file belongs to ncalavera/llm-job-pipeline. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/ncalavera/llm-job-pipeline/main/.claude/commands/jobs-review.md
Clone the repo
git clone --depth 1 https://github.com/ncalavera/llm-job-pipeline

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for jobs-review

README.md
[![agentmods](https://agentmods.dev/badge/commands/ncalavera/llm-job-pipeline/jobs-review/github.svg)](https://agentmods.dev/commands/ncalavera/llm-job-pipeline/jobs-review)
Your own site
<a href="https://agentmods.dev/commands/ncalavera/llm-job-pipeline/jobs-review"><img src="https://agentmods.dev/badge/commands/ncalavera/llm-job-pipeline/jobs-review/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for jobs-review

Your own site · 80×15
<a href="https://agentmods.dev/commands/ncalavera/llm-job-pipeline/jobs-review"><img src="https://agentmods.dev/badge/commands/ncalavera/llm-job-pipeline/jobs-review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 55 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 5,068 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00055 $0.05068
Opus 5 $0.00028 $0.02534
Sonnet 5 $0.00011 $0.01014
Haiku 4.5 $0.00006 $0.00507

Measured 2d ago against content hash 7c2b4ba5a5eb, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

jobs-review scanned grade A with 1 finding 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s -o /dev/null -w '%{http_code}\n' https://<your-dashboard-host>/api/vacancies
.claude/commands/jobs-review.md · 501 lines

How it starts

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

/jobs-review

One entry point for reviewing vacancies after scoring. The first argument picks the mode:

Invocation Mode
/jobs-review (no arg) Status menu — print counts, let the user pick
/jobs-review apply Deep structured interview of liked vacancies
/jobs-review archive Interactive archival of low-scoring unseen vacancies
/jobs-review vac [list|show|mark|open|companies] ... Thin triage CLI (pass-through to scripts/vac.py)

Never auto-drop into apply. With no argument, show the menu and wait.

Reply in the user's product language. Read ## OUTPUT_LANGUAGE from config/user_profile.md (resolve with python3 -c "import sys;sys.path.insert(0,'scripts');import product_language as p;print(p.resolve())"en/ru) and write ALL of your chat — menus, prompts, interview questions, summaries — in that language.

After any mode that mutates state (apply, archive) — run the Publish step at the end (see bottom). vac mutations the user makes by hand can also publish on request, but the menu/CLI itself does not auto-publish.


Mode: status menu (no argument)

Print the current review backlog so the user knows what is worth doing, then ask which mode to enter.

from config import LLM_SCORE_THRESHOLD
from database_supabase import load_vacancies, get_protected_ids

v = load_vacancies()
threshold = LLM_SCORE_THRESHOLD  # default = 20

liked = [x for x in v.values() if x.get('status') == 'liked']

protected_ids = get_protected_ids()
archivable = [
    (vid, vac) for vid, vac in v.items()
    if vid not in protected_ids
    and vac.get('llm_score') is not None
    and vac['llm_score'] < threshold
]

Render:

JOBS REVIEW
============================================================
  {len(liked):3d} liked awaiting apply-decision   → /jobs-review apply
  {len(archivable):3d} low-score archivable (< {threshold})    → /jobs-review archive
  {len(v):3d} vacancies in DB total              → /jobs-review vac list
============================================================

Read the full file on GitHub · 501 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 Changed · +10 lines 7c2b4ba5a5eb
  2. 7d ago Changed cf6471245fbe
  3. 12d ago First seen · 491 lines · 55 tokens per session scan A 7a74c3f09bab

Subscribe to this mod's changes

jobs-review is a command published in the GitHub repository ncalavera/llm-job-pipeline (2 stars, last pushed 3d ago), licensed MIT. It adds 55 tokens to every session and 5,068 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.