Make sure to use this skill whenever the user wants to search for jobs in Denmark, find Danish job listings, look up a specific job posting, or asks anything ab
复制下面这句话,粘贴给 Claude Code、Codex、Cursor 等 AI 编程工具,它会读取安装说明并在你确认后完成安装。
请阅读 https://ai.atlankj.com/install/asset/gh-jobindex-search-2dde2f46644b ,按照其中的说明把「jobindex-search」安装到你(当前 AI 工具)中。执行前先告诉我将运行的命令和写入的位置,等我确认。
查看 AI 将读取的安装说明正在读取 GitHub 原文…
内容来自 GitHub 原始文件,由原作者维护。在 GitHub 查看
Search live Danish job listings from Jobindex.dk. No authentication needed. Covers thousands of job postings across all sectors, updated in real time.
Invoke this skill when the user wants to:
python aarhus)bun run .agents/skills/jobindex-search/cli/src/cli.ts search [flags]
Key flags:
--query <text> / -q <text> — keyword search (job title, skill, company, city). Required for meaningful results.--jobage <days> — filter by posting age: 1 (today), 7, 14, 30, or 9999 (all, default)--sort <order> — score (relevance, default) or date (newest first)--page <n> — page number (1-indexed, 20 results per page, fixed)--limit <n> — cap total results the CLI outputs (client-side)--format json|table|plainArea note: The Jobindex API does not support area filtering via params. To find jobs in a specific city, include the city in
--query(e.g.--query "data engineer københavn"or--query "python aarhus").
bun run .agents/skills/jobindex-search/cli/src/cli.ts detail <id> [--format json|plain]
id is the job ID from search results (e.g. h1647303). You may also pass the full Jobindex URL. Returns the full job description, deadline, employment type, hours, and apply link.
Always start with search. Pass the job title, skill, or profession as --query. Combine with a city name in the query to narrow by location (e.g. --query "frontend developer odense").
Use --jobage 7 or --jobage 1 for fresh listings. Without it, results include all historical postings.
Use --sort date to see the most recently posted jobs first. Default score sorts by relevance.
Natural workflow: search → detail.
search to find matching jobs and their id values.detail <id> to get the full description, deadline, and apply link.Use --format table for quick scanning, --format json for data processing, and --format plain for reading a single job's full details.
Pagination: The API always returns 20 results per page. Use --page to navigate pages. Use --limit to cap results across one page fetch.
bun run .agents/skills/jobindex-search/cli/src/cli.ts search \
--query python \
--jobage 7 \
--sort date \
--format table
bun run .agents/skills/jobindex-search/cli/src/cli.ts search \
--query "data engineer københavn" \
--sort score \
--format table
bun run .agents/skills/jobindex-search/cli/src/cli.ts search \
--query "grafisk designer" \
--limit 10 \
--format table
bun run .agents/skills/jobindex-search/cli/src/cli.ts search \
--query "full stack developer" \
--page 2 \
--format json
bun run .agents/skills/jobindex-search/cli/src/cli.ts search \
--jobage 1 \
--sort date \
--limit 20 \
--format table
bun run .agents/skills/jobindex-search/cli/src/cli.ts detail h1647303 --format plain
bun run .agents/skills/jobindex-search/cli/src/cli.ts search \
--query "marketing aarhus" \
--jobage 30 \
--sort date \
--format table
| Format | Best for |
|---|---|
json | Default — programmatic use, data processing, passing IDs to detail |
table | Quick human-readable overview and scanning |
plain | Reading a single job's full detail (detail command) |
All errors are written to stderr as { "error": "...", "code": "..." } and the process exits with code 1.
jobindex.dk API — no credentials required.--query instead.--jobage 9999 is the default and includes all postings regardless of age.meta.total uses Danish dot-thousands notation internally (e.g. 18.903) — the CLI normalizes this to a plain integer.h1647303) — pass them as-is to detail.