Cowork Job Search
A Claude Code plugin for AI-powered job searching, resume tailoring, and cover letter writing.
Skills
| Skill | Command | Description |
|---|
| Setup | /cowork:setup | One-time onboarding: resume, preferences, LinkedIn contacts, and work history interview |
| Job Search | /cowork:job-search | Search all job boards, return top 10 matches with tailored resumes |
| Tailor Resume | /cowork:tailor-resume | Create tailored resumes for specific job postings |
| Cover Letter | /cowork:cover-letter | Write natural, persuasive cover letters |
| App Questions | /cowork:app-questions | Help answer application questions tailored to each role |
| Network Scan | /cowork:network-scan | Scan your contacts' companies for matching job openings |
How They Work Together
/cowork:setup uploads your resume, configures preferences, imports LinkedIn contacts, and conducts a work history interview (one-time)
/cowork:job-search searches all supported boards, returns the top 10 matches with a tailored resume for each — ready for you to apply by hand
/cowork:tailor-resume rewrites your resume for a specific job posting (also done automatically by job-search)
/cowork:cover-letter last writes a cover letter using the most recent job's posting and tailored resume
/cowork:app-questions last helps you answer application form questions, saving each Q&A for reuse across applications
/cowork:network-scan scans your LinkedIn contacts' companies for matching openings (leverages your network for warm intros)
All skills share a ~/.cowork/ directory for personal files. Each job application gets its own folder containing the posting, tailored resume, cover letter, and application Q&A.
Installation
Option A: Claude Cowork (desktop app)
- Download Claude Cowork if you haven't already
- Download the plugin as a zip from GitHub: Download ZIP
- In Cowork, go to Plugins (left sidebar) and click the + button
- Select Upload plugin
- Drag and drop the downloaded zip file, then click Upload
- Run
/cowork:setup to get started
Option B: Claude Code
First, add the repository as a marketplace:
claude plugin marketplace add https://github.com/whyuascii/cowork-job-search.git
Then install the plugin:
claude plugin install cowork@cowork-job-search
Then run setup:
/cowork:setup
After installing
Setup will create ~/.cowork/, prompt you for your resume, configure your job preferences, optionally import your LinkedIn contacts, and conduct a work history interview.
You can also add your resume manually first:
mkdir -p ~/.cowork/resume
cp /path/to/your/resume.pdf ~/.cowork/resume/
Prerequisites
File Structure
Plugin (installed via marketplace):
cowork-job-search/
├── shared/
│ ├── templates/
│ │ └── profile.md # Work history profile template
│ └── references/
│ ├── fit-scoring.md # Canonical fit scoring criteria
│ ├── data-directory.md # Data directory resolution algorithm
│ ├── prerequisites.md # Prerequisites checking by skill
│ ├── browser-setup.md # Browser automation setup sequence
│ ├── job-boards.md # Supported job boards and search URL patterns
│ └── priority-hierarchy.md # Instruction priority hierarchy
├── skills/
│ ├── setup/
│ │ ├── SKILL.md
│ │ └── scripts/
│ ├── job-search/
│ │ ├── SKILL.md
│ │ ├── assets/templates/
│ │ └── scripts/
│ ├── tailor-resume/
│ │ ├── SKILL.md
│ │ └── scripts/
│ ├── cover-letter/
│ │ ├── SKILL.md
│ │ └── scripts/
│ ├── app-questions/
│ │ └── SKILL.md
│ └── network-scan/
│ ├── SKILL.md
│ └── scripts/
└── README.md