Files
claw-apply/lib/apply/greenhouse.mjs
Matthew Jackson 260f996ebc Add generic external ATS applier
Best-effort form filler for any career page with standard HTML forms.
Handles single-page and multi-step flows, resume upload, login wall
and CAPTCHA detection. All ATS stub handlers now delegate to generic.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-06 20:02:55 -08:00

12 lines
335 B
JavaScript

/**
* greenhouse.mjs — Greenhouse ATS handler
* Delegates to generic handler — Greenhouse forms are standard HTML forms
*/
import { apply as genericApply } from './generic.mjs';
export const SUPPORTED_TYPES = ['greenhouse'];
export async function apply(page, job, formFiller) {
return genericApply(page, job, formFiller);
}