Best for
- Takes the user's captured profile (users.data.profile) and job preferences (users.data.jobpreferences) and uses them to optimize the two artifacts that recruiters see: the LinkedIn profile and the CV. This is an output…
galiprandi/job-seeker/.agents/skills/polish/SKILL.md
Optimizes the user's LinkedIn profile and CV to align with their declared professional goals. Audits, redacts improvements, applies with per-section approval, and exports a polished CV to PDF.
Decision brief
Optimizes the user's LinkedIn profile and CV to align with their declared professional goals. Audits, redacts improvements, applies with per-section approval, and exports a polished CV to PDF.
Compatibility matrix
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/galiprandi/job-seeker --skill ".agents/skills/polish"Inspect the Agent Skill "polish" from https://github.com/galiprandi/job-seeker/blob/87493e00b10454d9ded59f0782870277aa58b5b4/.agents/skills/polish/SKILL.md at commit 87493e00b10454d9ded59f0782870277aa58b5b4. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
Review the “Required for Phase 1 (LinkedIn): profile.title, profile.experience[], profile.skills[]” section in the pinned source before continuing.
Review the “Required for Phase 2 (CV): profile.fullname, profile.email, profile.experience[], profile.education[]” section in the pinned source before continuing.
1. Load from DB: profile, jobpreferences, linkedinprofile, styleprofile, strategy (for strategylevel) 2. Navigate to the user's LinkedIn profile: node scripts/browser.js goto 3. Take a snapshot to understand the current page structure: node scripts/browser.js exec snapshot 4. Ex…
LinkedIn editors are contenteditable (tiptap/slate). The agent interacts with them via node scripts/browser.js exec eval ''. Always take a snapshot first to find the correct refs/selectors, then:
1. Read current CV from profile.cvpath (PDF) or profile.cvurl 2. Extract structure: summary, experience, education, skills, projects 3. Compare vs LinkedIn snapshot (from Phase 1a) and vs jobpreferences 4. Identify gaps: - Does the CV summary position for the target role? - Does…
Permission review
The documentation asks the agent to run terminal commands or scripts.
node scripts/browser.js attach --session polish-1The documentation asks the agent to run terminal commands or scripts.
node scripts/browser.js goto <url> --session polish-1The documentation asks the agent to create, modify, or delete local files.
Write HTML to a temp fileThe documentation asks the agent to read local files, directories, or repositories.
Open browser headless: `node scripts/browser.js open file://<path> --headless`Evidence record
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 92/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 22 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Keyword: polish (or variants: "mejorar mi linkedin", "pulir perfil", "alinear cv", "optimizar perfil")
Takes the user's captured profile (users.data.profile) and job preferences (users.data.job_preferences) and uses them to optimize the two artifacts that recruiters see: the LinkedIn profile and the CV. This is an output flow, not an input flow — profile captures data, polish applies it externally.
onboarding (DB, browser profile, LinkedIn session)profile (requires users.data.profile and users.data.job_preferences with Must/Strong/Nice weights)polish can run alongside other flows (e.g: apply, news, targets) by using an attached session:
node scripts/browser.js attach --session polish-1
node scripts/browser.js goto <url> --session polish-1
node scripts/browser.js exec eval '<code>' --session polish-1
node scripts/generate-cv.js --session polish-1
node scripts/browser.js detach --session polish-1
All browser commands and generate-cv.js accept --session. Use detach when done (never close — it's ref-counted and would refuse or kill the browser for other agents). See AGENTS.md "Parallel execution".
Before executing any phase, verify that dependencies are satisfied. If any check fails, do not proceed — tell the user what is missing and how to resolve it:
# 1. Verify onboarding completed: DB exists and has user
node scripts/db.js "SELECT id, name, email, data FROM users WHERE id = 1"
# If no row → "Necesitas ejecutar `onboarding` primero. No hay DB configurada."
# 2. Verify profile exists with minimum data
node scripts/db.js "SELECT data->'profile' AS profile, data->'job_preferences' AS prefs FROM users WHERE id = 1"
# If profile is null/empty → "Necesitas ejecutar `profile` primero. No hay perfil capturado."
# If job_preferences is null/empty → "Necesitas completar el cuestionario de `profile`. No hay preferencias declaradas."
# 3. Verify minimum fields within profile
# Required for Phase 1 (LinkedIn): profile.title, profile.experience[], profile.skills[]
# Required for Phase 2 (CV): profile.full_name, profile.email, profile.experience[], profile.education[]
# If any required field missing → "Tu perfil esta incompleto. Falta: <fields>. Ejecuta `profile` para completarlo."
# 4. Verify LinkedIn session is active
node scripts/browser.js ensure
# If fails → "Necesitas iniciar sesion en LinkedIn. Ejecuta `onboarding` o abre el browser headed para login."
# 5. Verify linkedin_profile URL exists in DB
node scripts/db.js "SELECT data->'linkedin_profile' AS url FROM users WHERE id = 1"
# If null → "No tengo tu URL de LinkedIn. Ejecuta `onboarding` para guardarla."
Only if all 5 checks pass, continue to Phase 1.
profile, job_preferences, linkedin_profile, style_profile, strategy (for strategy_level)node scripts/browser.js goto <linkedin_profile_url>node scripts/browser.js exec snapshoteval (adapt selectors to what you see in the snapshot):
node scripts/browser.js exec eval '(function(){
// Adapt selectors based on current LinkedIn DOM.
// LinkedIn changes their UI frequently, so read the snapshot first
// and adjust these selectors as needed.
var headline = document.querySelector("h1")?.textContent?.trim() || "";
var about = document.querySelector("#about ~ * .display-text, #about + * .inline-show-more-text")?.textContent?.trim() || "";
// Experience: iterate over section entries
var expNodes = document.querySelectorAll("#experience ~ * .pvs-entity, [data-view-name*='experience'] .pvs-entity");
var experience = Array.from(expNodes).map(function(n) {
return {
title: n.querySelector(".t-14 .t-bold span")?.textContent?.trim() || "",
company: n.querySelector(".t-14:not(.t-bold) span")?.textContent?.trim() || "",
description: n.querySelector(".t-14.t-normal.t-black--light span")?.textContent?.trim() || ""
};
});
// Skills
var skillNodes = document.querySelectorAll("#skills ~ * .pvs-entity, [data-view-name*='skill'] .pvs-entity");
var skills = Array.from(skillNodes).map(function(n) {
return n.querySelector(".t-14 .t-bold span")?.textContent?.trim() || "";
}).filter(Boolean);
return JSON.stringify({ headline: headline, about: about, experience: experience, skills: skills });
})()'
users.data.linkedin_snapshotjob_preferences.role_types and ai_focus?job_preferences.stack and AI-related skills?active/aggressive)?For each section with gaps, draft all changes for that section and show them together to the user for approval:
profile.title + top skills + job_preferences.ai_focus. Example: "Software Engineer | AI Strategy & Agent-First Workflows | Remote"profile.experience[])job_preferences.stackstrategy_level is active or aggressive, activate "Open to work" with roles from job_preferences.role_types and job_preferences.seniorityPer-section approval flow:
eval (see below)users.data.linkedin_polish_log (audit trail with before/after)LinkedIn uses direct URLs to edit each section:
https://www.linkedin.com/in/<vanity>/edit/details/ → click pencil icon on headlinehttps://www.linkedin.com/in/<vanity>/edit/details/ → click pencil icon on abouthttps://www.linkedin.com/in/<vanity>/edit/details/experiences/https://www.linkedin.com/in/<vanity>/edit/details/skills/https://www.linkedin.com/in/<vanity>/edit/details/recruiteroptin/LinkedIn editors are contenteditable (tiptap/slate). The agent interacts with them via node scripts/browser.js exec eval '<code>'. Always take a snapshot first to find the correct refs/selectors, then:
node scripts/browser.js exec eval 'document.querySelector("button[aria-label*=\"Edit\"]").click()'
# For text inputs (headline):
node scripts/browser.js exec eval '(function(){
var input = document.querySelector("input[type=\"text\"]");
input.value = "<new headline text>";
input.dispatchEvent(new Event("input", {bubbles: true}));
input.dispatchEvent(new Event("change", {bubbles: true}));
})()'
# For contenteditable (about, experience descriptions):
node scripts/browser.js exec eval '(function(){
var editor = document.querySelector("[contenteditable=\"true\"]");
editor.focus();
editor.textContent = "<new text>";
editor.dispatchEvent(new InputEvent("input", {bubbles: true, inputType: "insertText"}));
editor.dispatchEvent(new Event("change", {bubbles: true}));
})()'
node scripts/browser.js exec eval 'document.querySelector("button[type=\"submit\"], button[aria-label*=\"Save\"]").click()'
These are starting points. Always take a snapshot after navigating to the edit page and adapt selectors to what you see. LinkedIn's DOM changes frequently. The agent's advantage over a hardcoded script is that it can adapt to the current DOM in real time.
profile.cv_path (PDF) or profile.cv_urljob_preferencesusers.data.cv_markdown (Markdown content, for future iterations)The PDF flow uses scripts/generate-cv.js:
node scripts/browser.js open file://<path> --headlessusers.data.cv_path (updates existing path)The user never sees Markdown or HTML. They see only the final PDF. If they want adjustments, they tell the agent what to change and the agent regenerates.
The optimized base CV is generic to the target role. For specific applications, the apply or targets flow can do "light tailoring" of the base CV (reorder skills, adjust summary to mention the company). This is documented as a future extension, not implemented now.
New JSONB keys in users.data:
| Key | Type | What it holds | Written by | Read by |
|---|---|---|---|---|
linkedin_snapshot | object | Current LinkedIn profile state at last audit: headline, about, experience[], skills[], education[], open_to_work | polish | polish (compare before/after), news (context) |
linkedin_polish_log | array | Audit trail of applied changes: [{section, before, after, applied_at}] | polish | polish (re-audit) |
cv_markdown | string | Optimized CV in Markdown format | polish | apply, targets (tailoring), polish (iteration) |
Existing keys that get updated:
| Key | Note |
|---|---|
cv_path | Updated to the path of the new generated PDF |
## Polish report
### LinkedIn profile
| Section | Status | Changes applied |
|---|---|---|
| Headline | Updated | "<old>" → "<new>" |
| About | Updated | Added AI focus paragraph + CTA |
| Experience (3 roles) | Updated | Rewrote 8 bullets as quantified achievements |
| Skills | Reordered | Pinned: <skill1>, <skill2>, <skill3> |
| Open to work | Activated | Roles: <role1>, <role2>, <role3> |
### CV
- Format: Markdown → PDF (via headless browser)
- Sections optimized: summary, experience, skills
- Saved to: users.data.cv_markdown + <pdf_path>
### Pending (need attention)
- [manual] LinkedIn "Featured" section: add 2-3 projects (requires manual curation)
[TODO: add metric] for the user to complete<placeholder> syntaxbefore in linkedin_polish_log. The user can revertscripts/generate-cv.jsConverts cv_markdown from DB (or --markdown <path>) to a PDF via browser headless.
node scripts/generate-cv.js [--output <path>] [--markdown <path>] [--session <name>]
If --markdown is not provided, reads users.data.cv_markdown from DB. If --output is not provided, saves to .browser-profile/cv-polished-<timestamp>.pdf. Updates users.data.cv_path in DB after generating.
This is the only script in the polish flow. LinkedIn profile audit and editing are done directly by the agent via node scripts/browser.js exec eval and node scripts/browser.js exec snapshot, which allows the agent to adapt to LinkedIn's DOM in real time rather than relying on hardcoded selectors.
onboarding (DB, browser profile, LinkedIn session)profile (requires users.data.profile and users.data.job_preferences)apply and targets can consume cv_markdown and cv_path for future tailoringFrequently asked questions
Optimizes the user's LinkedIn profile and CV to align with their declared professional goals. Audits, redacts improvements, applies with per-section approval, and exports a polished CV to PDF.
The source record exposes this install command: npx skills add https://github.com/galiprandi/job-seeker --skill ".agents/skills/polish". Inspect the command and pinned source before running it.
Static rules flagged exec-script, write-files, read-files in the source; the page lists the matching lines and excerpts.
Alternatives
coreyhaines31/marketingskills
When the user wants to plan, design, or implement an A/B test or experiment, or build a growth experimentation program. Also use when the user mentions "A/B test," "split test," "experiment," "test this change," "variant copy," "multivariate test," "hypothesis," "should I test this," "which version is better," "test two versions," "statistical significance," "how long should I run this test," "growth experiments," "experiment velocity," "experiment backlog," "ICE score," "experimentation program
coreyhaines31/marketingskills
When the user wants to reduce churn, build cancellation flows, set up save offers, recover failed payments, or implement retention strategies. Also use when the user mentions 'churn,' 'cancel flow,' 'offboarding,' 'save offer,' 'dunning,' 'failed payment recovery,' 'win-back,' 'retention,' 'exit survey,' 'pause subscription,' 'involuntary churn,' 'people keep canceling,' 'churn rate is too high,' 'how do I keep users,' or 'customers are leaving.' Use this whenever someone is losing subscribers o
alirezarezvani/claude-skills
App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist
wanshuiyin/Auto-claude-code-research-in-sleep
Use it for operations and research tasks; the detail page covers purpose, installation, and practical steps.