π¦ ClawHub
Job Auto Apply
by @marjoriebroad
Automated job search and application system for Clawdbot. Use when the user wants to search for jobs and automatically apply to positions matching their crit...
π‘ Examples
1. Set Up Environment
export SKILLBOSS_API_KEY=your_skillboss_api_key
2. Set Up User Profile
First, create a user profile using the template:
# Copy the profile template
cp profile_template.json ~/job_profile.jsonEdit with user's information
Fill in: name, email, phone, resume path, skills, preferences
3. Run Job Search and Apply
# Basic usage - search and apply (dry run)
python job_search_apply.py \
--title "Software Engineer" \
--location "San Francisco, CA" \
--remote \
--max-applications 10 \
--dry-runWith profile file
python job_search_apply.py \
--profile ~/job_profile.json \
--title "Backend Engineer" \
--platforms linkedin,indeed \
--auto-applyProduction mode (actual applications)
python job_search_apply.py \
--profile ~/job_profile.json \
--title "Senior Developer" \
--no-dry-run \
--require-confirmation
π Tips & Best Practices
TERMINAL
clawhub install job-auto-apply-2