Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

jobbank-search职位库搜索

Agent Skill

jobbank-search 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

238

周安装

10

GitHub Stars

48

下载量

83
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:jobbank-search(职位库搜索)
来源仓库:https://github.com/mikkelkrogsholm/skills
仓库路径:skills/jobbank-search
安装命令:
npx skills add https://github.com/mikkelkrogsholm/skills --skill jobbank-search
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/mikkelkrogsholm/skills --skill jobbank-search

简介

jobbank-search 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 它可能用于访问特定职位数据库或就业平台,具体用途需结合原始 README 进一步确认。
  • 安装命令为 npx skills add https://github.com/mikkelkrogsholm/skills --skill jobbank-search。
  • 使用前建议确认权限范围、维护状态,以及是否会触发联网或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Jobbank Search Skill

Search live Danish job listings from Akademikernes Jobbank — Denmark's primary job portal for highly educated candidates. No authentication needed. Uses the RSS feed for search (up to 100 results) and JSON-LD parsing for detailed job information.

When to use this skill

Invoke this skill when the user wants to:

  • Search for jobs, positions, or career opportunities in Denmark
  • Find academic, graduate, trainee, Ph.d., or postdoc positions
  • Look for jobs by keyword, industry, location, education background, or work function
  • Find remote or hybrid positions in Denmark
  • Get full details for a specific job posting on jobbank.dk
  • Check what positions are available at a specific company on jobbank.dk
  • Browse jobs suitable for new graduates or people with international backgrounds

Commands

Search jobs

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

Key flags:

  • --key <text> — keyword search (title, company, keyword)
  • --exclude <text> — exclude keywords from results
  • --type <code> — job type: 3=Fuldtidsjob, 6=Graduate/trainee, 13=Deltidsjob, 8=Vikariat, 12=Ph.d. & Postdoc, 11=Freelance, 9=Praktikplads, 4=Studiejob (repeatable)
  • --location <code> — region: 2=Storkøbenhavn, 8=Østjylland (Aarhus), 7=Midtjylland, 6=Nordjylland, 13=Fyn (repeatable)
  • --work-area <code> — function: 31=IT-Software, 43=Data & Analyse, 26=Ledelse, 29=Marketing (repeatable)
  • --industry <code> — sector: 10331=IT & Tele, 10442=Forskning & Uddannelse, 10358=Finans (repeatable)
  • --education <code> — education field: 24=IT, 21=Økonomi & Revision, 34=Samfundsvidenskab (repeatable)
  • --remote <value>helt (fully remote) or delvist (partially remote)
  • --suitable-for <code>2=Nyuddannede, 4=International baggrund, 5=Erfarne
  • --company <id> — filter by company ID
  • --since <YYYY-MM-DD> — jobs posted on or after this date
  • --limit <n> — cap results returned by CLI
  • --format json|table|plain
RSS limitation: The RSS feed returns max 100 items per request. No pagination is available via RSS. meta.total shows the true count; results is capped at 100.

Full job detail

bun run skills/jobbank-search/cli/src/cli.ts detail <id> [--format json|plain]

id is the numeric job ID from search results. Fetches the job page and parses the embedded Schema.org JobPosting JSON-LD for structured data.


How to use effectively

Start with search, then use detail for full description.

  1. Use search with --key and/or filters to find matching jobs with IDs
  2. Call detail <id> to get the full HTML job description, exact deadline, and company details

Use repeatable flags for multi-value filters. Most filter flags can be repeated to match any of the values:

# IT or Finance industry, Copenhagen or Aarhus
bun run skills/jobbank-search/cli/src/cli.ts search \
  --industry 10331 --industry 10358 \
  --location 2 --location 8

Filter codes are documented in the README at skills/jobbank-search/cli/README.md.


Usage examples

Find data scientist jobs in Copenhagen

bun run skills/jobbank-search/cli/src/cli.ts search \
  --key "data scientist" \
  --location 2 \
  --format table

Graduate trainee positions for new graduates

bun run skills/jobbank-search/cli/src/cli.ts search \
  --type 6 \
  --suitable-for 2 \
  --format table

Remote IT software jobs

bun run skills/jobbank-search/cli/src/cli.ts search \
  --work-area 31 \
  --remote helt \
  --format table

Ph.d. and postdoc positions in research

bun run skills/jobbank-search/cli/src/cli.ts search \
  --type 12 \
  --industry 10442 \
  --format table

Recent full-time jobs posted since March 1

bun run skills/jobbank-search/cli/src/cli.ts search \
  --type 3 \
  --since 2026-03-01 \
  --format table

Full details for a specific job

bun run skills/jobbank-search/cli/src/cli.ts detail 1234567 --format plain

IT jobs in Aarhus or Copenhagen

bun run skills/jobbank-search/cli/src/cli.ts search \
  --key developer \
  --location 2 --location 8 \
  --work-area 31 \
  --format table

Output formats

FormatBest for
jsonDefault — programmatic use, passing IDs to detail
tableQuick human-readable list of results
plainSingle-job detail views (detail command)

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


Notes

  • Data is from the public jobbank.dk RSS feed and HTML pages — no credentials required.
  • RSS feed returns max 100 results per query. For higher counts, meta.total shows the true total.
  • The detail command fetches a full job page and extracts the JSON-LD structured data block.
  • location values are region codes (e.g. 2 = Storkøbenhavn), not city names.
  • All filter codes are documented in skills/jobbank-search/cli/README.md.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.91%
按下载量换算28

Claude

32.39%
按下载量换算27

Cursor

16.89%
按下载量换算14

Gemini CLI

10.15%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills