From 8d2786118b5ebe50bd0bf2df7e2741b7ec137f70 Mon Sep 17 00:00:00 2001 From: kansal230 <87700165+kansal230@users.noreply.github.com> Date: Tue, 25 Aug 2026 20:18:59 +0530 Subject: [PATCH] docs: add missing tools/ entries to README file structure (#361) The file structure tree only listed 4 of the 9 files in tools/, omitting check_framework_version.py, check_upstream_updates.py, robots_check.py, upstream_triage.py, and verify_pdf.py. --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index c1dbd62..7ae7c9c 100644 --- a/README.md +++ b/README.md @@ -218,9 +218,14 @@ ai-job-search/ ├── .github/workflows/ci.yml # CI: LaTeX smoke compiles, skill lint, CLI typechecks ├── salary_lookup.py # Salary benchmarking tool (BYO data) ├── tools/ +│ ├── check_framework_version.py # CI check: framework_version bumped when skill files change +│ ├── check_upstream_updates.py # Preview which personalized files an upstream update touches │ ├── convert_salary_excel.py # Convert salary Excel to JSON │ ├── lint_skills.py # CI lint for skills, commands, settings.json +│ ├── robots_check.py # Gate the browser-header retry against robots.txt │ ├── security_guards.py # CI guards: permission allowlist, gitignore rules, manifests +│ ├── upstream_triage.py # Sort upstream commits into worth-reviewing vs probably-skip +│ ├── verify_pdf.py # Verify a compiled PDF's page count and extractable text │ └── README_SALARY_TOOL.md # Salary tool setup instructions ├── job_scraper/ # Scraper state (seen jobs, results) ├── gmail_sync/ # /gmail-sync state (processed message IDs, last sync date)