Resources
6Install
npx skillscat add imoonkey/openweb/src-sites-glassdoor Install via the SkillsCat registry.
SKILL.md
Glassdoor
Overview
Glassdoor is a company review and job research platform (archetype: job boards). All data accessed via browser-based adapter with Cloudflare challenge bypass; no official API.
Workflows
Research a company
searchCompanies(query)→ company list with employer IDs and ratingsgetReviews(employerId)→ employee reviews with pros, cons, ratingsgetSalaries(employerId)→ salary data by job title with pay rangesgetInterviews(employerId)→ interview experiences with difficulty and outcomes
Compare company compensation
searchCompanies(query)→ get employerId for company AgetSalaries(employerId)→ salary ranges for company A- Repeat for company B
Operations
| Operation | Intent | Key Input | Key Output | Notes |
|---|---|---|---|---|
| searchCompanies | find companies by name | query | employerId, name, overallRating | entry point |
| getReviews | employee reviews | employerId ← searchCompanies | rating, title, pros, cons, jobTitle | SSR + DOM |
| getSalaries | salary data by role | employerId ← searchCompanies | jobTitle, payRange, salaryCount | DOM extraction |
| getInterviews | interview experiences | employerId ← searchCompanies | role, difficulty, experience, description | DOM extraction |
Quick Start
openweb glassdoor exec searchCompanies '{"query":"Google"}'
openweb glassdoor exec getReviews '{"employerId":9079}'
openweb glassdoor exec getSalaries '{"employerId":9079}'
openweb glassdoor exec getInterviews '{"employerId":9079}'