From job-searcher
Collects Daijob job postings (bilingual/English jobs in Japan) by keyword. Prints normalized JSON. Read-only, no login.
How this skill is triggered — by the user, by Claude, or both
Slash command
/job-searcher:daijob-collectThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Collect recent public postings from Daijob's server-rendered English job search
Collect recent public postings from Daijob's server-rendered English job search
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 salaries 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/daijob-collect/collect.py --query "engineer" --limit 20
python3 skills/daijob-collect/collect.py --limit 20 # latest in-Japan roles
--query, -q — free-word keyword (mapped to Daijob's kw search param).--limit, -n — max postings (default 20; the search page serves ~20/page).--pretty — indent the JSON.Output: a JSON array on stdout; a one-line count on stderr. Daijob exposes
company, location, salary, and a job-description snippet cleanly. Employment
type is not surfaced on the card, so it stays null.
SRC-JOB-DAIJOB — https://www.daijob.com/en/ (collectible_open,
verified 2026-07-07). The listing is at /en/jobs/search?in_japan=true&pg=0
(redirects to /en/jobs/search_result); /en/jobs itself is a category hub,
not a posting list.article.job-card; the title is h2.job-card__title a with an href
of /en/jobs/detail/<id>. external_id is that numeric <id>. Location,
salary, and description are read from the card's dl/dt/dd rows.article.job-card
child selectors against a live fetch (do not hardcode a specific company).npx claudepluginhub itssosunny/job-searcher --plugin job-searcher2plugins reuse this skill
First indexed Jul 7, 2026
Collects recent public IT job postings from Japan Dev (japan-dev.com) for English speakers in Japan. Filters by role, stack, or company and outputs normalized JSON.
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.