feat(linkedin): add job search adapter#28
Merged
jackwener merged 3 commits intojackwener:mainfrom Mar 17, 2026
Merged
Conversation
addb53f to
53864b6
Compare
…valuate, replace hardcoded wait, add IPage type
efa1df3 to
d4c464e
Compare
…rove code structure - Extract Voyager query/URL building into typed standalone functions - Split fetchJobCards into its own function with per-batch evaluate - Add SearchInput interface for type safety - Add progress logging to enrichJobDetails (stderr) - Add section comments for code organization - Deduplicate normalize helpers in evaluate strings
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.
Summary
src/clis/linkedin/search.ts— New adapter to search LinkedIn jobs via Voyager job cards.Usage
Search arguments
--query--location--limit10100)--start0--company--experience_levelinternship,entry,associate,mid-senior,director,executive--job_typefull-time,part-time,contract,temporary,volunteer,internship,other--date_postedany,month,week,24h--remoteon-site,hybrid,remote--detailsfalseOutput
Default output columns:
ranktitlecompanylocationlistedsalaryurlWith
--details, each item also includes:descriptionapply_urlNotes
Strategy.HEADERwith authenticated browser requests against LinkedIn Voyager.--detailsopens each returned job page to expand the "About the job" section and extract the full description + apply URL, so it is intentionally opt-in.Test plan
npm run buildopencli linkedin search --query 'software engineer' --location 'San Francisco Bay Area' --limit 1 -f jsonopencli linkedin search --query 'software engineer' --location 'San Francisco Bay Area' --company 'OpenAI' --limit 2 -f jsonopencli linkedin search --query 'software engineer' --location 'San Francisco Bay Area' --experience_level entry --job_type full-time --date_posted week --limit 2 -f jsonopencli linkedin search --query 'software engineer' --location 'San Francisco Bay Area' --limit 1 --details -f json