job-seeker: Skill for Claude Code

.agents/skills/browser-automation/SKILL.md

browser-automation is a skill for Claude Code from galiprandi/job-seeker. It costs 42 tokens per session (6,828 once invoked), scanned A, original, MIT.

A browser-control workflow for navigating websites, including sites that require a login. It can use a dedicated Chromium browser to click, type, extract information, and work with web applications.

In plain words
What is it for?
Automating website navigation, authenticated data collection, form filling, single-page applications, inboxes, and job-search sites using Playwright-based browser tools.
Why use it?
It handles tasks that cannot be completed through a simple API because they depend on a real browser session and saved login state. It also defines limits, including stopping when a CAPTCHA appears.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions subagents; installed under .agents/ (shared by several agents).

This is galiprandi/job-seeker's own configuration. It tells Claude Code how to work on job-seeker 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 job-seeker configures →

Reuse

Borrowing it

Nothing to install: this file belongs to galiprandi/job-seeker. 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/galiprandi/job-seeker/main/.agents/skills/browser-automation/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/galiprandi/job-seeker

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 browser-automation

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/galiprandi/job-seeker/browser-automation"><img src="https://agentmods.dev/badge/skills/galiprandi/job-seeker/browser-automation.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 42 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,828 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 warn 7 Sept 2026
SkillSpector: 6 findings, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high YARA Match · line 17
    YARA rule matched a known malware signature (reverse shell, backdoor, ransomware, C2 framework, or info stealer).
    Fix: Remove the malware payload or compromised file entirely. Investigate how it entered the skill and audit all other artifacts for additional indicators of compromise.
  • medium MCP Rug Pull · line 37
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
  • medium MCP Rug Pull · line 96
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
  • medium Prompt Injection · line 151
    Subtle instructions detected that may alter agent decision-making or introduce hidden biases.
    Fix: Review content for implicit steering or bias. Ensure instructions are explicit and align with the skill's stated purpose.
  • medium Memory Poisoning · line 170
    Skill attempts to fill the context window with filler content, displacing legitimate instructions and safety constraints. This can degrade agent performance or bypass safety boundaries.
    Fix: Implement context-window management that detects and rejects padding or stuffing attempts. Prioritize system instructions over user-injected content.
  • medium Rogue Agent · line 222
    Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.
    Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
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.00042 $0.06828
Opus 5 $0.00021 $0.03414
Sonnet 5 $0.00008 $0.01366
Haiku 4.5 $0.00004 $0.00683

Measured today against content hash 4ec8cab779c3, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

browser-automation 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 today.

The scan reads SKILL.md. This mod also ships 3 executable files (scripts/browser.js, scripts/teams.js, scripts/test-find-guide.js), 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.

Makes network callslowCapability

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

- **Site returns 403 on curl/HTTP but works in browser:** Sites like Reddit block non-browser User-Agents on HTTP APIs (JSON, RSS) but do NOT block the Playwright browser session in headed mode. If curl returns 403, do N
.agents/skills/browser-automation/SKILL.md · 461 lines

How it starts

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

Browser Automation

Control a dedicated Chromium browser via playwright-cli from the terminal. Token-efficient: commands return concise output, not verbose accessibility trees.

Purpose

Operate a real browser session: navigate, click, fill forms, extract data, and call internal site APIs using the browser's cookies. Covers generic browser operations plus site-specific guides (Gmail, LinkedIn, Teams, Jira, Teamtailor, Humand.co) loaded on demand.

Use for: automating web apps that require login, scraping authenticated sites, filling forms, extracting data, navigating SPAs, job search automation, inbox management.

Do NOT use for: desktop apps, mobile emulators, API-only integrations without a browser, or captcha solving (defer to the user).

KEYBOARD FIRST (non-negotiable)

Keyboard navigation is the DEFAULT. Clicks are the FALLBACK. This is not a preference — it is the core operating principle of this skill.

Why keyboard over clicks

  1. Stability: Keyboard shortcuts don't depend on CSS selectors, DOM structure, or [ref=eXXX] identifiers that change on every page mutation. A shortcut that works today will work tomorrow. A selector that works today may break tonight.
  2. Token efficiency: press Enter is 1 command. snapshot + find "Send" + click e42 is 3 commands and a huge snapshot. Shortcuts skip the snapshot-find-click pipeline entirely.
  3. Reliability: Shortcuts fire the app's intended action handler directly. Clicks on synthetic DOM elements may not trigger the right event sequence (React apps, custom widgets, shadow DOM).
  4. Speed: One keypress vs. snapshot + parse + find + click. Less latency, fewer failure points.

Universal keyboard patterns (work in every web app)

These patterns are universal — they work in Gmail, LinkedIn, WhatsApp, Outlook, every form, every modal. Use them BEFORE looking for app-specific shortcuts.

Pattern Keys Use case
Submit form Enter Submit a form with focus on the submit button or input
Submit form (textarea) Ctrl+Enter Submit when focus is in a textarea (Gmail, WhatsApp, LinkedIn)
Line break in message Shift+Enter New line without sending (works in every chat app)
Move between fields Tab / Shift+Tab Next/previous form field — no need to click each input
Close modal/dialog Escape Dismiss popups, dialogs, dropdowns, menus
Focus search/command bar Ctrl+K or / Most apps use one of these for search or command palette
Select all text in field Ctrl+A Replace entire field content without clearing manually
Open link in new tab Ctrl+Enter (on link) Middle-click equivalent
Navigate within list Arrow Up / Arrow Down Move through email lists, chat lists, search results
Confirm dialog Enter Accept confirm dialogs, "Are you sure?" prompts
Cancel dialog Escape Cancel instead of confirm

Read the full file on GitHub · 461 lines

Files

What ships with it

48 files 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. today Changed · +94 lines 4ec8cab779c3
  2. 11d ago First seen · 367 lines · 42 tokens per session scan A a8df12976a0c

Subscribe to this mod's changes

browser-automation is a skill published in the GitHub repository galiprandi/job-seeker (26 stars, last pushed yesterday), licensed MIT. It adds 42 tokens to every session and 6,828 once invoked, about $0.0002 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.

Related

Other skills, from other repositories

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

solve-captcha

Solve a CAPTCHA on the current browser tab - free checkbox/text paths first, then a configured token service for image challenges. Returns solved or unsolved for the caller to fall back.

suxrobGM/jobpilot · 40 tokens

scout-web-access

Strato web-access cross-provider per gli Scout (F-2). 5 componenti coordinati — anti-bot robust scrape, LinkedIn session + search, email IMAP poll, multi-Scout workspace claim, freshness focus. Usato come stack base per ogni sweep: lo Scout sceglie il livello di accesso più leggero che funziona, e sale solo quando…

leopu00/job-hunter-team · 86 tokens

recheck-liveness

Check whether a job posting is STILL OPEN without producing false-opens. Replaces the ad-hoc curl (HTTP 200 = "open") that does NOT see the expiry rendered in JavaScript (Ashby/Workday/Greenhouse) nor the LinkedIn authwall (200 for closed ones too). ALWAYS use it in the recheck; never set isopen by hand off a single…

leopu00/job-hunter-team · 88 tokens

open-hot-jobs

This skill should be used when the user wants to open hot job listings in Chrome. Triggers on phrases like "open hot jobs", "open [category] hot jobs in chrome", "open all backend jobs", "open jobs in browser", "open [category] jobs chrome".

Mahashwetha/Job-search-email-system-claude · 62 tokens

job-search

A job-search skill that searches current public listings using an existing résumé and job requirements, checks sources, removes duplicates, and compares roles.

chenzhiyong1994/career-os · 52 tokens