From f9c1978c65874b45a98128c524dfd9ec6c2fe998 Mon Sep 17 00:00:00 2001 From: Mads Lorentzen <50207393+MadsLorentzen@users.noreply.github.com> Date: Sun, 5 Jul 2026 10:59:08 +0200 Subject: [PATCH] docs: add linkedin-search to install lists in README and SETUP (#28) Follow-up to #20: the linkedin-search CLI landed without being added to the bun install instructions. Included in both lists with a note that the install is optional (zero runtime dependencies, dev types only). Also updated the README file tree and Bun prerequisite wording to reflect that the toolset is no longer Denmark-only. Co-authored-by: Claude Fable 5 --- README.md | 14 +++++++++----- SETUP.md | 6 ++++-- 2 files changed, 13 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 68a9972..2c73129 100644 --- a/README.md +++ b/README.md @@ -51,8 +51,11 @@ cd .agents/skills/jobbank-search/cli && bun install && cd ../../../.. cd .agents/skills/jobdanmark-search/cli && bun install && cd ../../../.. cd .agents/skills/jobindex-search/cli && bun install && cd ../../../.. cd .agents/skills/jobnet-search/cli && bun install && cd ../../../.. +cd .agents/skills/linkedin-search/cli && bun install && cd ../../../.. ``` +For `linkedin-search` the install is optional: it has zero runtime dependencies and runs with plain `bun`; `bun install` only pulls TypeScript dev types. + ### 3. Set up your profile ```bash @@ -118,11 +121,12 @@ ai-job-search/ │ │ ├── job-scraper/ # Job search orchestration │ │ └── upskill/ # /upskill skill gap analysis and learning plan │ └── settings.json # Claude Code permissions (shared, scoped) -├── .agents/skills/ # Job portal CLI tools (Denmark) -│ ├── jobbank-search/ # Akademikernes Jobbank -│ ├── jobdanmark-search/ # Jobdanmark.dk -│ ├── jobindex-search/ # Jobindex.dk -│ └── jobnet-search/ # Jobnet.dk (government portal) +├── .agents/skills/ # Job portal CLI tools +│ ├── jobbank-search/ # Akademikernes Jobbank (Denmark) +│ ├── jobdanmark-search/ # Jobdanmark.dk (Denmark) +│ ├── jobindex-search/ # Jobindex.dk (Denmark) +│ ├── jobnet-search/ # Jobnet.dk (Denmark, government portal) +│ └── linkedin-search/ # LinkedIn public job listings (country-agnostic) ├── cv/ │ └── main_example.tex # moderncv LaTeX template ├── cover_letters/ diff --git a/SETUP.md b/SETUP.md index b0e1cea..65bab18 100644 --- a/SETUP.md +++ b/SETUP.md @@ -24,7 +24,7 @@ python --version ### Bun (for job search tools) -The Danish job portal CLIs are written in TypeScript and run with Bun: +The job portal CLIs (four Danish portals plus the country-agnostic LinkedIn tool) are written in TypeScript and run with Bun: ```bash curl -fsSL https://bun.sh/install | bash @@ -52,11 +52,13 @@ Or manually: fork on GitHub, then clone your fork. ## 3. Install job search CLI dependencies ```bash -for tool in jobbank-search jobdanmark-search jobindex-search jobnet-search; do +for tool in jobbank-search jobdanmark-search jobindex-search jobnet-search linkedin-search; do cd .agents/skills/$tool/cli && bun install && cd ../../../.. done ``` +For `linkedin-search` the install is optional: it has zero runtime dependencies and runs with plain `bun`; `bun install` only pulls TypeScript dev types. + ## 4. Run the setup interview Start Claude Code in the repository: