AugmentClaude

Jobdanmark Search

Search live Danish job listings by location, category, and employment type.

Installation

  1. Make sure Claude is on your device and in your terminal.

    Skills load from ~/.claude/skills/ when Claude Code starts up — so you need it on your machine first. If you don't have it yet, install it once with the command below, then run claude in any terminal to verify.

    One-time setup
    npm i -g @anthropic-ai/claude-code

    Already have it? Skip ahead.

  2. Paste into Claude Code or into your terminal.

    This copies the whole skill folder into ~/.claude/skills/jobdanmark-search-madslorentzen/ — the SKILL.md plus any scripts, reference docs, or templates the skill ships with. Safe default: works for every skill.

    Faster alternative (instruction-only skills)

    Skips the clone and grabs only the SKILL.md file. Don't use this if the skill ships Python scripts, reference markdowns, or asset templates — they won't be downloaded and the skill will fail when it tries to load them.

    Quick install (SKILL.md only)
    Sign up to copy
  3. Restart Claude Code.

    Quit and reopen Claude Code (or any other agent that loads from ~/.claude/skills/). New skills are picked up on startup.

  4. Just ask Claude.

    Skills auto-activate when your request matches the skill's description — no slash command needed. Trigger phrases live in the skill's own frontmatter; you can read them in the “What this skill does” section above.

Prefer to read the source first? Open on GitHub.

When Claude uses it

Make sure to use this skill whenever the user mentions anything related to Danish job listings, job search in Denmark, finding work in Denmark, or job vacancies on Jobdanmark — even if they don't explicitly mention jobdanmark.dk. Also invoke this skill for questions about specific Danish job categories, municipalities, job types, or salaries in a job-search context. Trigger phrases include: danish jobs, jobs in denmark, find job denmark, job search denmark, danish job listings, jobdanmark, job opslag, find job, jobsøgning, ledige stillinger, stillingsopslag, job i Danmark, fuldtidsjob, deltidsjob, studiejob, praktikplads, elev, fleksjob, IT job denmark, sygeplejersker job, håndværker job, ingeniør job, pædagog job, kontor job, leder job, salg job, hotel job, kirke job, job aarhus, job københavn, job odense, job aalborg, job sjælland, job jylland, job fyn, jobkategorier denmark, ledige job, ansøgningsfrist, søg job, job opslaget, jobopslag, danish vacancies, work in denmark, employment denmark, job denmark, jobs near me denmark, apprentice denmark, internship denmark, part-time denmark, full-time denmark.

What this skill does

Jobdanmark Search Skill

Access live Danish job listings from the Jobdanmark.dk public API. No authentication needed. Covers ~15,000+ active job listings across 10 categories and all Danish municipalities.

When to use this skill

Invoke this skill when the user wants to:

  • Search for job listings in Denmark (by keyword, location, category, or job type)
  • Browse available jobs in a specific Danish city, municipality, zip code, or region
  • Filter jobs by employment type (full-time, part-time, student job, apprentice, etc.)
  • Look up the full details of a specific job posting including description and deadline
  • List all job categories with current live job counts
  • Resolve a job search term into a job title ID or category ID for precise filtering
  • Find location suggestions (municipalities, zip codes, regions) for job search filters

Commands

Search job listings

bun run .agents/skills/jobdanmark-search/cli/src/cli.ts search [flags]

Key flags:

  • --text <keyword> — free-text search, e.g. elektriker, sygeplejerske, softwareudvikler
  • --category <id> — category ID (see Categories table below)
  • --jobtitle-id <id> — job title ID from autocomplete results
  • --municipality <name> — e.g. Odense, København, Aarhus
  • --zip <code> — zip code, e.g. 5000, 8000, 2100
  • --region <name> — region name, e.g. Midtjylland, Sjælland
  • --job-type <types> — comma-separated: fuldtid, deltid, fleksjob, elev, studiejob, praktik
  • --page <n> — page number (30 items per page, server-enforced)
  • --limit <n> — cap total results returned by CLI
  • --format json|table|plain

Per-page is fixed at 30 by the API. Use --page to paginate.

Full job detail

bun run .agents/skills/jobdanmark-search/cli/src/cli.ts detail <slug> [--format json|plain]

slug is the URL path segment returned as slug in search results (e.g. it-chef-soeges-til-rah). Returns full structured job data from the job page. The CLI prefers Schema.org JSON-LD when present and falls back to parsing the rendered HTML when Jobdanmark omits JSON-LD.

List categories with live counts

bun run .agents/skills/jobdanmark-search/cli/src/cli.ts categories [--format json|table|plain]

