Career management
Model-agnostic agent skills archive for reusable workflows, references, and scripts across coding assistants.
npx -y skills add qyinm/agent-skills-archive --skill career-managementAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Organizes and maintains a filesystem-based career management workspace including resume versioning, job application pipelines, company research reuse, and progress tracking. Use when creating/updating resumes, adding applications, preparing interviews, or cleaning career docs structure.
SKILL.md
2.8 KB, as published. Nobody here has run it
Overview
This skill standardizes career documents in a single workspace:
- resume versioning (
resume/verN/) - job application tracking (
job-applications/{year}/{company}-{position}/) - reusable company research (
job-applications/companies/) - progress tracking (
job-applications/status.md)
Use this skill when you need to create, reorganize, or update career artifacts while preserving consistent naming and folder conventions.
Core Conventions
1) Resume Versioning
- Store each version in
resume/verN/. - Keep file names aligned with folder version:
verN.md,verN.typ,verN.pdf. - Prefer keeping source (
.md/.typ) and output (.pdf) together in the same version folder.
New Resume Version
mkdir -p resume/ver5
# add ver5.typ, ver5.md (optional), ver5.pdf
2) Job Application Structure
Use year + company-position convention:
job-applications/{year}/{company}-{position}/
├── 00_job_description/
├── 01_application/
├── 02_interview-prep/
└── 03_progress/
Folder name must be kebab-case: {company}-{position}.
New Application Skeleton
mkdir -p job-applications/{year}/{company}-{position}/{00_job_description,01_application,02_interview-prep,03_progress}
3) Reusable Company Research
- Keep company research separate from application instances:
job-applications/companies/{company-name}/company-research.md
- Reuse this across multiple applications to avoid duplication.
4) Progress Tracking
- Update
job-applications/status.mdwhenever application state changes. - Keep status entries short, date-stamped, and actionable.
Execution Workflow
When invoked:
- Detect root structure (
resume/,job-applications/,CLAUDE.md). - Normalize folders to the conventions above.
- Apply requested change (new resume version, new application, interview prep updates, etc.).
- Preserve existing content; avoid destructive moves unless explicitly requested.
- Provide a concise summary with changed paths.
Output Rules
- Write documents in Korean by default; keep technical terms in English when clearer.
- Use concise, scan-friendly markdown sections.
- If generating resume content, prioritize measurable outcomes (metrics, impact, scope).
Safety Checks
Before finishing:
- Confirm naming consistency (
verN, kebab-case company-position). - Confirm required subfolders exist for each new application.
- Confirm no unrelated files were modified.