Generate CV with AI

Use your favorite AI (ChatGPT, Claude, etc.) to generate a structured CV. Copy the prompt, paste the response, and we'll import it.

1Your Story
2AI Prompt
3Paste Response

📝 Step 1: Your Story

Describe your professional background. Be as detailed as possible for better results.

💡 What to include:

  • ✓ Current and past job titles & companies
  • ✓ Years of experience in each role
  • ✓ Key responsibilities & achievements
  • ✓ Education & degrees
  • ✓ Technical skills & technologies
  • ✓ Languages spoken
  • ✓ Certifications (if any)
  • ✓ Any awards or achievements

📑 Expected JSON Format

{
  "name": "Your Full Name",
  "position": "Your Job Title | Your Specialty",
  "contactInformation": "+1 (555) 123-4567",
  "email": "your.email@example.com",
  "address": "City, Country",
  "socialMedia": [
    {
      "socialMedia": "Github",
      "link": "https://github.com/yourprofile",
      "displayName": "github.com/yourprofile"
    },
    {
      "socialMedia": "LinkedIn",
      "link": "https://linkedin.com/in/yourprofile",
      "displayName": "linkedin.com/in/yourprofile"
    }
  ],
  "summary": [
    {
      "text": "Brief professional summary about your expertise and background.",
      "isShownInPreview": true
    }
  ],
  "educations": [
    {
      "degree": "Bachelor's Degree in Computer Science",
      "school": "University Name",
      "startYear": "2019-09-01",
      "endYear": "2023-05-01",
      "notes": "Graduated with Honors",
      "isShownInPreview": true
    }
  ],
  "courses": [
    {
      "name": "Course Name",
      "school": "Organization Name",
      "startYear": "2023-07-08",
      "endYear": "2023-07-08",
      "link": "https://example.com/certificate",
      "notes": [
        {
          "text": "Course achievement or skill gained.",
          "isShownInPreview": true
        }
      ],
      "isShownInPreview": true
    }
  ],
  "skills": [
    {
      "title": "Programming Languages",
      "skills": [
        {
          "text": "JavaScript",
          "isShownInPreview": true
        },
        {
          "text": "Python",
          "isShownInPreview": true
        },
        {
          "text": "Go",
          "isShownInPreview": true
        }
      ],
      "isShownInPreview": true
    },
    {
      "title": "Frameworks & Libraries",
      "skills": [
        {
          "text": "React.js",
          "isShownInPreview": true
        },
        {
          "text": "Node.js",
          "isShownInPreview": true
        }
      ],
      "isShownInPreview": true
    }
  ],
  "languages": [
    {
      "title": "English",
      "level": "Fluent",
      "isShownInPreview": true
    },
    {
      "title": "Arabic",
      "level": "Native",
      "isShownInPreview": true
    }
  ],
  "workExperience": [
    {
      "company": "Company Name",
      "isShownInPreview": true,
      "href": "https://company.com",
      "position": "Job Title",
      "startYear": "2023-09-01",
      "endYear": "2024-07-01",
      "workType": "Hybrid",
      "location": "City, Country",
      "technologies": [
        "Technology 1",
        "Technology 2"
      ],
      "achievements": [
        {
          "text": "Achievement or responsibility description.",
          "isShownInPreview": true
        }
      ],
      "isPartTime": false
    }
  ],
  "titles": {
    "profile": "PROFILE",
    "experience": "EXPERIENCE",
    "education": "EDUCATION",
    "skills": "SKILLS",
    "languages": "LANGUAGES",
    "certification": "CERTIFICATION"
  },
  "order": [
    "contactInformation",
    "profile",
    "workExperience",
    "education",
    "courses",
    "skills",
    "languages"
  ]
}