Resume Tailor
by @wanghong5233
Generate, review, and export tailored application materials.
clawhub install wanghong5233-offerpilot-resume-tailorπ About This Skill
name: resume-tailor description: Generate, review, and export tailored application materials.
Resume Tailor Skill
Trigger
Activate when user asks:
Workflow
1. If user provides job_id, call material generation API:
- POST http://127.0.0.1:8010/api/material/generate
- Body: {"job_id":"
2. Parse JSON response:
- If status=skipped_low_match, explain low match and ask whether to continue with another job.
- If status=pending_review, show:
- thread_id
- resume bullets
- cover letter
- greeting message
3. Ask user for review decision:
- approve / reject / regenerate (optional feedback text)
4. Execute review call:
- POST http://127.0.0.1:8010/api/material/review
- Body example:
- {"thread_id":"
5. If approved, export file:
- POST http://127.0.0.1:8010/api/material/export
- Body: {"thread_id":"
- Return file name/path/download URL to user.
Command templates (exec tool + curl)
curl -sS -X POST "http://127.0.0.1:8010/api/material/generate" -H "Content-Type: application/json" -d '{"job_id":"","resume_version":"resume_v1"}'
curl -sS -X POST "http://127.0.0.1:8010/api/material/review" -H "Content-Type: application/json" -d '{"thread_id":"","decision":"approve"}'
curl -sS -X POST "http://127.0.0.1:8010/api/material/export" -H "Content-Type: application/json" -d '{"thread_id":"","format":"pdf"}'