greenhouse-job-application

greenhouse-job-application is a skill for Claude Code, Codex from arimanyus/hermes-merchant. It costs 46 tokens per session (1,543 once invoked), scanned A, original, MIT.

A browser-automation guide for completing job applications on Greenhouse.io and similar recruiting websites. It covers application fields, profile data, resume paths, React form controls, and known reCAPTCHA limitations.

In plain words
What is it for?
Use it to fill job application forms from a profile file, handle React-controlled fields, upload a resume where supported, detect reCAPTCHA, and record applications.
Why use it?
It addresses common problems where automated form filling appears to work but the recruiting site does not register the values. It also records which parts of submission may still require human action.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to fill job application forms from a profile file, handle React-controlled fields, upload a resume where supported, detect reCAPTCHA, and record applications.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/arimanyus/hermes-merchant/greenhouse-job-application
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 arimanyus/hermes-merchant --skill greenhouse-job-application
Clone the repo
git clone --depth 1 https://github.com/arimanyus/hermes-merchant

Made for: Claude Code, Codex.

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 greenhouse-job-application

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/arimanyus/hermes-merchant/greenhouse-job-application"><img src="https://agentmods.dev/badge/skills/arimanyus/hermes-merchant/greenhouse-job-application.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,543 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.00046 $0.01543
Opus 5 $0.00023 $0.00772
Sonnet 5 $0.00009 $0.00309
Haiku 4.5 $0.00005 $0.00154

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

Security

Grade A, and why

greenhouse-job-application 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.

greenhouse-job-application/SKILL.md · 164 lines

How it starts

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

Greenhouse.io Job Application Automation

Automate filling job applications on Greenhouse.io (and similar React-based ATS platforms) via browser automation.

When to Use

  • User asks to apply to a job on Greenhouse.io
  • Filling out web forms with profile data
  • Uploading resumes to job application systems

Configuration

Reads PII and the resume path from profile.yaml at the repo root (copy from profile.yaml.example on first run). Relevant keys:

  • identity.first_name, last_name, email, phone, country
  • resume.path
  • work_authorization.us_authorized, work_authorization.needs_visa_sponsorship
  • careers_emails — fallback for when React dropdowns block submission
  • paths.applier_log

Form Filling (Single JavaScript Expression)

React-controlled inputs ignore element.value = x. Use the native setter. Load values from profile.yaml and inject them into one browser_console call:

import yaml
from pathlib import Path

cfg = yaml.safe_load(Path("profile.yaml").read_text())
fields = {
    "first_name": cfg["identity"]["first_name"],
    "last_name":  cfg["identity"]["last_name"],
    "email":      cfg["identity"]["email"],
    "phone":      cfg["identity"]["phone"],
    "country":    cfg["identity"]["country"],
}

Then execute the snippet below, injecting fields as fieldMap:

(function() {
  function setReactValue(element, value) {
    var nativeInputValueSetter = Object.getOwnPropertyDescriptor(
      window.HTMLInputElement.prototype, 'value'
    ).set;
    nativeInputValueSetter.call(element, value);
    var event = new Event('input', { bubbles: true });
    element.dispatchEvent(event);
  }

  var fieldMap = /* INJECT fields FROM profile.yaml */;

  for (var id in fieldMap) {
    var el = document.getElementById(id);
    if (el) setReactValue(el, fieldMap[id]);
  }

  return { status: 'completed', fields: Object.keys(fieldMap) };
})()

Important: fill ALL fields in ONE browser_console call. Do NOT use individual browser_type calls — per-turn iteration limits will be hit.

Read the full file on GitHub · 164 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. 12d ago First seen · 164 lines · 46 tokens per session scan A 9a86c863027a

Subscribe to this mod's changes

greenhouse-job-application is a skill published in the GitHub repository arimanyus/hermes-merchant (36 stars, last pushed 4mo ago), licensed MIT. It adds 46 tokens to every session and 1,543 once invoked, about $0.0002 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-30.

Related

Other skills, from other repositories

dogfood

This skill guides you through systematic exploratory QA testing of web applications using the browser toolset. You will navigate the application, interact with elements, capture evidence of issues, and produce a structured bug report.

AtlasOmnia/donna-starter · 20 tokens

dynamic-content-extraction

Extract structured data (prices, listings, product details) from JavaScript-heavy sites where key data is rendered by React/Vue/Angular and doesn't appear in compact accessibility snapshots.

AtlasOmnia/donna-starter · 56 tokens

browser-harness-authoring

Use when mapping a repeatable website workflow into a verified Hermes skill so later runs can follow known steps instead of rediscovering the site. Surveys browser compatibility, semantic targets, failure modes, recovery paths, decision gates, and expiry using dummy data and no irreversible submissions.

AtlasOmnia/hermes-custom-pack · 60 tokens

reddit-browse-and-post

Let an agent read Reddit by default, and publish only after the user explicitly opts in and approves the exact post. Everything here is account-agnostic: the user supplies credentials through environment variables or a browser login, never through chat.

AtlasOmnia/hermes-custom-pack · 54 tokens

macos-app-automation

Use this skill when the user asks whether Hermes can control a native macOS app, or asks you to verify, configure, or troubleshoot AppleScript/Automation access for an app.

AtlasOmnia/donna-starter · 43 tokens

playwright-browser-automation

Run automated headless browser testing, scrape dynamic SPAs, capture high-resolution full-page screenshots, and perform visual regression testing with Playwright.

pedroiff0/awesome-skills · 34 tokens