job-search

job-search is a skill for Claude Code from archugunov/pm-job-search. It costs 181 tokens per session (6,101 once invoked), scanned A, original, MIT.

A three-phase workflow for finding job postings that match a person's profile and checking companies already being monitored. It stores results in Markdown files rather than Notion.

In plain words
What is it for?
Use it for weekly job searches, discovering roles, rechecking monitored companies, or limiting a run to discovery or monitoring. An optional Playwright integration can verify whether links still work.
Why use it?
It reduces repeated manual searching by combining new-job discovery with checks for updates at tracked companies.

Skill for Claude Code

Written for Claude Code: ${CLAUDE_PLUGIN_ROOT} variable. Also seen: mentions subagents; mentions Claude Code.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the pm-job-search plugin — 13 skills, 6 agents shipped together

Good fit Use it for weekly job searches, discovering roles, rechecking monitored companies, or limiting a run to discovery or monitoring. An optional Playwright integration can verify whether links still work.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add archugunov/pm-job-search
Claude Code
/plugin install pm-job-search

Made for: Claude Code.

Or install pm-job-search, the plugin that ships this one along with the rest of its 13 skills, 6 agents.

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 job-search

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/archugunov/pm-job-search/job-search"><img src="https://agentmods.dev/badge/skills/archugunov/pm-job-search/job-search.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 181 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,101 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.00181 $0.06101
Opus 5 $0.00090 $0.03050
Sonnet 5 $0.00036 $0.01220
Haiku 4.5 $0.00018 $0.00610

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

Security

Grade A, and why

job-search 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.

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.

plugin/skills/job-search/SKILL.md · 285 lines

How it starts

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

/job-search — three-phase discovery and monitoring sweep

Architecture lifted from the predecessor workflow with two changes: storage is md files (not Notion); Playwright is optional (not required). Three phases: pre-flight, parallel work, final merge.

Voice: every prompt (search-query review, recheck-failure handling) and the chat summary follow ${CLAUDE_PLUGIN_ROOT}/TONE.md. Phase 2 auto-files every surviving candidate (no pick step, no preview table). Run summaries and failure messages follow TONE.md — plain prose, no fenced blocks.

Inputs

  • userdata/profile.mdtarget_titles, target_industries, geography, hard_filters, tier_thresholds.
  • All userdata/companies/*/meta.md AND userdata/companies/*/*/meta.md — needed for the exclusion sets AND for the monitoring watchlist.
  • Optional flags:
    • --no-parallel — run Recheck and Discovery sequentially in the main conversation, no subagents (slower but easier to debug).
    • --discovery-only / --recheck-only — skip the other phase.
    • --companies <Co1,Co2> — when combined with --recheck-only, scope the recheck.
    • --with-playwright — use Playwright MCP for link-liveness verification in Phase 2. If the MCP isn't installed, fall back gracefully and note link_verified: false.

If userdata/profile.md is missing, tell the user to run /setup first; do not proceed.

Phase 0 — Pre-flight (always sequential, in main conversation)

Produce two artefacts on disk for the parallel agents to consume, plus resolve the companies-of-interest question with the user before anything is dispatched:

A. /tmp/pmjs-exclusion.json

Build the exclusion set from two sources so a role stays suppressed even after its company folder is deleted:

  1. Existing meta.md. Walk both glob patterns and collect every role's (company, position) pair plus every non-empty link.
  2. The seen-ledger at userdata/outputs/seen-roles.jsonl (append-only, one JSON object per line). If it exists, read every line and fold its strict_key / base_key / url_key into the set. This is what remembers a role the user archived by deleting its folder rather than marking it not_interested. If the file is absent, skip — first run creates it in Phase 2.

Read the full file on GitHub · 285 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 · 285 lines · 0 tokens per session scan A 0583e362798f

Subscribe to this mod's changes

job-search is a skill published in the GitHub repository archugunov/pm-job-search (7 stars, last pushed 17d ago), licensed MIT. It adds 181 tokens to every session and 6,101 once invoked, about $0.0009 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

chapter-writing

This skill should be used when the user asks to "write a chapter", "next chapter", "chapter outline", "draft chapter", "continue the story", "write a scene", "outline a chapter", or wants to write prose for a story project.

danjdewhurst/story-skills · 55 tokens

story-init

This skill should be used when the user asks to "start a new story", "initialize a story project", "create a story", "new book", "set up a story", or wants to begin a new fiction writing project from scratch.

danjdewhurst/story-skills · 52 tokens

revision-continuity

This skill should be used when the user asks to revise a chapter, edit prose, continuity check, find inconsistencies, audit character state, check timeline consistency, line edit, developmental edit, polish a draft, or prepare existing story material for the next revision pass.

danjdewhurst/story-skills · 58 tokens

story-maintenance

This skill should be used when the user asks to validate, reindex, repair registries, check links, check continuity, count words, summarize a story project, import an existing manuscript, export a manuscript, run the story CLI, or perform deterministic maintenance on a Story Skills markdown project.

danjdewhurst/story-skills · 62 tokens

alive:demo

Generate a believable, lived-in ALIVE world from a free-text persona description (custom path) or a deterministic sandbox preset. Routes the create/list/activate/deactivate/delete/status surface and orchestrates the 5-stage subagent generation pipeline.

alivecontext/alive · 52 tokens

alive:system-upgrade

Upgrade ALIVE to the current version. Handles v1/v2/v3.x source states, multi-surface aware (alive-mcp / Hermes / Codex), retroactive version detection, partial-failure resume, dry-run previews, and rollback inspection.

alivecontext/alive · 57 tokens