Back to Registry
View Author Profile
Official Verified
useresume
Generate professional PDF resumes and cover letters via the useresume.ai API. Supports creating, tailoring (AI-optimized for a job), and parsing documents.
skill-install — Terminal
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/accelerated-ideas/useresumeOr
useresume CLI
Generate professional PDF resumes and cover letters via the useresume.ai API.
Setup
npm install -g @useresume/cli
export USERESUME_API_KEY=ur_your_key_here
Get an API key at https://useresume.ai/account/api-platform
Verify credentials
useresume credentials:test
Returns account status on success, including credits and expiry. Invalid keys return JSON with success: false and a non-zero exit code.
Commands
All commands output JSON to stdout. All --input flags accept a path to a JSON file.
resume:create (1 credit)
useresume resume:create --input <path-to-json>
Input JSON schema:
{
"content": {
"name": "string (optional, max 1000)",
"role": "string (optional, max 1000)",
"email": "string (optional, max 250)",
"phone": "string (optional, max 250)",
"address": "string (optional, max 1000)",
"photo_url": "string (optional, valid URL, max 2000)",
"summary": "string (optional, max 5000)",
"date_of_birth": "string (optional)",
"marital_status": "string (optional)",
"nationality": "string (optional)",
"visa_status": "string (optional)",
"pronouns": "string (optional)",
"employment": [
{
"title": "string",
"company": "string",
"location": "string (optional)",
"short_description": "string (optional)",
"start_date": "YYYY-MM-DD",
"end_date": "YYYY-MM-DD (optional if present=true)",
"present": "boolean",
"responsibilities": [{ "text": "string" }]
}
],
"education": [
{
"degree": "string",
"institution": "string",
"location": "string (optional)",
"short_description": "string (optional)",
"start_date": "YYYY-MM-DD",
"end_date": "YYYY-MM-DD (optional if present=true)",
"present": "boolean",
"achievements": [{ "text": "string" }]
}
],
"skills": [
{
"name": "string",
"proficiency": "Beginner | Intermediate | Advanced | Expert",
"display_proficiency": "boolean (optional)"
}
],
"certifications": [
{
"name": "string",
"institution": "string (optional)",
"start_date": "YYYY-MM-DD (optional)",
"end_date": "YYYY-MM-DD (optional)",
"present": "boolean (optional)"
}
],
"languages": [
{
"language": "string",
"proficiency": "Beginner | Intermediate | Advanced | Fluent",
"display_proficiency": "boolean (optional)"
}
],
"references": [
{
"name": "string",
"title": "string (optional)",
"company": "string (optional)",
"email": "string (optional)",
"phone": "string (optional)"
}
],
"projects": [
{
"name": "string",
"short_description": "string (optional)",
"start_date": "YYYY-MM-DD (optional)",
"end_date": "YYYY-MM-DD (optiona...
Metadata
AI Skill Finder
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skill Add to Configuration
Paste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-accelerated-ideas-useresume": {
"enabled": true,
"auto_update": true
}
}
}Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.