← Back to Skills Marketplace
jerronl

Jobautopilot Bundle

by jerronl · GitHub ↗ · v1.3.2 · MIT-0
cross-platform ⚠ pending
248
Downloads
0
Stars
0
Active Installs
20
Versions
Install in OpenClaw
/install jobautopilot-bundle
Description
Installs the full Job Autopilot pipeline — search jobs, tailor resumes, and submit applications. Convenience bundle that installs jobautopilot-search, jobaut...
README (SKILL.md)

Job Autopilot — Full Bundle

Install all three Job Autopilot skills and run the full end-to-end pipeline: search → tailor → submit.

What this skill does

This is a bundle installer only. It contains two scripts:

  • install.sh — runs openclaw skills install for each of the three sub-skills
  • setup.sh — prompts for your personal info and writes a local config file

Neither script makes outbound network requests beyond openclaw skills install. No data is collected or sent to any server by these scripts. Note: the sub-skills (especially the submitter) use browser automation to navigate job sites — that browser activity does involve network traffic to those sites, initiated only when you explicitly request it.

Install all three skills

openclaw skills install jobautopilot-bundle
openclaw skills install jobautopilot-search
openclaw skills install jobautopilot-tailor
openclaw skills install jobautopilot-submitter

Verify all four are loaded:

openclaw skills check | grep jobautopilot

How it works

jobautopilot-search  ──►  jobautopilot-tailor  ──►  jobautopilot-submitter
   Find jobs               Tailor resume              Fill & submit forms
   Filter & track          Write cover letter         Verify & confirm

Just tell OpenClaw what you want:

"Search for software engineer jobs in New York"

"Tailor my resume for the shortlisted jobs"

"Submit applications for all resume-ready jobs"

Privacy & data storage

Setup collects personal information and stores it locally only:

Data Stored at
Name, email, phone, LinkedIn ~/.openclaw/users/\x3Cyou>/config.sh
Resume files Your existing folder (you choose during setup)
Tailored resumes & cover letters ~/Documents/jobs/tailored/ (default, set during setup)
Job tracker ~/.openclaw/workspace/job_search/job_application_tracker.md

No data is sent to any third party. Browser automation uses two isolated profiles (search and apply) created locally. No passwords are stored by this skill. Login to job sites uses browser-saved credentials or manual entry — the skill never reads or stores any password.

Security

  • No outbound network calls from scripts: install.sh and setup.sh operate locally only. The only network operations are openclaw skills install (downloading these skills) and browser navigation you explicitly request.
  • No password handling: This skill does not read, store, or transmit any passwords. Login flows rely on your browser's own credential store.
  • Browser profiles: Setup instructs you to manually create two isolated profiles (search, apply) using openclaw browser profile create. No browser profiles are created automatically by any script. You can inspect or delete them at any time.
  • Personal data: Written only to ~/.openclaw/users/\x3Cyou>/config.sh. Setup automatically restricts this file to owner-only access (chmod 600). Read setup.sh in full before running to verify this.
  • Helper scripts: All scripts in scripts/ are plain shell, Python, and JavaScript with no obfuscation, no encoded payloads, no remote fetches at runtime.
  • EEOC fields: Standard fields required by US job application forms (Equal Employment Opportunity Commission). Values are stored locally in your config and supplied only to forms you explicitly instruct the agent to fill. They are never logged or transmitted elsewhere.

Requirements

  • OpenClaw >= 2026.2.0
  • Browser tool enabled
  • pip install python-docx

Support

If Job Autopilot saved you time, a coffee is appreciated: paypal.me/ZLiu308

