Agent skill

linkedin-jobs-search

Search LinkedIn job listings and extract full job details. Supports filtering by work type (remote/on-site/hybrid), contract type (full-time/part-time/contract/internship), experience level, date posted, and company. Returns job title, company, location, work type, contract type, experience level, posted date, applicant count, job description, salary, and direct job URLs. Use when user mentions linkedin jobs, linkedin job search, scrape linkedin jobs, extract linkedin job listings, find jobs on linkedin, job openings, job postings linkedin, linkedin career search, job hunting linkedin, linkedi

browser-actgithub.com/browser-actGitHub ↗
claude-codecodexcursorships scriptsMIT
Install
npx skills add browser-act/skills --skill linkedin-jobs-search --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 3
SKILL.md size: 10 KB
Bundled scripts: yes
Path: solutions/lead-generation/linkedin-jobs-search/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 5,160
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# LinkedIn — Job Search > keywords + location + filters → paginated job list with full details ## Language All process output to user (progress updates, process notifications) follows the user's language. ## Objective Search LinkedIn job listings with full filter support, extract complete job data with full field coverage. ## Prerequisites - The browser is open and the LinkedIn session is active (logged in). A LinkedIn jobs search page such as `https://www.linkedin.com/jobs/search/` must have been visited at least once so the CSRF token cookie is set. ## Pre-execution Checks ### 1. Tool Readiness If browser-act has been confirmed available in the current session → skip this step. Invoke `browser-act` via Skill tool to load usage. If installation or configuration issues arise, follow its guidance to resolve then retry. ### 2. Login Verification If login status for LinkedIn has been confirmed in the current session → skip this step. Otherwise: open `https://www.linkedin.com` and observe the page: - User avatar or "Me" menu visible → logged in, continue - Sign in / Join button visible → not logged in, inform user that LinkedIn login is required first User refuses or cannot log in → te

What's inside
Steps it walks through
  1. Language
  2. Objective
  3. Prerequisites
  4. Pre-execution Checks
  5. 1. Tool Readiness
  6. 2. Login Verification
  7. Capability Components
  8. API: Search LinkedIn jobs (list page)
  9. API: Get full job details
  10. Composite: Full job extraction (search list + detail for each job)
  11. Enum Parameters
  12. Pagination
  13. Success Criteria
  14. Known Limitations
Ships with 2 files
  • scripts/job-detail.py
  • scripts/search-jobs.py
Commands it runs
while [ $collected -lt $TOTAL_ROWS ]; do
echo "$result" | python -c "
import json, sys
data = json.loads(sys.stdin.read())
for job in data.get('jobs', []):
for job_id in $job_ids; do
echo "$detail" >> $OUTPUT_FILE
sleep 1
done
sleep 2
More from skills
All skills →
About this skill
What does the linkedin-jobs-search skill do?

Search LinkedIn job listings and extract full job details. Supports filtering by work type (remote/on-site/hybrid), contract type (full-time/part-time/contract/internship), experience level, date posted, and company. Returns job title, company, location, work type, contract type, experience level, posted date, applicant count, job description, salary, and direct job URLs. Use when user mentions linkedin jobs, linkedin job search, scrape linkedin jobs, extract linkedin job listings, find jobs on linkedin, job openings, job postings linkedin, linkedin career search, job hunting linkedin, linkedi

How do I install it?

Run `npx skills add browser-act/skills --skill linkedin-jobs-search --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From browser-act/skills, a repository with 5,160 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going