From job-searcher
Collects current public job postings from Coupang careers board as normalized JSON, filtered by keyword or location. Read-only, no login or apply.
How this skill is triggered — by the user, by Claude, or both
Slash command
/job-searcher:coupang-collectThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Collect current public postings from Coupang's careers board and return
Collect current public postings from Coupang's careers board and return
normalized JSON (docs/SCHEMA.md). Self-contained: this skill's collect.py
carries its own fetch + parse and depends only on curl_cffi, beautifulsoup4,
lxml.
null; titles,
companies, locations, and dates are copied verbatim.If collect.py fails with ModuleNotFoundError, install the deps yourself
(pip install curl_cffi beautifulsoup4 lxml) and retry — do not ask the user
to install anything.
pip install curl_cffi beautifulsoup4 lxml # or: pip install -r requirements.txt
python3 skills/coupang-collect/collect.py --query "engineer" --limit 20
python3 skills/coupang-collect/collect.py --query "Seoul" --limit 20
--query, -q — filter by title/location substring (client-side). Default: all.--limit, -n — max postings (default 20).--pretty — indent the JSON.Output: a JSON array on stdout (source, external_id, url, title, company, location, employment_type, posted_at, deadline, salary, snippet, collected_at);
a one-line count on stderr. The board exposes title, location, company, and the
first-published date (posted_at).
SRC-JOB-COUPANG — https://www.coupang.jobs/ (verified 2026-07-07).coupang); this skill reads
the published jobs JSON at
https://boards-api.greenhouse.io/v1/boards/coupang/jobs. external_id is the
Greenhouse job id (== gh_jid); the canonical detail URL is
https://www.coupang.jobs/kr/jobs/<id>/?gh_jid=<id>.--query "Seoul" / --query "Korea" for Korea-based roles.employment_type, deadline, and salary are not exposed on the board list,
so they are null. If the board token changes and 0 postings return, re-probe
boards-api.greenhouse.io/v1/boards/<token>/jobs (do not hardcode a role id).npx claudepluginhub itssosunny/job-searcher --plugin job-searcher2plugins reuse this skill
First indexed Jul 7, 2026
Collects public job postings from CJ Careers (CJ 그룹 채용). Returns normalized JSON. Use for scanning CJ group listings: CJ ENM, TVING, CJ제일제당, CJ푸드빌, etc.
Guides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.