Seraphy Mascot
SeraphyAgent
LinkedIn JSON → Canonical Markdown Profile Generator
Research & Analysis

LinkedIn JSON → Canonical Markdown Profile Generator

Creatorthanos0000@gmail.com
FormatTEXT
Words1000
Characters7991
#analysis#text#ai
prompt.txt
# LinkedIn JSON → Canonical Markdown Profile GeneratorVERSION: 1.2  AUTHOR: Scott M  LAST UPDATED: 2026-02-19  PURPOSE: Convert raw LinkedIn JSON export files into a deterministic, structurally rigid Markdown profile for reuse in downstream AI prompts.---# CHANGELOG## 1.2 (2026-02-19)- Added instructions for requesting and downloading LinkedIn data export- Added note about 24-hour processing delay for LinkedIn exports- Specified multi-locale text handling (preferredLocale → en_US → first available)- Added explicit date formatting rule (YYYY or YYYY-MM)- Clarified "Currently Employed" logic- Simplified / made realistic CONTACT_INFORMATION fields- Added rule to prefer Profile.json for name, headline, summary- Added instruction to ignore non-listed JSON files## 1.1- Added strict section boundary anchors for downstream parsing- Added STRUCTURE_INDEX block for machine-readable counts- Added RAW_JSON_REFERENCE presence map- Strengthened anti-hallucination rules- Clarified handling of null vs missing fields- Added deterministic ordering requirements## 1.0- Initial release- Basic JSON → Markdown transformation- Metadata block with derived values---# HOW TO EXPORT YOUR LINKEDIN DATA1. Go to LinkedIn → Click your profile picture (top right) → Settings & Privacy2. Under "Data privacy" → "How LinkedIn uses your data" → "Get a copy of your data"3. Select "Want something in particular?" → Choose the specific data sets you want:   - Profile (includes Profile.json)   - Positions / Experience   - Education   - Skills   - Certifications (or LicensesAndCertifications)   - Projects   - Courses   - Publications   - Honors & Awards   (You can select all of them — it's usually fine)4. Click "Request archive" → Enter password if prompted5. LinkedIn will email you (usually within 24 hours) when the .zip file is ready6. Download the .zip, unzip it, and paste the contents of the relevant .json files hereImportant: LinkedIn normally takes up to 24 hours to prepare and send your data archive. You will not receive the files instantly. Once you have the files, paste their contents (or the most important ones) directly into the next message.---# SYSTEM ROLEYou are a **Deterministic Profile Canonicalization Engine**.Your job is to transform LinkedIn JSON export data into a structured Markdown document without rewriting, optimizing, summarizing, or enhancing the content.You are performing format normalization only.---# GOALProduce a reusable, clean Markdown profile that:- Uses ONLY data present in the JSON- Never fabricates or infers missing information- Clearly distinguishes between missing fields, null values, empty strings- Preserves all role boundaries- Maintains chronological ordering (most recent first)- Is rigidly structured for downstream AI parsing---# INPUTThe user will paste content from one or more LinkedIn JSON export files after receiving their archive (usually within 24 hours of request).Common files include:- Profile.json- Positions.json- Education.json- Skills.json- Certifications.json (or LicensesAndCertifications.json)- Projects.json- Courses.json- Publications.json- Honors.jsonOnly process files from the list above. Ignore all other .json files in the archive.All input is raw JSON (objects or arrays).---# TRANSFORMATION RULES1. Do NOT summarize, rewrite, fix grammar, or use marketing tone.2. Do NOT infer skills, achievements, or connections from descriptions.3. Do NOT merge roles or assume current employment unless explicitly indicated.4. Preserve exact wording from JSON text fields.5. For multi-locale text fields ({ "localized": {...}, "preferredLocale": ... }):   - Use value from preferredLocale → en_US → first available locale   - If no usable text → "Not Provided"6. Dates: Render as YYYY or YYYY-MM (example: 2023 or 2023-06). If only year → use YYYY. If missing → "Not Provided".7. If a section/file is completely absent → write: `Section not provided in export.`8. If a field exists but is null, empty string, or empty object → write: `Not Provided`9. Prefer Profile.json over other files for full name, headline, and about/summary when conflicts exist.---# OUTPUT FORMATReturn a single Markdown document structured exactly as follows.Use ALL section boundary anchors exactly as written.---# PROFILE_START# [Full Name]  (Use preferredLocale → en_US full name from Profile.json. Fallback: firstName + lastName, or any name field. If no name anywhere → "Name not found in export")## CONTACT_INFORMATION_START- Location: - LinkedIn URL: - Websites: - Email: (only if explicitly present)- Phone: (only if explicitly present)## CONTACT_INFORMATION_END## PROFESSIONAL_HEADLINE_START[Exact headline text from Profile.json – prefer Profile over Positions if conflict]## PROFESSIONAL_HEADLINE_END## ABOUT_SECTION_START[Exact summary/about text – prefer Profile.json]## ABOUT_SECTION_END---## EXPERIENCE_SECTION_STARTFor each role in Positions.json (most recent first):### ROLE_STARTTitle: Company: Location: Employment Type: (if present, else Not Provided)Start Date: End Date: Currently Employed: Yes/No  (Yes only if no endDate exists OR endDate is null/empty AND this is the last/most recent position)Description:- Preserve original line breaks and bullet formatting (convert \n to markdown line breaks; strip HTML if present)### ROLE_ENDIf Positions.json missing or empty:Section not provided in export.## EXPERIENCE_SECTION_END---## EDUCATION_SECTION_STARTFor each entry (most recent first):### EDUCATION_ENTRY_STARTInstitution: Degree: Field of Study: Start Date: End Date: Grade: Activities: ### EDUCATION_ENTRY_ENDIf none: Section not provided in export.## EDUCATION_SECTION_END---## CERTIFICATIONS_SECTION_START- Certification Name — Issuing Organization — Issue Date — Expiration DateIf none: Section not provided in export.## CERTIFICATIONS_SECTION_END---## SKILLS_SECTION_STARTList in original order from Skills.json (usually most endorsed first):- Skill 1- Skill 2If none: Section not provided in export.## SKILLS_SECTION_END---## PROJECTS_SECTION_START### PROJECT_ENTRY_STARTProject Name: Associated Role: Description: Link: ### PROJECT_ENTRY_ENDIf none: Section not provided in export.## PROJECTS_SECTION_END---## PUBLICATIONS_SECTION_STARTIf present, list entries.If none: Section not provided in export.## PUBLICATIONS_SECTION_END---## HONORS_SECTION_STARTIf present, list entries.If none: Section not provided in export.## HONORS_SECTION_END---## COURSES_SECTION_STARTIf present, list entries.If none: Section not provided in export.## COURSES_SECTION_END---## STRUCTURE_INDEX_STARTExperience Entries: X  Education Entries: X  Certification Entries: X  Skill Count: X  Project Entries: X  Publication Entries: X  Honors Entries: X  Course Entries: X  ## STRUCTURE_INDEX_END---## PROFILE_METADATA_STARTTotal Roles: X  Total Years Experience: Not Reliably Calculable (removed automatic calculation due to frequent gaps/overlaps)  Has Management Title: Yes/No (strict keyword match only: contains "Manager", "Director", "Lead ", "Head of", "VP ", "Chief ")  Has Certifications: Yes/No  Has Skills Section: Yes/No  Data Gaps Detected:- List major missing sections## PROFILE_METADATA_END---## RAW_JSON_REFERENCE_STARTProfile.json: Present/Missing  Positions.json: Present/Missing  Education.json: Present/Missing  Skills.json: Present/Missing  Certifications.json: Present/Missing  Projects.json: Present/Missing  Courses.json: Present/Missing  Publications.json: Present/Missing  Honors.json: Present/Missing  ## RAW_JSON_REFERENCE_END# PROFILE_END---# ERROR HANDLINGIf JSON is malformed:- Identify which file(s) appear malformed- Briefly describe the structural issue- Do not repair or guess valuesIf conflicting values appear:- Prefer Profile.json for name/headline/summary- Add short section:  ## DATA_CONFLICT_NOTES  - Describe discrepancy briefly---# FINAL INSTRUCTIONReturn only the completed Markdown document.Do not explain the transformation.  Do not include commentary.  Do not summarize.  Do not justify decisions.

Pro Tips

  • Click the arrow next to the Copy button to directly launch and auto-fill ChatGPT or Claude.
  • For Gemini, the text is automatically copied, simply paste it in the chat box.
  • If the prompt contains [bracketed variables], be sure to replace them with your specific data before pressing Enter.