Usage Guidance
This bundle appears to do what it claims: install three jobautopilot sub-skills and create local workspace/config files. Before installing/running: 1) Inspect setup.sh and the generated ~/.openclaw/users/<you>/config.sh (the script prints the path and sets chmod 600) and confirm the values are correct; never run scripts you don't inspect if they will be sourced. 2) Note small inconsistencies in the package (the SKILL.md top version differs slightly from registry metadata, and setup.sh refers to 'clawhub' in messages while other places use 'openclaw'); confirm you are using the correct OpenClaw CLI commands for your environment. 3) The setup collects PII and EEOC data — ensure you are comfortable storing that locally and verify permissions after creation. 4) Browser automation will navigate job sites when you ask it to; it claims not to store passwords but may use your browser-saved credentials — avoid storing sensitive credentials if you don't want them used. 5) If you have low tolerance for risk, run the setup in a disposable/isolated account or VM first, and verify sub-skill code after 'openclaw skills install'.
Capability Assessment
Purpose & Capability
Name/description match the actual artifacts: this is a bundle installer that installs jobautopilot-search, -tailor, and -submitter and wires local workspace files. Required runtime (python3) and included scripts are appropriate for a resume/docx conversion and local setup task. No extraneous cloud credentials, tools, or unrelated binaries are requested.
Instruction Scope
Runtime instructions and the two scripts operate locally: they prompt interactively, write a local config (~/.openclaw/users/<you>/config.sh), copy local files, and ask you to create browser profiles. The scripts claim no network calls except 'openclaw skills install' and browser navigation initiated by explicit user actions. This matches the SKILL.md, but note that the setup flow collects PII (name, email, phone, EEOC fields) and writes them into a shell file that will be sourced by the agent.
Install Mechanism
This is instruction-only (no external download/extract in the skill itself). The provided install.sh delegates to 'openclaw skills install' for sub-skills; no arbitrary remote URL downloads or archive extraction in these scripts. That is proportionate for a bundle installer.
Credentials
The skill requests no environment variables or external credentials, which is appropriate. It does write PII and EEOC fields to a local shell config file and sets file permissions (chmod 600). The setup script sanitizes inputs by removing certain metacharacters (` $ \ " ;), which reduces injection risk, but the sanitization is ad hoc (e.g., it does not explicitly normalize or escape all edge cases such as unexpected newlines or other sequences) — review the generated config.sh before sourcing it or let the agent read it only after you verify it.
Persistence & Privilege
The skill does not request permanent/autonomous presence flags (always:false) and only writes its own config/workspace files under ~/.openclaw. It does not modify other skills' configs or request system-wide privileges beyond creating files in the user's home directory.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install jobautopilot-bundle
  3. After installation, invoke the skill by name or use /jobautopilot-bundle
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.3.2
- Updated install instructions and script references from `clawhub` to `openclaw skills install`. - Removed dependency on the `clawhub` binary in metadata. - Version bumped to 1.3.3. - Minor clarification and expansion to install and verification steps in documentation.
v1.3.1
- Minor update to the setup script (`setup.sh`). - No changes to functionality, documentation, or requirements. - SKILL.md remains unchanged except for the version number.
v1.3.0
jobautopilot-bundle version 1.3.0 - Version bump from 1.2.9 to 1.3.0. - Documentation updated to reflect new version; no breaking changes noted. - No functional updates or major script changes in this release.
v1.2.9
- Bumped version to 1.2.9. - SKILL.md updated to reflect version change. - No functional changes to scripts or features.
v1.2.8
- Bumped version to 1.2.8. - Updated SKILL.md metadata to reflect new version. - No functional or behavioral changes.
v1.2.7
- Dropped "openclaw" from required binaries metadata (SKILL.md) — now only requires clawhub and python3. - Clarified in the setup instructions that your config file is permission-restricted with `chmod 600` for privacy. - No longer lists "openclaw" and "pip3" among required binaries. - No functional changes to scripts; documentation and metadata updated for clarity and minimal dependency requirements.
v1.2.6
- Clarified that sub-skills, especially the submitter, use browser automation that makes network requests only when explicitly run. - Updated security section: setup now automatically sets owner-only permissions (chmod 600) for the config file. - Improved privacy wording for accuracy about network activity and data handling. - Version updated to 1.2.6.
v1.2.5
**Manual browser profile creation clarification and minor security note update** - Version bump to 1.2.5 - Updated documentation to clarify that browser profiles must be created manually; scripts do not create profiles automatically. - Improved security section to reflect changes: manual creation using `openclaw browser profile create` is required, and helper scripts now may include Python (in addition to shell and JavaScript). - No changes to functional code or features.
v1.2.4
- Bumped version number to 1.2.4 in SKILL.md. - No functional or behavioral changes; documentation and all content remain the same except for the updated version.
v1.2.3
- Bumped version to 1.2.3 in SKILL.md. - No changes to functionality or documentation content.
v1.2.2
- Updated install and setup instructions to use the ~/.openclaw/workspace/skills/ directory instead of skills/. - Changed default path for tailored resumes and cover letters to ~/Documents/jobs/tailored/ (set during setup). - Clarified installation commands for individual skills. - Bumped version to 1.2.2.
v1.2.1
- Clarified that this is a bundle installer only, with no sub-skill logic or outbound network calls except during install. - Removed "node" from requirements (now only Python and related tools required). - Added explicit statement that the skill does not read, store, or transmit any passwords. - Improved privacy and security sections for clarity, specifically noting no password handling and local-only data storage. - Minor wording updates in feature descriptions and EEOC note for accuracy and transparency.
v1.2.0
**Security & requirements improvements for install and setup** - Added detailed security section explaining browser profiles, local-only data storage, and script reviewability - Expanded requirements metadata: now lists required binaries (`clawhub`, `openclaw`, `python3`, `pip3`, `node`) - Updated installation instructions for full bundle and individual skills - Clarified that scripts perform no outbound network actions except skill downloads - Improved documentation on where personal data is stored and how profiles are managed locally
v1.0.9
- Updated description for clarity and conciseness. - Simplified and reduced metadata requirements in the manifest. - Adjusted tags to better reflect skill focus. - Removed specific environment variables, dependencies, and pip requirements from the metadata. - No changes to setup flow or functionality.
v1.0.8
- Updated version to 1.0.8. - Updated instructions for running `setup.sh` to clarify its location in the skill folder after installation. - Removed `setup.sh` from the `requires.files` list in metadata.
v1.0.5
- Added setup.sh script for streamlined installation and configuration. - Updated metadata to include install.sh and setup.sh in the list of files. - Version bump to 1.0.5.
v1.0.3
- Updated requirements and metadata: now explicitly lists environment variables, pip dependencies, and browser tool usage. - Expanded documentation to clarify privacy practices and local data storage. - Updated skill installation instructions for consistency. - Incremented version to 1.0.3.
v1.0.2
- Bumped version to 1.0.2 in SKILL.md. - No other changes made.
v1.0.1
- Bumped version to 1.0.1. - No functional changes; updated version number in SKILL.md.
v1.0.0
Initial release: Installs the full Job Autopilot pipeline in one step. - Bundles job search, resume tailoring, and application submission skills. - Provides simple setup instructions for installing and configuring all components. - Streamlines the end-to-end process: search for jobs, personalize resumes, and auto-submit applications. - Setup script collects user info and prepares the environment automatically.
Metadata
Slug jobautopilot-bundle
Version 1.3.2
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 20
Frequently Asked Questions

What is Jobautopilot Bundle?

Installs the full Job Autopilot pipeline — search jobs, tailor resumes, and submit applications. Convenience bundle that installs jobautopilot-search, jobaut... It is an AI Agent Skill for Claude Code / OpenClaw, with 248 downloads so far.

How do I install Jobautopilot Bundle?

Run "/install jobautopilot-bundle" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Jobautopilot Bundle free?

Yes, Jobautopilot Bundle is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Jobautopilot Bundle support?

Jobautopilot Bundle is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Jobautopilot Bundle?

It is built and maintained by jerronl (@jerronl); the current version is v1.3.2.

💬 Comments