feat: add Avature provider - #233
Merged
Merged
Conversation
Avature exposes no public JSON surface (customer API is auth-gated, RSS feed capped at 20 items), so the client scrapes the portal HTML: the platform-level search param, arbitrary jobOffset stitching to unified pages, and lower-bound totals for portals that hide the results legend. Location and facets are rejected with teaching errors — search is full-text over descriptions, and facet options only load via JS. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds Avature as an ATS adapter behind
search_jobs_by_company.Avature has no public JSON surface — the customer REST API is auth-gated and the portal RSS feed is capped at 20 items with empty descriptions — so the client scrapes the server-rendered portal HTML. Recon findings that shaped the design:
?search=is a platform-level full-text param (works on every tenant), but it indexes descriptions, so it is not a location filter;locationgets a teaching error instead of soft-filtering.jobOffsetaccepts arbitrary offsets while page size is tenant-config (6–20) and cannot be raised, so unified 20-job pages stitch consecutive fetches with an id-dedupe guard.<portal>/Error(itself HTTP 404).Filtersreturns none.Seed roster: 5 live-verified portals (Bloomberg, Koch, One Call, Avature, Unifi incl. a custom domain). Fixtures are real captures across three portal themes;
hurl --testpasses live,verify-companies --provider avatureis all OK, and the MCP stdio path was smoke-tested including an uncurated careers-URL tenant.🤖 Generated with Claude Code