From job-searcher
Collects public job postings from CJ Careers (CJ 그룹 채용). Returns normalized JSON. Use for scanning CJ group listings: CJ ENM, TVING, CJ제일제당, CJ푸드빌, etc.
How this skill is triggered — by the user, by Claude, or both
Slash command
/job-searcher:cj-recruit-collectThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Collect current public postings from CJ's recruit portal and return normalized
Collect current public postings from CJ's recruit portal 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, and periods 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/cj-recruit-collect/collect.py --query "ENM" --limit 20
--query, -q — filter by title/company 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. CJ exposes company (subsidiary), the recruit period
(as deadline), and rolling/experience tags (as snippet).
SRC-JOB-CJ-RECRUIT — https://recruit.cj.net/ (verified 2026-07-07)./recruit/ko/main/main/main.fo, which this skill fetches directly. Cards are
a.btn-filter[href*='bestDetail'] with p.tit, span.company, span.type,
span.badge, p.period children.external_id is the zz_jo_num (e.g. J20251224037598); the canonical
detail URL is bestDetail.fo?zz_jo_num=<id>./recruit/ko/recruit/recruit/list.fo loads its rows via client-side AJAX and
is not enumerable by a plain GET — collecting the full search result set
needs a real browser. If 0 postings return, re-derive the card selectors
against a live fetch of the main frame (do not hardcode a specific company).2plugins reuse this skill
First indexed Jul 7, 2026
npx claudepluginhub itssosunny/job-searcher --plugin job-searcherCollects current public job postings from Coupang careers board as normalized JSON, filtered by keyword or location. Read-only, no login or apply.
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.