Productivity & Collaboration job-searchjobnet-dkdanish-job-marketpublic-sector-jobsesko-occupationsrest-apibuncli

Jobnet-Search: Danish Official Job Portal Skill

Query the Jobnet.dk public API directly to search Denmark's official government job portal — 21,000+ live listings, no account or key required.

FollowSkills review · FSRS-2.0
Recommended
59/ 100 5-point scale 3.0 / 5
1 2 3 4 5 6
1Trust18 / 25 · 3.6/5

Read-only access to a public API with no credentials, no writes, no external side effects; ships disabled by default (enabled: false, opt-in); allowed-tools scoped to a single CLI invocation; detail explicitly passes incrementViews=false to avoid polluting view counts; SECURITY.md states the threat model. Deducted for: a spoofed Mozilla User-Agent, unverified publisher identity, no independent isolation/rollback mechanism, and runtime trust in an external API's data flow.

2Reliability9 / 20 · 2.3/5

Code is self-consistent: zod validation, an UNKNOWN_FLAG guard against silently discarded filters, 1900-01-01 sentinel-date normalization, exponential-backoff retries, JSON stderr error codes, and a 404 fallback for external ads. Deducted for: no committed test files visible for this CLI (CI runs bun test only when present), and static review cannot verify key-path reproduction, so capped below the executed anchor of 10+.

3Adaptability11 / 15 · 3.7/5

SKILL.md declares an extensive trigger-phrase list, clear scenarios (Danish job search), and boundaries (English suggestions may return empty, do not combine region and postal-code, detail 404 fallback) — high semantic trigger precision. Deducted for: full dependence on overseas jobnet.dk reachability with no statement on mainland-China network availability, and a deliberately narrow Danish-market scope.

4Convention11 / 15 · 3.7/5

Well-layered documentation (progressive disclosure in SKILL.md plus a detailed CLI README with endpoints, response shapes, error handling), MIT license, versioning, and known-limitation notes all present; maintenance path (SECURITY.md, CI) visible. Deducted for: no changelog, version mismatch (SKILL.md 1.0.0 vs cli.ts internal 0.1.0), and no committed test suite evidencing maintenance quality.

5Effectiveness6 / 15 · 2.0/5

The search→detail workflow, three output formats, worked examples, and pagination guidance plausibly cover real job-search retrieval needs and beat manually browsing the portal. Deducted for: static review only — no execution evidence of directly usable output, and the 21,000+ jobs claim is unverified; capped at 7 per static calibration.

6Verifiability4 / 10 · 2.0/5

Response shapes, endpoints, and error codes are documented and mutually consistent with the code; CI includes typechecks and security guards. Deducted for: no committed tests for this skill, no third-party execution evidence, and documented sample responses being author claims only; capped below 5 per static calibration.

Evidence confidence:Low Reviewed Sep 09, 2026 Reviewed revision 8c81edc330b9
The upstream repository has new commits since this review. The score still applies to the reviewed revision shown and may not cover the latest changes.
Before you use it
  • The skill depends entirely on overseas reachability of jobnet.dk with no stated mainland-China network availability — verify connectivity before use.
  • The CLI sends a spoofed Mozilla User-Agent to a government portal API, which may conflict with the portal's usage expectations; assess compliance risk yourself.
  • The skill ships disabled (opt-in) and targets the Danish job market only; English terms may return empty suggestions.
  • Static review executed nothing: no committed test suite was seen for the jobnet-search CLI, so key-path reliability is independently unverified.
  • SKILL.md version (1.0.0) and the internal cli.ts version (0.1.0) disagree; treat the actual code as authoritative when updating.
See the full review method →

What does this skill do, and when should you use it?

One of nine skills bundled in the ai-job-search repository, this skill connects to Jobnet.dk, Denmark's official government job portal operated by STAR (Styrelsen for Arbejdsmarked og Rekruttering). It runs a Bun-based CLI against a public REST API, supporting filters by keyword, region, postal-code radius, full/part time, and permanent/temporary duration, plus precise filtering via ESCO occupation categories. The skill ships disabled (opt-in) and targets the Danish employment market. CV tailoring, cover letters, and interview prep belong to sibling skills in the repo and are not part of this one. MIT licensed.

Runs bun run .agents/skills/jobnet-search/cli/src/cli.ts against the public jobnet.dk/bff REST API (automatically adding the required x-csrf: 1 header). Four subcommands: search filters listings by keyword, region, postal-code radius, work hours, duration, and occupation categories; detail <jobAdId> returns the full job description, contact persons, application deadline, and direct application URL; occupations discovers ESCO occupation identifiers; suggestions returns Danish job-title autocomplete. Output in , table, or plain format; errors go to stderr as JSON with exit code 1.

  1. A job seeker in Denmark searching official listings by keyword, such as sygeplejerske (nurse) or ingenioer (engineer)
  2. Location-bound applicants finding jobs near a postal code within a radius, e.g. 30 km around Aarhus 8000
  3. Candidates targeting public sector, healthcare, IT, or education roles who need precise ESCO occupation filtering
  4. Applicants facing deadlines who sort by --order ApplicationDate to see earliest deadlines first
  5. Developers building automated job pipelines who pass jobAdIds between commands using output

