mirror of
https://github.com/MadsLorentzen/ai-job-search.git
synced 2026-09-17 00:26:26 +00:00
docs: document freehire-search in README and SETUP (#103)
The freehire-search CLI is typechecked in CI but was missing from install instructions, the file tree, and the country-agnostic portal overview. Co-authored-by: fooSynaptic <19420328+fooSynaptic@users.noreply.github.com>
This commit is contained in:
co-authored by
fooSynaptic
parent
779a33aa20
commit
6a1240648f
@@ -26,7 +26,7 @@ On Windows, `py --version` is often the most reliable check. If your system expo
|
||||
|
||||
### Bun (for job search tools)
|
||||
|
||||
The job portal CLIs (four Danish portals plus the country-agnostic LinkedIn tool) are written in TypeScript and run with Bun.
|
||||
The job portal CLIs (four Danish portals plus the country-agnostic `linkedin-search` and `freehire-search` tools) are written in TypeScript and run with Bun.
|
||||
|
||||
- macOS/Linux:
|
||||
|
||||
@@ -122,7 +122,7 @@ Run these from the repository root.
|
||||
- PowerShell:
|
||||
|
||||
```powershell
|
||||
$tools = @("jobbank-search", "jobdanmark-search", "jobindex-search", "jobnet-search", "linkedin-search")
|
||||
$tools = @("jobbank-search", "jobdanmark-search", "jobindex-search", "jobnet-search", "linkedin-search", "freehire-search")
|
||||
foreach ($tool in $tools) {
|
||||
Set-Location ".agents/skills/$tool/cli"
|
||||
bun install
|
||||
@@ -132,12 +132,12 @@ foreach ($tool in $tools) {
|
||||
|
||||
- Bash / zsh / Git Bash:
|
||||
```bash
|
||||
for tool in jobbank-search jobdanmark-search jobindex-search jobnet-search linkedin-search; do
|
||||
for tool in jobbank-search jobdanmark-search jobindex-search jobnet-search linkedin-search freehire-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.
|
||||
For `linkedin-search` and `freehire-search` the install is optional: both have zero runtime dependencies and run with plain `bun`; `bun install` only pulls TypeScript dev types.
|
||||
|
||||
If you're outside Denmark, you can generate an equivalent search skill for your local job board with `/add-portal` — it scaffolds the same CLI structure for any public portal and test-runs a live query before registering. See the "Job search tools" section in the README.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user