Claude
Skills
Sign in
Back

resume-design-generation

Included with Lifetime
$97 forever

Generate professional resume and CV designs using each::sense AI. Create modern, creative, minimalist, executive, tech, academic, infographic, two-column, ATS-friendly, and portfolio-style resumes optimized for various industries and career stages.

Design

What this skill does


# Resume Design Generation

Generate visually stunning and professionally designed resumes and CVs using each::sense. This skill creates resume layouts and designs optimized for different industries, career levels, and personal branding styles.

## Features

- **Modern Professional**: Clean, contemporary designs for corporate environments
- **Creative Designer**: Bold, artistic layouts for creative industries
- **Minimalist**: Simple, elegant designs with focus on content
- **Executive/Corporate**: Sophisticated designs for senior-level positions
- **Tech/Developer**: Code-inspired layouts for software professionals
- **Academic CV**: Formal layouts for researchers and educators
- **Infographic**: Visual data-driven resume designs
- **Two-Column**: Space-efficient layouts with sidebar sections
- **ATS-Friendly**: Clean formats optimized for applicant tracking systems
- **Portfolio Resume**: Designs that incorporate work samples and projects

## Quick Start

```bash
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a modern professional resume design for a marketing manager with a clean blue and white color scheme, include sections for summary, experience, skills, and education"}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'
```

## Resume Design Formats & Layouts

| Style | Best For | Key Elements |
|-------|----------|--------------|
| Modern Professional | Corporate roles | Clean lines, professional colors, balanced layout |
| Creative Designer | Design/Art roles | Bold typography, unique layouts, creative elements |
| Minimalist | Any industry | White space, simple fonts, content-focused |
| Executive | C-suite/Directors | Elegant, sophisticated, achievement-focused |
| Tech/Developer | Engineering roles | Code aesthetics, skill bars, GitHub-style |
| Academic CV | Academia/Research | Publications section, formal structure |
| Infographic | Marketing/Data | Charts, icons, visual data representation |
| Two-Column | Space-efficient | Sidebar for skills/contact, main content area |
| ATS-Friendly | Online applications | Simple formatting, no graphics, parseable |
| Portfolio | Creatives/Designers | Work samples, project showcases, visual gallery |

## Use Case Examples

### 1. Modern Professional Resume

```bash
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a modern professional resume design for a senior marketing manager. Use a clean navy blue and white color scheme. Include a professional header with name and title, a summary section, work experience timeline, skills section with progress bars, and education. The layout should be single-column, easy to read, and print-ready at A4 size."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'
```

### 2. Creative Designer Resume

```bash
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Design a bold and creative resume for a graphic designer. Use vibrant colors like coral pink and teal accents on a dark charcoal background. Include asymmetric layout elements, custom typography, a personal logo placeholder, portfolio preview section, and creative skill visualization. Make it visually striking and memorable while remaining professional."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'
```

### 3. Minimalist Resume

```bash
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a minimalist resume design with maximum white space. Use only black text on white background with subtle gray accents for section dividers. Clean sans-serif typography, ample margins, and elegant simplicity. Include name at top, contact info, professional summary, experience, skills as simple tags, and education. No decorative elements - let the content speak."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'
```

### 4. Executive/Corporate Resume

```bash
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Design a sophisticated executive resume for a C-level executive (CEO/CFO). Use premium colors - deep burgundy header with gold accents on cream background. Elegant serif typography for headings, clean sans-serif for body. Include executive summary with key achievements, career highlights, board positions section, education with prestigious credentials, and professional affiliations. Two pages, dignified and authoritative."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'
```

### 5. Tech/Developer Resume

```bash
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a developer-style resume design with a dark theme (dark gray/black background with green or cyan accent colors like a terminal). Include a code-style header, tech stack section with language/framework icons, GitHub contribution graph style visualization, project cards with tech badges, experience in commit-log style format, and skills with proficiency indicators. Monospace font for headings."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'
```

### 6. Academic CV

```bash
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Design a formal academic CV template for a university professor or researcher. Classic, traditional layout with navy blue accents on white. Include sections for: contact information, research interests, education with thesis titles, academic positions, publications (with proper citation formatting), grants and funding, teaching experience, conference presentations, professional memberships, and references. Multi-page format, formal typography."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'
```

### 7. Infographic Resume

```bash
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create an infographic-style resume design for a data analyst or marketing professional. Include circular skill charts, timeline infographic for career progression, bar graphs for proficiency levels, icon-based representations for achievements (e.g., trophy icons for awards), geographic map for locations worked, and pie charts for time allocation. Use a cohesive color palette of blues and oranges. Visual, data-driven, and engaging."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'
```

### 8. Two-Column Resume

```bash
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
 
Files: 2
Size: 26.3 KB
Complexity: 45/100
Category: Design

Related in Design