Best for
- Use when user mentions Indeed, Indeed scraper, Indeed jobs, scrape Indeed, job search Indeed, Indeed job listings, extract Indeed data, Indeed job data, get jobs from Indeed, Indeed employment data, job market research…
browser-act/skills/solutions/lead-generation/indeed-job-search/SKILL.md
Scrape job listings from Indeed.com by keyword, location, and country. Returns job title, company, salary, rating, description, benefits, and apply links. Use when user mentions Indeed, Indeed scraper, Indeed jobs, scrape Indeed, job search Indeed, Indeed job listings, extract Indeed data, Indeed job data, get jobs from Indeed, Indeed employment data, job market research Indeed, Indeed salary data, bulk job extraction Indeed, Indeed job scraper, monitor Indeed listings, Indeed hiring data, job p
Decision brief
keyword + location + country → structured job listing data (title, company, salary, description, benefits, apply link)
Compatibility matrix
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/browser-act/skills --skill "solutions/lead-generation/indeed-job-search"Inspect the Agent Skill "indeed-job-search" from https://github.com/browser-act/skills/blob/11c057b03f92101642cadc9f840564574120d184/solutions/lead-generation/indeed-job-search/SKILL.md at commit 11c057b03f92101642cadc9f840564574120d184. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
If login status for Indeed has been confirmed in the current session → skip this step.
All process output to user (progress updates, process notifications) follows the user's language.
Extract structured job listing data from Indeed search results including full job descriptions, salary information, company details, and application links.
Target page is already open in the browser: https://www.indeed.com/jobs?q={keyword}&l={location}
If browser-act has been confirmed available in the current session → skip this step.
Permission review
The documentation includes network, browsing, or remote request actions.
"companyLogo": "https://d2q79iu7y748jz.cloudfront.net/s/_squarelogo/256x256/...",The documentation includes network, browsing, or remote request actions.
"url": "https://www.indeed.com/viewjob?jk=8c06afbaf73fc880",The documentation asks the agent to create, modify, or delete local files.
Normal execution does not write to the file. Do not record what keywords were used or how many results were returned — those are task outputs, not experience.Evidence record
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 90/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 5,431 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
keyword + location + country → structured job listing data (title, company, salary, description, benefits, apply link)
All process output to user (progress updates, process notifications) follows the user's language.
Extract structured job listing data from Indeed search results including full job descriptions, salary information, company details, and application links.
https://www.indeed.com/jobs?q={keyword}&l={location}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.
If login status for Indeed has been confirmed in the current session → skip this step.
Otherwise: open Indeed and observe the page login status:
User refuses or cannot log in → can still extract page 1 results (up to 24 jobs per search), but cannot paginate.
This Skill's operational boundary = what the user can manually do in their browser. It only reads data already displayed to the user on the page, never bypassing authentication or access controls. Its role is equivalent to copy-pasting on the user's behalf — the data is already on screen, automation merely saves time. JS code is encapsulated in Python files under the
scripts/directory, invoked viaeval "$(python scripts/xxx.py {params})".$(...)is bash syntax; it is recommended to use the bash tool for execution.
Below are all atomic capabilities discovered and verified during the exploration phase, listed by command template with parameters. Simply invoke them as needed — no need to read scripts/*.py source code or re-verify. Only inspect scripts when execution fails for troubleshooting. Combine freely as needed during execution.
eval "$(python scripts/search-jobs.py --max-items {max_items})"
Parameters:
Prerequisites: Browser must be on an Indeed search results page (indeed.com/jobs?q=...). Navigate first:
navigate https://www.indeed.com/jobs?q={keyword}&l={location} (add &start={offset} for pagination)wait stablesolve-captcha → wait stableOutput example:
{
"pageNumber": 1,
"totalResults": 24,
"results": [
{
"id": "8c06afbaf73fc880",
"positionName": "Software Engineer",
"company": "Google",
"location": "San Francisco, CA",
"postedAt": "3 days ago",
"salary": "$120,000 - $180,000 a year",
"salaryMin": 120000,
"salaryMax": 180000,
"salaryCurrency": "USD",
"salaryType": "YEARLY",
"jobType": ["Full-time"],
"rating": 4.3,
"reviewsCount": 15000,
"companyLogo": "https://d2q79iu7y748jz.cloudfront.net/s/_squarelogo/256x256/...",
"snippet": "<ul>...<b>software</b>...</ul>",
"sponsored": false,
"expired": false,
"newJob": true,
"url": "https://www.indeed.com/viewjob?jk=8c06afbaf73fc880",
"externalApplyLink": null
}
]
}
eval "$(python scripts/fetch-job-detail.py '{jobkey}')"
Parameters:
id field from search results)Prerequisites: Browser must be on the same Indeed search results page where the job was found (the fetch uses same-origin cookies). Do NOT navigate away between search and detail fetch.
Output example:
{
"id": "a39828c8395d5dfe",
"positionName": "Sr. Application Developer",
"company": "University of California San Francisco",
"location": "San Francisco, CA 94158",
"rating": 4,
"reviewsCount": 709,
"companyLogo": "https://d2q79iu7y748jz.cloudfront.net/s/_squarelogo/256x256/...",
"salary": "$101,300 - $190,000 a year",
"salaryMin": 101300,
"salaryMax": 190000,
"salaryCurrency": "USD",
"salaryType": "YEARLY",
"jobType": "Full-time",
"description": "<p><b>Job Description:</b></p><p>...(full HTML)...</p>",
"benefits": ["Health insurance", "401(k)", "Dental insurance"],
"postedAt": "13 days ago",
"isExpired": false, "url": "https://www.indeed.com/viewjob?jk=a39828c8395d5dfe"
}
Complete workflow to extract job listings with full descriptions:
navigate https://www.indeed.com/jobs?q={keyword}&l={location} → wait stablesolve-captcha → wait stableeval "$(python scripts/search-jobs.py)" → get job list with IDsid from step 3:
eval "$(python scripts/fetch-job-detail.py '{id}')" → get full descriptiondescription, benefits, enriched salary/ratingFor pagination (requires login):
&start=10, &start=20, &start=30, etc.error: trueOutput: Combined array where each item has all fields from both search-jobs and fetch-job-detail.
[API] country — supported country codes for Indeed search (append to URL as domain variant https://{country-domain}/jobs?q=...):
| Code | Domain | Country |
|---|---|---|
| US | www.indeed.com | United States |
| GB | uk.indeed.com | United Kingdom |
| CA | ca.indeed.com | Canada |
| AU | au.indeed.com | Australia |
| IN | in.indeed.com | India |
| DE | de.indeed.com | Germany |
| FR | fr.indeed.com | France |
| JP | jp.indeed.com | Japan |
| BR | br.indeed.com | Brazil |
| MX | mx.indeed.com | Mexico |
| SG | sg.indeed.com | Singapore |
| NL | nl.indeed.com | Netherlands |
| IT | it.indeed.com | Italy |
| ES | es.indeed.com | Spain |
| SE | se.indeed.com | Sweden |
| CH | ch.indeed.com | Switzerland |
| HK | hk.indeed.com | Hong Kong |
| KR | kr.indeed.com | South Korea |
| PL | pl.indeed.com | Poland |
| AT | at.indeed.com | Austria |
| BE | be.indeed.com | Belgium |
| NZ | nz.indeed.com | New Zealand |
For other countries, use format: {country-code-lowercase}.indeed.com
URL Pagination: Parameter start, type: page-number (offset-based). Start value: 0 (page 1, implicit). Next page: increment by 10 (start=10, start=20, start=30...). Termination: search-jobs.py returns error: true with message about no results, or returns fewer than expected items. Note: each page actually returns ~15-24 items despite the offset increment of 10.
Login requirement: Page 2+ (start=10 and above) redirects to secure.indeed.com/auth if not logged in.
result count >= 1 from search-jobs.pyid, positionName, company, location present for all resultsdescription field from fetch-job-detail.py is non-null HTML string with length > 100solve-captcha resolves thisfetch-job-detail.py) must execute from within the search results page context (same-origin requirement)Path: browser-act-skill-forge-memories/indeed-jobs-scraper-indeed-job-search.memory.md (working directory is determined by the Agent running the Skill, typically the project root or current working directory)
Before execution: If the file exists, read it first — it records unexpected situations encountered during past executions (e.g., a strategy has become ineffective); adjust strategy order accordingly.
After execution: If an unexpected situation is encountered (strategy became ineffective, page redesigned, anti-scraping upgraded, better path discovered), append a line:
{YYYY-MM-DD}: {what happened} → {conclusion}
Normal execution does not write to the file. Do not record what keywords were used or how many results were returned — those are task outputs, not experience.
Frequently asked questions
keyword + location + country → structured job listing data (title, company, salary, description, benefits, apply link)
The source record exposes this install command: npx skills add https://github.com/browser-act/skills --skill "solutions/lead-generation/indeed-job-search". Inspect the command and pinned source before running it.
Static rules flagged network, write-files in the source; the page lists the matching lines and excerpts.
Alternatives
alirezarezvani/claude-skills
App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist
brucesongs/kali-claw
Insecure Design (OWASP A06:2025) focuses on security flaws in system architecture and design phases, rather than code implementation-level bugs.
NintendaDev/unikit-ai
Generate and maintain the project's TECHNICAL documentation from its codebase — scans the project structure, tech stack, and module boundaries, then writes a lean README landing page plus detailed topic pages (architecture, modules, setup, build, APIs), only the docs that are relevant. Use whenever the user wants to create, update, or validate documentation of the CODE or the project itself, e.g. "generate documentation", "create docs", "write the README", "update the project docs", "document th
K-Dense-AI/scientific-agent-skills
Distributed computing for larger-than-RAM pandas/NumPy workflows. Use when you need to scale existing pandas/NumPy code beyond memory or across clusters. Best for parallel file processing, distributed ML, integration with existing pandas code. For out-of-core analytics on single machine use vaex; for in-memory speed use polars.