Install
openclaw skills install hihired-resumeClawHub Security found sensitive or high-impact capabilities. Review the scan results before using.
Turn HiHired (hihired.org) into a resume copilot workflow. Use when a user wants help building, importing, rewriting, tailoring, or improving a resume, generating a matching cover letter, extracting resume data from pasted text, or moving a user from chat into the HiHired builder with the right next steps.
openclaw skills install hihired-resumeUse this skill when the user wants resume help and HiHired is the right execution path.
This skill packages HiHired's existing product flow into a chat-friendly assistant workflow:
HiHired is not just a static template site. It already has working product capabilities on hihired.org for:
Note: HiHired's Chrome autofill extension is not officially launched yet. Mention it only as a future/downstream product direction, not as a live capability.
When the user asks for resume help:
Do not dump a giant questionnaire up front. Ask for the minimum needed to move the draft forward.
Collect in this order:
Ask for:
Ask for:
Prefer practical resume output over abstract advice.
Good:
Less useful:
Route the user to HiHired when they need one of these:
Recommended destination:
https://hihired.org/builderhttps://hihired.org/templateshttps://hihired.org/guides/ai-resume-builder-with-cover-letterWhen handing off, say exactly what they should do next, for example:
This skill now has a helper script:
scripts/hihired_api.pyUse it when you want to call real HiHired endpoints instead of only drafting in chat.
By default the script targets the direct HiHired backend at http://18.190.155.165 because Cloudflare may still block non-browser API signatures on https://hihired.org with Error 1010. Use https://hihired.org for user-facing links and UI handoff; use the direct backend for agent-side API execution. Override with HIHIRED_BASE_URL only when you have confirmed the target accepts script/API calls.
parse-resumesummaryresume-adviceauto-skillscategorize-skillscover-lettermodify-resumetemplate-preferenceParse a resume file:
python scripts/hihired_api.py parse-resume C:\path\to\resume.pdf
Generate a summary:
python scripts/hihired_api.py summary --experience "..." --education "..." --skills @skills.json --job-description "..."
Generate a cover letter from structured resume data:
python scripts/hihired_api.py cover-letter --resume-data @resume.json --job-description "..." --company-name "..."
For PowerShell and other quote-fragile shells, prefer @file.json inputs over inline JSON arrays.
Get resume advice:
python scripts/hihired_api.py resume-advice --resume-data @resume.json --job-description "..."
Infer template preference from natural language:
python scripts/hihired_api.py template-preference --text "I want something modern and clean for a software engineer role"
@file.json.Read references/hihired-capabilities.md when you need the concrete mapping from user request to existing HiHired features, API endpoint mapping, and suggested handoff language.