This content originally appeared on DEV Community and was authored by Charmi Gajula
While building my AI Career Advisor, I initially assumed resume feedback would be one of the simplest features.
Upload resume โ analyze โ give suggestions.
There are already dozens of tools doing this, so it seemed straightforward.
But once I introduced memory and user context, things became much more complex.
๐ง What the system actually needs to do
At a basic level, the system should:
- Parse a resume
- Extract skills and projects
- Compare them with target roles
- Suggest improvements
Simple enough โ but in practice, this wasnโt sufficient.
Because a resume is only a "snapshot", not the full story.
โ ๏ธ The real problem: resumes are incomplete
Users often:
- Forget to include recent work
- Undersell their projects
- Omit important details
If the system only analyzes the uploaded resume, it misses critical context.
So the real challenge became:
๐ 'How do we combine resume data with stored user memory?'
โ First attempt: treat resume as the source of truth
const parsedResume = parseResume(file);
const response = await llm.generate({
input: "Give resume feedback",
context: parsedResume
});
This worked โ but only at a surface level.
It couldnโt detect missing information or inconsistencies.
โ
The fix: merge resume with memory
const memory = await hindsight.retrieve(userId);
const resumeData = parseResume(file);
const context = {
resume: resumeData,
pastProjects: memory.projects,
skills: memory.skills
};
Now the model has access to:
- What the user wrote
- What the system already knows
๐ก Why this matters
This enables insights like:
- โYou worked on X but didnโt include itโ
- โYour project description is too vague compared to stored detailsโ
This kind of feedback is impossible without memory.
๐ Using Hindsight for context
The memory layer is powered by:
๐ https://github.com/vectorize-io/hindsight
More details:
๐ https://hindsight.vectorize.io/
Concepts:
๐ https://vectorize.io/features/agent-memory
๐ What improved after this change
Before:
- Generic resume tips
- Repetitive suggestions
After:
- Context-aware corrections
- Missing content detection
- Better personalization
โ What didnโt work
- Relying only on resume text
- Ignoring past interactions
- Overloading the model with full memory
๐งฉ Lessons learned
- A resume is incomplete without history
- Memory enables comparison, not just analysis
- Context merging is more powerful than parsing
๐ Final thought
Resume feedback is easy to build.
Context-aware resume feedback is not.
And the difference is "memory".
This content originally appeared on DEV Community and was authored by Charmi Gajula
Charmi Gajula | Sciencx (2026-03-21T09:35:50+00:00) ๐ Resume Feedback Is Easy โ Until You Try Making It Context-Aware. Retrieved from https://www.scien.cx/2026/03/21/%f0%9f%9a%80-resume-feedback-is-easy-until-you-try-making-it-context-aware/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.