Returns all 10 job categories with current live job counts. Useful for giving the user an overview of the job market.

Autocomplete job titles and categories

bun run .agents/skills/jobdanmark-search/cli/src/cli.ts autocomplete --query "<text>" [--limit <n>]

Use this to resolve search terms into precise job title IDs (--jobtitle-id) or category IDs (--category) for search. The value field in results is the ID to pass to search.

Suggest locations

bun run .agents/skills/jobdanmark-search/cli/src/cli.ts locations --query "<text>" [--limit <n>]

Returns matching municipalities, zip codes, and regions. Use value from results as --municipality or --zip in search.


Categories

IDDanishEnglish
227972Pædagogik, Uddannelse og ForskningEducation, Research
227973Håndværk, Industri, Transport og LandbrugCrafts, Industry, Transport, Agriculture
227974Salg, Kommunikation, Marketing, og DesignSales, Communication, Marketing, Design
227975Pleje, Social og SundhedCare, Social, Health
227976Hotel, Service, Restauration og SikkerhedHotel, Service, Restaurant, Security
227977Kontor, Finans og ØkonomiOffice, Finance, Economy
227978IT, Ingeniør og EnergiIT, Engineering, Energy
227979Ledelse, HR og projektstyringManagement, HR, Project Management
543415Kirke, Kultur og UnderholdningChurch, Culture, Entertainment
227980Øvrige jobOther jobs

How to use effectively

Resolve locations first. Use locations to find the correct municipality name or zip code before passing them to search:

bun run .agents/skills/jobdanmark-search/cli/src/cli.ts locations --query "Aarhus" --format plain

Resolve job titles for precision. Use autocomplete to get the exact job title ID when the user wants a specific role:

bun run .agents/skills/jobdanmark-search/cli/src/cli.ts autocomplete --query "sygeplejerske" --format plain

Natural workflow: searchdetail.

  1. Use search to get a list of matching jobs with their slug.
  2. Call detail <slug> to get the full job posting with description, deadline, and organization details.

Use --format table for comparisons, --format json for data processing, and --format plain for single-record detail views.

Pagination: The API returns 30 items per page (server-enforced). Use --page to navigate through results. Use --limit to cap CLI output regardless of page size.

Combine filters for precise results — e.g. --text + --job-type + --municipality all work together in a single search request.


Usage examples

IT jobs in Copenhagen

bun run .agents/skills/jobdanmark-search/cli/src/cli.ts search \
  --category 227978 \
  --municipality "København" \
  --job-type fuldtid \
  --format table

Nursing jobs anywhere in Denmark

bun run .agents/skills/jobdanmark-search/cli/src/cli.ts search \
  --text "sygeplejerske" \
  --category 227975 \
  --format table

Student jobs in Aarhus

bun run .agents/skills/jobdanmark-search/cli/src/cli.ts search \
  --municipality "Aarhus" \
  --job-type studiejob \
  --format table

What job categories are most active right now?

bun run .agents/skills/jobdanmark-search/cli/src/cli.ts categories --format table

Full details for a specific job posting

bun run .agents/skills/jobdanmark-search/cli/src/cli.ts detail it-chef-soeges-til-rah --format plain

Find jobs in zip code 8000

bun run .agents/skills/jobdanmark-search/cli/src/cli.ts search --zip 8000 --format table

What electrician jobs are available?

bun run .agents/skills/jobdanmark-search/cli/src/cli.ts search \
  --text "elektriker" \
  --category 227973 \
  --job-type "fuldtid,deltid" \
  --format table

Apprentice positions in all of Denmark

bun run .agents/skills/jobdanmark-search/cli/src/cli.ts search \
  --job-type elev \
  --page 1 \
  --format table

Output formats

FormatBest for
jsonDefault — programmatic use, data processing, passing IDs between commands
tableQuick human-readable overviews and comparisons
plainSingle-record detail views (detail)

All errors are written to stderr as { "error": "...", "code": "..." } and the process exits with code 1.


Notes

  • All data is from the public Jobdanmark.dk API — no credentials required.
  • Pagination is 1-indexed (--page 1 is the first page). 30 items per page, server-enforced.
  • The detail command fetches the HTML job page and parses embedded JSON-LD when available, with a rendered-HTML fallback for pages that omit structured data. It does not use a separate JSON API.
  • slug in search results is extracted from the API's relative url field (the path after /job/).
  • applicationDeadline in search results can be null (no deadline set).
  • Job type values for filters: fuldtid, deltid, fleksjob, elev, studiejob, praktik.

Related skills