What are this skill's strengths and limitations?

Pros
  • Credential-free access to live data from Denmark's official government job portal, ~21,000+ active jobs at any time
  • Rich filtering: region, postal-code radius, work hours, employment duration, ESCO occupation categories, multiple sort orders
  • No API key needed; the CSRF header is handled automatically
  • Selectable /table/plain output formats suit both human review and programmatic pipelines
Limitations
  • Denmark-only; no direct value for other markets (the repo's /add-portal can generate skills for other portals, but that is not part of this skill)
  • Disabled by default; requires manual enabling or /setup
  • suggestions is tuned for Danish job titles — English queries may return empty results
  • search results omit the HTML job description; a separate detail call is required
  • Relies on an unofficial public API (jobnet.dk/bff) that could change; the source does not mention any test suite coverage

How do you install this skill?

The skill lives in the ai-job-search repo at .agents/skills/jobnet-search/. Clone the repo: gh repo fork MadsLorentzen/ai-job-search --clone, then install CLI dependencies: cd .agents/skills/jobnet-search/cli && bun install. Prerequisites: Claude Code (or another compatible agent tool) and Bun. Note the skill ships with enabled: false (Danish demo portal, opt-in); enable it via the repo's /setup command (when your market is Denmark) or by setting enabled to true in the frontmatter yourself.

How do you use this skill?

In Claude Code, mention any Danish job-search topic to trigger it (trigger phrases include jobnet, jobnet.dk, danish jobs, ledige stilling, and many more in English and Danish), or run the CLI directly. Examples: Copenhagen-area jobs with bun run .agents/skills/jobnet-search/cli/src/cli.ts search --region HovedstadenOgBornholm --format table; add --search-string "sygeplejerske" --work-hours FullTime --duration Permanent for permanent full-time nurse roles. Recommended workflow: discover the right Danish term or ESCO ID with suggestions/occupations first, run search to get jobAdIds, then detail <jobAdId> for the full posting. Do not combine --region and --postal-code in one query.

How does this skill compare with similar options?

Within the same repo, sibling Danish portal skills include jobindex-search (Jobindex.dk), jobbank-search (Akademikernes Jobbank), and jobdanmark-search (Jobdanmark.dk), plus the cross-border linkedin-search and freehire-search. For Danish public-sector jobs Jobnet is the official source; for international or tech roles, linkedin-search or freehire-search fit better.

FAQ

Do I need an API key or registration?
No. Data comes from the public jobnet.dk REST API with no authentication; the CLI adds the required x-csrf: 1 header automatically.
Can I use this outside Denmark?
This skill covers only Jobnet.dk. For other markets, use the repo's linkedin-search or freehire-search skills, or run /add-portal to generate a skill for your local board — though that generator is a separate capability, not part of this skill.
Why doesn't the skill activate after installation?
SKILL.md ships with `enabled: false` as an opt-in demo. Run the repo's /setup (when targeting the Danish market) or set enabled to true manually.
What are the known failure modes?
English terms may yield empty suggestions; --region and --postal-code cannot be combined; pagination is 1-indexed; and search results lack the job body, requiring an extra detail call.

More skills from this repository

All from MadsLorentzen/ai-job-search

Productivity & Collaboration

freehire Search Skill

Search tech job listings across many markets through freehire.me's public aggregator API — no keys, no signup, runs on your machine.

Productivity & Collaboration

Jobdanmark Search (Denmark Job Listings)

Query the Jobdanmark.dk public API straight from your AI assistant — search ~15,000+ live Danish job listings by keyword, city, category and employment type, with no login required.

Productivity & Collaboration

Jobindex Denmark Job Search

Query the public Jobindex.dk API to search live Danish job listings across all sectors from Claude Code — no account or key required.

Dev & Engineering

Jobbank Search Skill

Search live Danish job listings from Akademikernes Jobbank locally, with keyword and multi-dimensional filtering for academic and highly educated positions in Denmark.

Productivity & Collaboration

LinkedIn Search Skill

Search live LinkedIn job listings for any country or remote market with no login, no API key, and zero runtime dependencies — just Bun.

Productivity & Collaboration

Job Scraper — Local-First Job Search Skill

Automatically searches multiple job portals for new postings matching your profile, deduplicates across runs, and presents them sorted by fit — no more manual site-hopping.

Productivity & Collaboration

Job Application Assistant

A job search that runs on your machine: evaluate postings, tailor a LaTeX CV, write cover letters, and prep interviews — all inside Claude Code.

Productivity & Collaboration

Upskill — Skill Gap Analysis & Learning Plan

Compares your tracked job postings against your profile, surfaces skill gaps, and generates a prioritized learning plan with real, web-searched study resources.

Related skills