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.
npx skills add arimanyus/hermes-merchant --skill greenhouse-job-applicationgit clone --depth 1 https://github.com/arimanyus/hermes-merchantWrote 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.
[](https://agentmods.dev/skills/arimanyus/hermes-merchant/greenhouse-job-application)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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,countryresume.pathwork_authorization.us_authorized,work_authorization.needs_visa_sponsorshipcareers_emails— fallback for when React dropdowns block submissionpaths.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.
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.
- 12d ago First seen · 164 lines · 46 tokens per session scan A 9a86c863027a
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.
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.
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.
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.
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.
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.
playwright-browser-automation
Run automated headless browser testing, scrape dynamic SPAs, capture high-resolution full-page screenshots, and perform visual regression testing with Playwright.