| name | resume |
| description | Generate polished resumes (PDF, DOCX, Markdown) from JSON data. Installs the incipit CLI, provides the resume schema, and uses templates for rendering. The agent writes JSON directly — no AI subcommands needed. |
| metadata | {"argument-hint":["file"]} |
Resume
Generate professional resumes with incipit. The agent writes structured JSON matching the schema, then the CLI renders it into polished output.
Setup
Install the CLI if incipit is not on PATH:
curl -fsSL https://raw.githubusercontent.com/urmzd/incipit/main/install.sh | bash
export PATH="$HOME/.local/bin:$PATH"
Verify: incipit --version
Schema
Get the full JSON Schema for resume data:
incipit generate --schema
Use this schema to write or validate resume JSON files directly.
Resume JSON Structure
Required fields: contact.name, contact.email, skills, experience, education.
Date formats: "2024" (year), "2024-01" (month), "2024-01-15T00:00:00Z" (full).
{
"contact": {
"name": "Jane Doe",
"email": "jane@example.com",
"phone": "+1-555-0100",
"location": { "city": "San Francisco", "state": "CA", "country": "USA" },
"links": [
{ "uri": "https://linkedin.com/in/janedoe", "label": "LinkedIn" },
{ "uri": "https://github.com/janedoe", "label": "GitHub" }
]
},
"summary": "Senior software engineer with 8 years of experience...",
"skills": {
"title": "Technical Skills",
"categories": [
{ "category": "Languages", "items": ["Go", "Python", "TypeScript"] },
{ "category": "Infrastructure", "items": ["AWS", "Kubernetes", "Terraform"] }
]
},
"experience": {
"title": "Experience",
"positions": [
{
"company": "Acme Corp",
"title": "Senior Software Engineer",
"employment_type": "Full-time",
"highlights": [
"Reduced API latency by 40% by migrating to a distributed cache layer serving 2M daily requests",
"Led a team of 4 engineers to deliver a real-time analytics pipeline processing 500K events/sec"
],
"dates": { "start": "2022-01" },
"location": { "city": "San Francisco", "state": "CA" },
"technologies": ["Go", "Redis", "Kafka"]
}
]
},
"education": {
"title": "Education",
"institutions": [
{
"institution": "MIT",
"degree": { "name": "B.S. Computer Science", "descriptions": ["Dean's List"] },
"gpa": { "gpa": "3.8", "max_gpa": "4.0" },
"dates": { "start": "2014-09", "end": "2018-05" },
"location": { "city": "Cambridge", "state": "MA" }
}
]
},
"projects": {
"title": "Projects",
"projects": [
{
"name": "OpenTracer",
"highlights": ["Distributed tracing library with 2K GitHub stars"],
"link": { "uri": "https://github.com/janedoe/opentracer" },
"technologies": ["Go", "gRPC"]
}
]
},
"certifications": {
"title": "Certifications",
"items": [
{ "name": "AWS Solutions Architect", "issuer": "Amazon", "date": "2023-06" }
]
},
"languages": {
"title": "Languages",
"languages": [
{ "name": "English", "proficiency": "Native" },
{ "name": "Spanish", "proficiency": "Professional" }
]
}
}
CLI Commands
Generate output
incipit generate resume.json -t modern-html
incipit generate resume.json -t modern-latex
incipit generate resume.json -t modern-docx
incipit generate resume.json -t modern-markdown
incipit generate resume.json
incipit generate resume.json -t modern-html -o ./out
incipit generate resume.json --dry-run
Schema
incipit generate --schema
List templates
incipit templates list
AI commands
Each command prints a self-contained LLM prompt to stdout — no API keys needed. As an agent, you can run the command and follow the printed prompt yourself, or the user can pipe it to any LLM.
incipit ai create resume.txt
incipit ai review resume.json
incipit ai optimize resume.json -j "Senior Go developer..."
incipit ai optimize resume.json -j job-description.txt
Available Templates
| Template | Format | Description |
|---|
modern-html | HTML -> PDF | Clean, modern design via Chromium |
modern-latex | LaTeX -> PDF | Classic academic style |
modern-cv | LaTeX -> PDF | Detailed CV format |
modern-docx | DOCX | Microsoft Word document |
modern-markdown | Markdown | Plain .md file |
Writing Good Resume Content
When creating or improving resume highlights, follow these guidelines:
- Quantify: use numbers, percentages, dollar amounts, team sizes, timeframes
- XYZ formula: "Accomplished [X] as measured by [Y], by doing [Z]"
- Action verbs: start each bullet with a strong verb (Led, Built, Reduced, Designed, Migrated)
- Concise: 1-2 lines per bullet point max
- Specific: reference technologies, methodologies, and concrete outcomes
- No fabrication: only include data supported by the user's actual experience
Workflow
- Get the schema:
incipit generate --schema
- Write
resume.json matching the schema (the agent does this directly)
- Validate:
incipit generate resume.json --dry-run
- Generate:
incipit generate resume.json -t modern-html