Resume upload: work experience/skills blank in Settings → Resume Profile #130
Labels
No labels
a11y
backlog
beta-feedback
bug
enhancement
feature-request
frontend
needs-triage
question
vue
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: Circuit-Forge/peregrine#130
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
After uploading a resume, the Resume Profile page shows empty work experience and skills.
Root cause:
_normalize_experience()handles two formats (Vue WorkEntry and AIHawk YAML) but the in-houseresume_parser.pyproduces a third format withstart_date,end_date, andbulletskeys. Parser output fell through to the AIHawk path, mapping every field to empty strings.Fix: Added a third format branch in
_normalize_experience()that detectsstart_date/bulletskeys and maps them toperiod(combined date range) andresponsibilities(bullets joined with newlines).Fixed in:
dev-api.py—_normalize_experience()Branch: freeze/v0.9.6/rc-2