├── .dockerignore ├── .gitignore ├── APPLY_TO_MORE_JOBS_NOW.md ├── AUTOMATION_SETUP_GUIDE.md ├── BEFORE_AFTER_COMPARISON.md ├── BOOKMARKLET_CODE.txt ├── COMPLETE_GUIDE.md ├── DEPLOYMENT.md ├── Dockerfile ├── FIX_EXTENSION.md ├── FULLSTACK_JOB_FINDER.md ├── HOW_TO_USE.md ├── PRODUCTION_READY.md ├── QUICK_APPLY_NOW.md ├── README.md ├── READY_TO_APPLY.md ├── SESSION_SUMMARY.md ├── SIMPLE_AUTOMATION.md ├── START_HERE.md ├── UPDATE_SUMMARY.md ├── UPWORK_PROFILE_RECOMMENDATIONS.md ├── UPWORK_SCRAPING_GUIDE.md ├── VERIFICATION_CHECKLIST.md ├── apply_to_filtered_jobs.py ├── automation_server.py ├── chrome-extension ├── ICONS_NEEDED.md ├── README.md ├── background.js ├── content.js ├── manifest.json ├── popup.html ├── popup.js ├── styles.css └── test.html ├── debug_page_source.html ├── debug_screenshot.png ├── deploy.sh ├── docker-compose.yml ├── electron-app ├── README.md ├── index.html ├── main.js ├── package.json ├── renderer.js └── styles.css ├── extension_server.py ├── files ├── cover_letter.txt ├── profile.md └── upwork_job_listings.txt ├── find_fullstack_jobs.md ├── flowchart.png ├── main.py ├── paste_job_url.py ├── quick_apply.py ├── real_upwork_jobs.py ├── requirements.txt ├── scrape_upwork_jobs.py ├── scrape_with_puppeteer.py ├── search_with_filters.py ├── src ├── agent.py ├── graph.py ├── prompts.py ├── upwork_scraper_puppeteer.py └── utils.py ├── test_paste_script.py ├── test_scraper.py ├── test_with_sample_jobs.py └── upwork_bookmarklet.js /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | src/__pycache__/ 3 | -------------------------------------------------------------------------------- /APPLY_TO_MORE_JOBS_NOW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/APPLY_TO_MORE_JOBS_NOW.md -------------------------------------------------------------------------------- /AUTOMATION_SETUP_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/AUTOMATION_SETUP_GUIDE.md -------------------------------------------------------------------------------- /BEFORE_AFTER_COMPARISON.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/BEFORE_AFTER_COMPARISON.md -------------------------------------------------------------------------------- /BOOKMARKLET_CODE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/BOOKMARKLET_CODE.txt -------------------------------------------------------------------------------- /COMPLETE_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/COMPLETE_GUIDE.md -------------------------------------------------------------------------------- /DEPLOYMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/DEPLOYMENT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/Dockerfile -------------------------------------------------------------------------------- /FIX_EXTENSION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/FIX_EXTENSION.md -------------------------------------------------------------------------------- /FULLSTACK_JOB_FINDER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/FULLSTACK_JOB_FINDER.md -------------------------------------------------------------------------------- /HOW_TO_USE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/HOW_TO_USE.md -------------------------------------------------------------------------------- /PRODUCTION_READY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/PRODUCTION_READY.md -------------------------------------------------------------------------------- /QUICK_APPLY_NOW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/QUICK_APPLY_NOW.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/README.md -------------------------------------------------------------------------------- /READY_TO_APPLY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/READY_TO_APPLY.md -------------------------------------------------------------------------------- /SESSION_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/SESSION_SUMMARY.md -------------------------------------------------------------------------------- /SIMPLE_AUTOMATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/SIMPLE_AUTOMATION.md -------------------------------------------------------------------------------- /START_HERE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/START_HERE.md -------------------------------------------------------------------------------- /UPDATE_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/UPDATE_SUMMARY.md -------------------------------------------------------------------------------- /UPWORK_PROFILE_RECOMMENDATIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/UPWORK_PROFILE_RECOMMENDATIONS.md -------------------------------------------------------------------------------- /UPWORK_SCRAPING_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/UPWORK_SCRAPING_GUIDE.md -------------------------------------------------------------------------------- /VERIFICATION_CHECKLIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/VERIFICATION_CHECKLIST.md -------------------------------------------------------------------------------- /apply_to_filtered_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/apply_to_filtered_jobs.py -------------------------------------------------------------------------------- /automation_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/automation_server.py -------------------------------------------------------------------------------- /chrome-extension/ICONS_NEEDED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/chrome-extension/ICONS_NEEDED.md -------------------------------------------------------------------------------- /chrome-extension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/chrome-extension/README.md -------------------------------------------------------------------------------- /chrome-extension/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/chrome-extension/background.js -------------------------------------------------------------------------------- /chrome-extension/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/chrome-extension/content.js -------------------------------------------------------------------------------- /chrome-extension/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/chrome-extension/manifest.json -------------------------------------------------------------------------------- /chrome-extension/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/chrome-extension/popup.html -------------------------------------------------------------------------------- /chrome-extension/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/chrome-extension/popup.js -------------------------------------------------------------------------------- /chrome-extension/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/chrome-extension/styles.css -------------------------------------------------------------------------------- /chrome-extension/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/chrome-extension/test.html -------------------------------------------------------------------------------- /debug_page_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/debug_page_source.html -------------------------------------------------------------------------------- /debug_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/debug_screenshot.png -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/deploy.sh -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /electron-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/electron-app/README.md -------------------------------------------------------------------------------- /electron-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/electron-app/index.html -------------------------------------------------------------------------------- /electron-app/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/electron-app/main.js -------------------------------------------------------------------------------- /electron-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/electron-app/package.json -------------------------------------------------------------------------------- /electron-app/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/electron-app/renderer.js -------------------------------------------------------------------------------- /electron-app/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/electron-app/styles.css -------------------------------------------------------------------------------- /extension_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/extension_server.py -------------------------------------------------------------------------------- /files/cover_letter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/files/cover_letter.txt -------------------------------------------------------------------------------- /files/profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/files/profile.md -------------------------------------------------------------------------------- /files/upwork_job_listings.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /find_fullstack_jobs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/find_fullstack_jobs.md -------------------------------------------------------------------------------- /flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/flowchart.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/main.py -------------------------------------------------------------------------------- /paste_job_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/paste_job_url.py -------------------------------------------------------------------------------- /quick_apply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/quick_apply.py -------------------------------------------------------------------------------- /real_upwork_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/real_upwork_jobs.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/requirements.txt -------------------------------------------------------------------------------- /scrape_upwork_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/scrape_upwork_jobs.py -------------------------------------------------------------------------------- /scrape_with_puppeteer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/scrape_with_puppeteer.py -------------------------------------------------------------------------------- /search_with_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/search_with_filters.py -------------------------------------------------------------------------------- /src/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/src/agent.py -------------------------------------------------------------------------------- /src/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/src/graph.py -------------------------------------------------------------------------------- /src/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/src/prompts.py -------------------------------------------------------------------------------- /src/upwork_scraper_puppeteer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/src/upwork_scraper_puppeteer.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/src/utils.py -------------------------------------------------------------------------------- /test_paste_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/test_paste_script.py -------------------------------------------------------------------------------- /test_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/test_scraper.py -------------------------------------------------------------------------------- /test_with_sample_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/test_with_sample_jobs.py -------------------------------------------------------------------------------- /upwork_bookmarklet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIXerum/Upwork-Auto-Jobs-Applier-using-AI/HEAD/upwork_bookmarklet.js --------------------------------------------------------------------------------