mirror of
https://github.com/MadsLorentzen/ai-job-search.git
synced 2026-09-17 00:26:26 +00:00
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 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Fable 5
parent
f15b9fb65d
commit
f9c1978c65
@@ -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/jobdanmark-search/cli && bun install && cd ../../../..
|
||||||
cd .agents/skills/jobindex-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/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
|
### 3. Set up your profile
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
@@ -118,11 +121,12 @@ ai-job-search/
|
|||||||
│ │ ├── job-scraper/ # Job search orchestration
|
│ │ ├── job-scraper/ # Job search orchestration
|
||||||
│ │ └── upskill/ # /upskill skill gap analysis and learning plan
|
│ │ └── upskill/ # /upskill skill gap analysis and learning plan
|
||||||
│ └── settings.json # Claude Code permissions (shared, scoped)
|
│ └── settings.json # Claude Code permissions (shared, scoped)
|
||||||
├── .agents/skills/ # Job portal CLI tools (Denmark)
|
├── .agents/skills/ # Job portal CLI tools
|
||||||
│ ├── jobbank-search/ # Akademikernes Jobbank
|
│ ├── jobbank-search/ # Akademikernes Jobbank (Denmark)
|
||||||
│ ├── jobdanmark-search/ # Jobdanmark.dk
|
│ ├── jobdanmark-search/ # Jobdanmark.dk (Denmark)
|
||||||
│ ├── jobindex-search/ # Jobindex.dk
|
│ ├── jobindex-search/ # Jobindex.dk (Denmark)
|
||||||
│ └── jobnet-search/ # Jobnet.dk (government portal)
|
│ ├── jobnet-search/ # Jobnet.dk (Denmark, government portal)
|
||||||
|
│ └── linkedin-search/ # LinkedIn public job listings (country-agnostic)
|
||||||
├── cv/
|
├── cv/
|
||||||
│ └── main_example.tex # moderncv LaTeX template
|
│ └── main_example.tex # moderncv LaTeX template
|
||||||
├── cover_letters/
|
├── cover_letters/
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ python --version
|
|||||||
|
|
||||||
### Bun (for job search tools)
|
### 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
|
```bash
|
||||||
curl -fsSL https://bun.sh/install | 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
|
## 3. Install job search CLI dependencies
|
||||||
|
|
||||||
```bash
|
```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 ../../../..
|
cd .agents/skills/$tool/cli && bun install && cd ../../../..
|
||||||
done
|
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
|
## 4. Run the setup interview
|
||||||
|
|
||||||
Start Claude Code in the repository:
|
Start Claude Code in the repository:
|
||||||
|
|||||||
Reference in New Issue
Block a user