ワンクリックで
job-preferences
Set or update your job search preferences (titles, salary, remote, filters). Used by /job-apply:job-search and other skills.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Set or update your job search preferences (titles, salary, remote, filters). Used by /job-apply:job-search and other skills.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Manage Job Apply's local profile, reusable answers, application history, and resumable sessions. Use whenever a Job Apply workflow needs to initialize, migrate, read, or update persistent applicant data.
Fill out job applications automatically using your resume. Use when the user wants to apply for jobs on LinkedIn Easy Apply, Greenhouse, Ashby, Lever, Rippling, or Workday.
Search LinkedIn, Hacker News, and Twitter/X for jobs with connections, hiring manager insights, and preference-based scoring. Use when the user wants to find jobs, search for positions, or explore job opportunities.
| name | job-preferences |
| description | Set or update your job search preferences (titles, salary, remote, filters). Used by /job-apply:job-search and other skills. |
| allowed-tools | Read, Write, Bash |
A Claude Code skill for managing persistent job search preferences. Set your target titles, salary floor, remote preference, and exclusion filters once — /job-apply:job-search and other skills reuse them automatically.
Follow /job-apply:answer-memory: run python3 "${CLAUDE_PLUGIN_ROOT}/scripts/job-apply-store.py" init, then load saved preferences with preferences-get. Never read or write persistent Job Apply files directly.
Use the JSON object returned by preferences-get.
If preferences exist, display them:
Your current job search preferences:
- Target titles: Staff AI Engineer, Principal ML Engineer
- Min base salary: $250K
- Remote preference: Remote only
- Exclude patterns: junior, associate, intern, entry level
- Default time range: last week
Would you like to update any of these?
Then wait for the user. If they say no, stop. If they want to update, ask only about the fields they want to change using AskUserQuestion.
If no preferences exist, run the full Q&A below.
Use AskUserQuestion to collect all fields. Ask up to 4 questions at a time (the tool's limit).
Question batch 1:
Target titles (multi-select + custom)
Min base salary
Remote preference
Exclude patterns (multi-select)
Question batch 2:
Write the collected values to a private temporary JSON object, then call preferences-set --input <preferences.json> through the bundled helper and remove the temporary file. The helper merges supplied keys while preserving the rest of the preferences and profile. Never patch profile.json directly.
Schema:
{
"preferences": {
"targetTitles": ["Staff AI Engineer", "Principal ML Engineer"],
"minBaseSalary": "$250K",
"remotePreference": "remote only",
"excludePatterns": ["junior", "associate", "intern", "entry level"],
"defaultTimeRange": "last week"
}
}
Display the saved preferences and confirm:
Preferences saved to your local Job Apply store at
~/.job-apply/profile.json.These will be used automatically by
/job-apply:job-search. Run/job-apply:job-preferencesagain any time to update them.
When the user runs /job-apply:job-preferences and preferences already exist, show current values and let them update selectively. Only overwrite the fields they change — keep the rest intact.
/job-apply:answer-memory; never directly edit files under ~/.job-apply/preferences-set without --replace for selective updates