recheck-batch

recheck-batch is a skill for Claude Code from leopu00/job-hunter-team. It costs 112 tokens per session (911 once invoked), scanned A, original, MIT.

A batch checker for job listings that have already been reviewed, confirming whether their web pages are still available.

In plain words
What is it for?
It checks queued listings, updates the review date for open listings, and reports listings that are closed or cannot be verified.
Why use it?
It groups routine checks together, reducing repeated manual work while leaving unclear cases for human review.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is Bash(python3 /app/shared/skills/recheck_batch.py *), Bash(python3 /app/shared/skills/db_update.py *), Bash(python3 /app/shared/skills/recheck_liveness.py *).

Good fit It checks queued listings, updates the review date for open listings, and reports listings that are closed or cannot be verified.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/leopu00/job-hunter-team
agentmods
npx agentmods add skills/leopu00/job-hunter-team/recheck-batch

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 recheck-batch

README.md
[![agentmods](https://agentmods.dev/badge/skills/leopu00/job-hunter-team/recheck-batch/github.svg)](https://agentmods.dev/skills/leopu00/job-hunter-team/recheck-batch)
Your own site
<a href="https://agentmods.dev/skills/leopu00/job-hunter-team/recheck-batch"><img src="https://agentmods.dev/badge/skills/leopu00/job-hunter-team/recheck-batch/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 recheck-batch

Your own site · 80×15
<a href="https://agentmods.dev/skills/leopu00/job-hunter-team/recheck-batch"><img src="https://agentmods.dev/badge/skills/leopu00/job-hunter-team/recheck-batch.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 112 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 911 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00112 $0.00911
Opus 5 $0.00056 $0.00456
Sonnet 5 $0.00022 $0.00182
Haiku 4.5 $0.00011 $0.00091

Measured 11d ago against content hash fe07bb7996b8, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

recheck-batch 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 11d 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.

la verifica tiered di `recheck_liveness.py` (curl → browser, mai falso-aperto).
agents/_skills/recheck-batch/SKILL.md · 57 lines

How it starts

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

recheck-batch — il recheck della modalità cura, senza sprecare un turno a posizione

Perché esiste

Ricontrollare una posizione GIÀ analizzata è una frazione del check di una posizione nuova: niente ri-analisi, niente ri-lettura della JD, niente metadata. Il giro manuale (coda → una posizione → recheck-liveness → db_update → ripeti) costava 78-86kT a posizione perché ogni passo era un turno LLM. Questo batch comprime tutta la parte meccanica in UN comando.

Come si usa (UN turno per batch)

python3 /app/shared/skills/recheck_batch.py            # batch di 10 dalla coda
python3 /app/shared/skills/recheck_batch.py --limit 5

Prende le posizioni dalla coda next-for-recheck-due (vive, score ≥ policy, non verificate da > 14gg, SCORE DESC: prima le migliori) e per ognuna esegue la verifica tiered di recheck_liveness.py (curl → browser, mai falso-aperto).

Il report ha tre esiti:

  • OK aperte e aggiornate — verificate OPEN: last_checked è già aggiornato, escono dalla coda per 14 giorni. Non toccarle, non rileggerle, zero lavoro tuo.
  • DA GIUDICARE — evidenza di chiusura (404/410, closed-marker, o expires_at passata). Qui entri TU.
  • NON VERIFICABILI — host JS/authwall e browser non conclusivo. Qui entri TU (one-shot).

Il giudizio è tuo — lo script NON esclude MAI (ordine utente 2026-07-30)

Uno script statico può sbagliare e buttare una posizione ancora viva. Per ogni posizione DA GIUDICARE: guarda l'evidenza riportata; se serve, UN solo sguardo diretto alla pagina. Se sei sicuro al 100% che è scaduta/chiusa:

python3 /app/shared/skills/db_update.py position <ID> --status excluded \
  --is-open false --last-open-check now --notes "[SCADUTO] <evidenza>"

Se invece è ancora viva (falso positivo dello script):

python3 /app/shared/skills/db_update.py position <ID> --is-open true --last-checked now

Per ogni NON VERIFICABILE: one-shot col browser sull'URL; poi decidi come sopra. Se resta non verificabile → --last-checked now + nota [OPEN_UNVERIFIED], is_open invariato (mai spacciarla per aperta).

Read the full file on GitHub · 57 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. 11d ago First seen · 57 lines · 112 tokens per session scan A fe07bb7996b8

Subscribe to this mod's changes

recheck-batch is a skill published in the GitHub repository leopu00/job-hunter-team (49 stars, last pushed 2d ago), licensed MIT. It adds 112 tokens to every session and 911 once invoked, about $0.0006 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-30.