jobspipe-cli
v0.1.2
Published
CLI and agent skill for the JobsPipe API: search live job postings and scan a company's tech stack.
Maintainers
Readme
jobspipe-cli
The CLI and agent skill for the JobsPipe API. Two functions, one host, one key:
- Job search — live, normalized job postings from 30+ sources.
- Tech search — detect the tech stack a domain runs.
Install
For AI coding agents (installs the skill in SKILL.md):
npx skills add jobspipe/jobspipe-cli
export JOBSPIPE_API_KEY=jp_live_YOUR_KEYAs a standalone CLI:
npx jobspipe-cli --help
export JOBSPIPE_API_KEY=jp_live_YOUR_KEYGet a free key at https://jobspipe.dev/signup (5,000 requests/month, no card).
Usage
jobspipe jobs --title "software engineer" --country US --remote --limit 5
jobspipe jobs '{"description_or":["rust"],"posted_at_max_age_days":7,"limit":10}'
jobspipe stack stripe.com
jobspipe stack vercel.com --mode render
jobspipe --helpBoth commands print JSON to stdout. Authenticate with JOBSPIPE_API_KEY (or
--api-key). Override the host with --base-url or JOBSPIPE_BASE_URL.
Jobs flags
--title, --exclude-title, --description, --country, --exclude-country,
--company, --company-like, --seniority, --employment-type, --source
(repeatable), --remote / --no-remote, --max-age-days, --since, --until,
--limit, --offset, --total. A raw filter object (positional arg or stdin)
overrides the flags and exposes the full API surface.
Stack flags
--mode auto|html|render (default auto).
Develop
node --testFull API reference: https://jobspipe.dev/docs
