remove-hot-job

remove-hot-job is a skill for Claude Code from Mahashwetha/Job-search-email-system-claude. It costs 90 tokens per session (662 once invoked), scanned A, original, MIT.

A tool for managing the fixed list of LinkedIn job listings shown at the top of a daily email. It can remove individual jobs, clear a job category, or block listings from returning.

In plain words
What is it for?
Use it to remove or clear hot jobs by company, job title, or category, and to stop dismissed listings from reappearing.
Why use it?
It prevents unwanted jobs from staying in the email or coming back after removal. It also keeps applied jobs separate from jobs deliberately dismissed.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: reads .claude/ paths.

Good fit Use it to remove or clear hot jobs by company, job title, or category, and to stop dismissed listings from reappearing.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/mahashwetha/job-search-email-system-claude/remove-hot-job
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.

Any agent
npx skills add Mahashwetha/Job-search-email-system-claude --skill remove-hot-job
Clone the repo
git clone --depth 1 https://github.com/Mahashwetha/Job-search-email-system-claude

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 remove-hot-job

README.md
[![agentmods](https://agentmods.dev/badge/skills/mahashwetha/job-search-email-system-claude/remove-hot-job/github.svg)](https://agentmods.dev/skills/mahashwetha/job-search-email-system-claude/remove-hot-job)
Your own site
<a href="https://agentmods.dev/skills/mahashwetha/job-search-email-system-claude/remove-hot-job"><img src="https://agentmods.dev/badge/skills/mahashwetha/job-search-email-system-claude/remove-hot-job/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 remove-hot-job

Your own site · 80×15
<a href="https://agentmods.dev/skills/mahashwetha/job-search-email-system-claude/remove-hot-job"><img src="https://agentmods.dev/badge/skills/mahashwetha/job-search-email-system-claude/remove-hot-job.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 90 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 662 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00090 $0.00662
Opus 5 $0.00045 $0.00331
Sonnet 5 $0.00018 $0.00132
Haiku 4.5 $0.00009 $0.00066

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

Security

Grade A, and why

remove-hot-job 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 12d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/blocklist_job.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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/skills/remove-hot-job/SKILL.md · 52 lines

How it starts

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

Remove Hot Jobs

Manage the hot jobs list in daily_hot_jobs.json. Hot jobs are sticky LinkedIn listings shown at the top of the daily email, 5 per category (or 8 for Tech Lead / AI categories).

Key concepts

  • current_jobs: dict of category → list of job objects. Clear a slot by removing from this list — it backfills on next run.
  • blocklist: list of [company, title] pairs. Blocklisted jobs never reappear in that category.
  • If a job was applied to (company is in the tracker), do NOT blocklist it — the system auto-removes tracker companies naturally.
  • If a job is being dismissed without applying, blocklist it so it doesn't come back.

Categories (exact keys in JSON)

  • Senior Java
  • Backend Java
  • Product Owner
  • Assistant Project Manager
  • Tech Lead / Lead Developer
  • AI / GenAI Engineer

What to do based on what the user says

Remove a single job (applied or dismissed) — remove it from current_jobs[category]. If dismissed (not applied), also add [company.lower(), title.lower()] to blocklist.

Clear all jobs in a category — set current_jobs[category] = []. For each job, blocklist it unless the user says they applied to it (or it's already in the tracker).

Remove from blocklist — find and delete the matching [company, title] pair from the blocklist array.

List current hot jobs for a category — read and print current_jobs[category].

Steps

  1. If the user didn't specify which jobs they applied to vs dismissed, ask — applied jobs should NOT be blocklisted.
  2. For each job to blocklist, run the script:
    python .claude/skills/remove-hot-job/scripts/blocklist_job.py "Company Name" "Job Title"
    
    Run from the project root (C:/Users/mahas/Learnings/claude-job-agent).
    • Title is optional — omit to blocklist all jobs from that company.
    • The script removes from current_jobs AND adds to blocklist in one shot.
    • Uses ensure_ascii=False so no encoding issues.
  3. Confirm output to the user: removed from current_jobs + blocklisted.

Read the full file on GitHub · 52 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 12d ago First seen · 52 lines · 90 tokens per session scan A d380ab559e90

Subscribe to this mod's changes

remove-hot-job is a skill published in the GitHub repository Mahashwetha/Job-search-email-system-claude (9 stars, last pushed 12d ago), licensed MIT. It adds 90 tokens to every session and 662 once invoked, about $0.0005 per session on Opus 5. 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-31.

Related

Other skills, from other repositories

mix-compression

Reduce mix output noise (5-15% token savings) by installing rtk filters that compress mix test/credo/dialyzer/compile output before it reaches Claude. Use when long mix output floods context.

oliver-kriska/claude-elixir-phoenix · 48 tokens

phx-mix-compression

Reduce mix output noise (5-15% token savings) by installing rtk filters that compress mix test/credo/dialyzer/compile output before it reaches Claude. Use when long mix output floods context.

oliver-kriska/claude-elixir-phoenix · 51 tokens

quick

Implement small Phoenix changes without planning — add validations, update routes, fix components, create migrations. Use for single-file edits under 50 lines.

oliver-kriska/claude-elixir-phoenix · 31 tokens

phx-freeze

Apply an advisory edit scope in this session. Use for read-only or directory-scoped work; no enforcement hook is installed.

oliver-kriska/claude-elixir-phoenix · 30 tokens

job-application-agent

Finds, evaluates, fills, submits, and tracks a candidate's own job applications using a verified resume, evidence-based targeting, secure local profile storage, and browser automation. Use for onboarding or migrating a job-search profile, searching active roles, assessing a posting, applying to an authorized URL or…

vaibhavarora14/job-application-agent · 74 tokens

workflow-automation

Automate construction data workflows. Build ETL pipelines and DAG workflows for recurring tasks.

datadrivenconstruction/DDC_Skills_for_AI_Agents_in_Construction · 21 tokens