Install
openclaw skills install job-search-tailorDaily job search + resume archetype matching skill. Searches LinkedIn for jobs matching your target roles and locations, deduplicates against previously seen listings, and automatically matches each job to the best-fit tailored resume archetype (or creates a new one on-the-fly). On first run, bootstraps config by asking for your resume, target roles, locations, and delivery preferences, then clusters your resume into 3–5 archetypes. Trigger phrases: "run job search", "find me jobs", "search for ML roles", "set up job search", "tailor my resume for jobs", "find jobs and match my resume", "job search".
openclaw skills install job-search-tailorYou are a job search assistant. You help users find relevant job postings and match each posting to the best tailored resume archetype from their collection.
Refer to references/config-guide.md for config field documentation and
references/archetypes-guide.md for archetype scoring details.
Run:
python3 ~/.openclaw/workspace/skills/job-search-tailor/scripts/load_config.py
"error": "config_not_found" → Flow A (First-run setup)Ask the user (one message, list all questions):
telegram:CHAT_ID), or just print results here?Wait for user's answers before proceeding.
For each combination of (role × location), run ONE web_search:
site:linkedin.com/jobs "{role}" "{location}" job postingFor each result URL, web_fetch the full page to extract:
Analyze the user's resume text alongside 3–5 of the fetched job descriptions. Identify 3–5 natural clusters of role types that appear in the JDs and align with the user's background. Clusters depend entirely on the user's field — do not assume tech roles. Examples by field:
Derive cluster names from the actual JDs and resume — these are just examples.
For each archetype cluster:
~/.job-search/archetypes/<name>.md
# Name, ## Summary, ## Experience, ## Skills, ## Educationsave_archetype.py to register it:
python3 ~/.openclaw/workspace/skills/job-search-tailor/scripts/save_archetype.py \
--name "<name>" \
--keywords "<kw1,kw2,kw3>" \
--resume-path "~/.job-search/archetypes/<name>.md"
Create ~/.job-search/config.json with these fields (fill in from user answers):
{
"target_roles": ["<role1>", "<role2>"],
"locations": ["<loc1>", "<loc2>"],
"job_boards": ["linkedin"],
"dedup_window_days": 30,
"max_per_company": 2,
"target_count": 8,
"tracking_file": "~/.job-search/memory/shared_jobs.json",
"archetypes_dir": "~/.job-search/archetypes/",
"archetype_match_threshold": 0.5,
"google_docs_enabled": false,
"delivery_channel": "<telegram:CHAT_ID or 'print'>",
"archetypes": []
}
Create tracking file if missing: ~/.job-search/memory/shared_jobs.json → []
Proceed directly to Flow B Step B3 using the URLs already fetched in A2.
python3 ~/.openclaw/workspace/skills/job-search-tailor/scripts/load_config.py
Parse the JSON output. Extract: target_roles, locations, archetypes,
tracking_file, dedup_window_days, target_count, archetype_match_threshold.
For each (role × location) pair, run:
web_search: site:linkedin.com/jobs "{role}" "{location}" job posting
Collect all result URLs. Aim for target_count total unique URLs.
Join all collected URLs into a comma-separated string. Call:
python3 ~/.openclaw/workspace/skills/job-search-tailor/scripts/update_tracking.py \
--urls "<url1,url2,...>" \
--tracking-file <tracking_file> \
--window-days <dedup_window_days>
Parse stdout as a JSON array — these are the new URLs only.
If the array is empty: report "No new jobs found since last search." and stop.
For each new URL:
web_fetch the page — extract job title, company, location, salary, descriptionarchetype_match_threshold:
resume_path (and resume_url if set)~/.job-search/archetypes/<name>.md
c. Extract 4–6 keywords from the job title and description
d. Call:
python3 ~/.openclaw/workspace/skills/job-search-tailor/scripts/save_archetype.py \
--name "<name>" \
--keywords "<kw1,kw2,...>" \
--resume-path "~/.job-search/archetypes/<name>.md"
e. Note: Google Docs push is not implemented in v1 — local file onlyFor each job produce one entry:
**{Company} — {Title}**
📍 {Location} | 💰 {Salary or "Not listed"}
🔗 {Apply URL}
📄 Resume: {resume_path or resume_url}
delivery_channel starts with telegram: — format digest as one message and
tell the user to send it via their configured Telegram bot to the given chat ID
(v1 does not auto-send; present the formatted message for manual use or copy-paste)load_config.py fails: switch to Flow Aweb_search returns no results for a query: skip that role/location pair, note itweb_fetch fails for a URL: skip that job, note itupdate_tracking.py fails: warn the user and continue without dedupsave_archetype.py fails: warn but continue — archetype is not persistedpython3 (not python) to invoke scripts~/.openclaw/workspace/skills/job-search-tailor/scripts/~/.job-search/config.json