chore: untrack tracker CSV, scope scraper Bash permission, fix portal SKILL.md paths (#71)

- Untrack job_search_tracker.csv: it was both tracked and listed in
  .gitignore (same inconsistency class as the settings.local.json fix
  in #27). Users' personal rows risked merge conflicts on every pull;
  commands already create the file with the standard header when it
  is missing.
- Scope job-scraper's allowed-tools Bash entry (from #52) to
  'bun --version' and the portal-CLI invocation pattern, adopting the
  tighter form proposed in #65.
- Fix all five portal SKILL.mds documenting 'bun run skills/...'
  paths that do not resolve from the repo root ('.agents/skills/...'
  is correct) - now load-bearing since #52 wired /scrape to read
  these docs for CLI invocations. Surfaced in #66.
- Teach tools/lint_skills.py to glob-expand allowed-tools bun run
  targets so scoped wildcard permissions lint correctly.

Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Mads Lorentzen
2026-07-08 17:14:39 +02:00
committed by GitHub
co-authored by Claude Fable 5
parent 3c7a1cfdf5
commit a5ffcc39ff
8 changed files with 72 additions and 65 deletions
+10 -10
View File
@@ -17,7 +17,7 @@ description: >
hiring denmark, job listings denmark, python jobs denmark, grafisk designer job,
data engineer job, softwareudvikler job, full stack developer job danmark.
context: fork
allowed-tools: Bash(bun run skills/jobindex-search/cli/src/cli.ts *)
allowed-tools: Bash(bun run .agents/skills/jobindex-search/cli/src/cli.ts *)
---
# Jobindex Search Skill
@@ -40,7 +40,7 @@ Invoke this skill when the user wants to:
### Search job listings
```bash
bun run skills/jobindex-search/cli/src/cli.ts search [flags]
bun run .agents/skills/jobindex-search/cli/src/cli.ts search [flags]
```
Key flags:
@@ -56,7 +56,7 @@ Key flags:
### Fetch full job detail
```bash
bun run skills/jobindex-search/cli/src/cli.ts detail <id> [--format json|plain]
bun run .agents/skills/jobindex-search/cli/src/cli.ts detail <id> [--format json|plain]
```
`id` is the job ID from `search` results (e.g. `h1647303`). You may also pass the full Jobindex URL. Returns the full job description, deadline, employment type, hours, and apply link.
@@ -86,7 +86,7 @@ bun run skills/jobindex-search/cli/src/cli.ts detail <id> [--format json|plain]
### Find Python jobs posted in the last 7 days
```bash
bun run skills/jobindex-search/cli/src/cli.ts search \
bun run .agents/skills/jobindex-search/cli/src/cli.ts search \
--query python \
--jobage 7 \
--sort date \
@@ -96,7 +96,7 @@ bun run skills/jobindex-search/cli/src/cli.ts search \
### Data engineer jobs in Copenhagen
```bash
bun run skills/jobindex-search/cli/src/cli.ts search \
bun run .agents/skills/jobindex-search/cli/src/cli.ts search \
--query "data engineer københavn" \
--sort score \
--format table
@@ -105,7 +105,7 @@ bun run skills/jobindex-search/cli/src/cli.ts search \
### Graphic designer jobs — all time, by relevance
```bash
bun run skills/jobindex-search/cli/src/cli.ts search \
bun run .agents/skills/jobindex-search/cli/src/cli.ts search \
--query "grafisk designer" \
--limit 10 \
--format table
@@ -114,7 +114,7 @@ bun run skills/jobindex-search/cli/src/cli.ts search \
### Full-stack developer jobs, page 2
```bash
bun run skills/jobindex-search/cli/src/cli.ts search \
bun run .agents/skills/jobindex-search/cli/src/cli.ts search \
--query "full stack developer" \
--page 2 \
--format json
@@ -123,7 +123,7 @@ bun run skills/jobindex-search/cli/src/cli.ts search \
### Jobs posted today across all sectors
```bash
bun run skills/jobindex-search/cli/src/cli.ts search \
bun run .agents/skills/jobindex-search/cli/src/cli.ts search \
--jobage 1 \
--sort date \
--limit 20 \
@@ -133,13 +133,13 @@ bun run skills/jobindex-search/cli/src/cli.ts search \
### Get full details for a specific job
```bash
bun run skills/jobindex-search/cli/src/cli.ts detail h1647303 --format plain
bun run .agents/skills/jobindex-search/cli/src/cli.ts detail h1647303 --format plain
```
### Marketing jobs in Aarhus
```bash
bun run skills/jobindex-search/cli/src/cli.ts search \
bun run .agents/skills/jobindex-search/cli/src/cli.ts search \
--query "marketing aarhus" \
--jobage 30 \
--sort date \