jpskill.com
📄 ドキュメント コミュニティ

resume-manager

履歴書作成や職務経歴のアップデート、ポートフォリオ管理などを支援し、既存の履歴書から情報を抽出してデータベース化、求人ごとに最適な情報を選択して、プロが作成したような1ページの履歴書PDFを生成するSkill。

📜 元の英語説明(参考)

This skill should be used whenever users need help with resume creation, updating professional profiles, tracking career experiences, managing projects portfolio, or generating tailored resumes for job applications. On first use, extracts data from user's existing resume and maintains a structured database of experiences, projects, education, and skills. Generates professionally styled one-page PDF resumes customized for specific job roles by selecting only the most relevant information from the database.

🇯🇵 日本人クリエイター向け解説

一言でいうと

履歴書作成や職務経歴のアップデート、ポートフォリオ管理などを支援し、既存の履歴書から情報を抽出してデータベース化、求人ごとに最適な情報を選択して、プロが作成したような1ページの履歴書PDFを生成するSkill。

※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o resume-manager.zip https://jpskill.com/download/16545.zip && unzip -o resume-manager.zip && rm resume-manager.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/16545.zip -OutFile "$d\resume-manager.zip"; Expand-Archive "$d\resume-manager.zip" -DestinationPath $d -Force; ri "$d\resume-manager.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して resume-manager.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → resume-manager フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-18
取得日時
2026-05-18
同梱ファイル
4

📖 Skill本文(日本語訳)

※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。

Resume Manager

概要

このスキルは、Claude を包括的な履歴書管理システムに変え、あなたの職務経歴の構造化されたデータベースを維持し、特定の求人応募に合わせて調整された、プロフェッショナルなスタイルの PDF 履歴書を生成します。このスキルは、対象となる役割に基づいて、最も関連性の高い経験、プロジェクト、スキルをインテリジェントに選択し、強調表示します。

このスキルを使用する場面

履歴書関連のタスクには、このスキルを呼び出してください。

  • 求人応募用に調整された履歴書の作成
  • 職務経験とプロジェクトの更新
  • スキルと資格の管理
  • キャリアの進捗状況の追跡
  • 役割に特化した履歴書の生成
  • 包括的なキャリアポートフォリオの維持
  • ATS システム向けに履歴書の内容を最適化

ワークフロー

ステップ 1: 既存のデータの確認

履歴書操作を行う前に、データベースが初期化されているかどうかを確認します。

python3 scripts/resume_db.py is_initialized

出力が "false" の場合は、ステップ 2 (初期設定) に進みます。"true" の場合は、ステップ 3 (履歴書操作) に進みます。

ステップ 2: 初期設定 - 既存の履歴書からの抽出

データが存在しない場合は、ユーザーに既存の履歴書を提供するように依頼します。

ユーザーへのプロンプト:

調整された履歴書を作成するお手伝いをするために、あなたの職務経歴のデータベースを構築する必要があります。既存の履歴書を次のいずれかの方法で提供してください。

1. 履歴書ファイル (PDF、DOCX、または TXT) をアップロードする
2. 履歴書の内容を貼り付ける
3. オンライン履歴書/LinkedIn プロフィールのリンクを提供する

すべての情報を抽出し、さまざまな求人応募に合わせてカスタマイズされた履歴書を生成するために使用できる、構造化されたデータベースに整理します。

履歴書からのデータの抽出:

ユーザーが履歴書を提供したら、次の情報を抽出します。

1. 個人情報:

  • 氏名
  • メールアドレス
  • 電話番号
  • 所在地 (市区町村、都道府県/国)
  • LinkedIn プロフィール URL
  • GitHub プロフィール URL
  • 個人のウェブサイト
  • 職務経歴の概要/目標

2. 職務経験: 各役割について、以下を抽出します。

  • 役職/職名
  • 会社名
  • 所在地
  • 開始日 (形式: "Mon YYYY"、例: "Jan 2022")
  • 終了日 (または "Present")
  • 簡単な説明
  • 主なハイライト/実績 (箇条書き)
  • 使用したテクノロジー/ツール

3. プロジェクト: 各プロジェクトについて、以下を抽出します。

  • プロジェクト名
  • 日付または期間
  • 説明
  • 主なハイライト/実績
  • 使用したテクノロジー
  • リンク (利用可能な場合)

4. 学歴: 各学位について、以下を抽出します。

  • 学位名 (例: "Bachelor of Science in Computer Science")
  • 学校/大学名
  • 所在地
  • 卒業日
  • GPA (記載されている場合)
  • 栄誉 (ある場合)
  • 関連するコースワーク

5. スキル: スキルを抽出して分類します。

  • プログラミング言語
  • フレームワークとライブラリ
  • ツールとテクノロジー
  • プラクティスと方法論
  • ソフトスキル

6. その他のセクション:

  • 資格 (名前、発行者、日付)
  • 受賞歴と栄誉
  • 出版物
  • ボランティア活動
  • 話せる言語

抽出されたデータの保存:

抽出後、Python を使用してデータベースに保存します。

import sys
import json
sys.path.append('[SKILL_DIR]/scripts')
from resume_db import initialize_from_data

resume_data = {
    "personal_info": {
        "name": "Full Name",
        "email": "email@example.com",
        "phone": "+1 (555) 123-4567",
        "location": "City, State",
        "linkedin": "linkedin.com/in/username",
        "github": "github.com/username",
        "website": "website.com",
        "summary": "Professional summary..."
    },
    "experiences": [
        {
            "position": "Senior Software Engineer",
            "company": "Company Name",
            "location": "City, State",
            "start_date": "Jan 2022",
            "end_date": "Present",
            "description": "Brief description",
            "highlights": [
                "Achievement 1 with quantifiable results",
                "Achievement 2 with impact metrics",
                "Achievement 3 with technologies used"
            ],
            "technologies": ["Python", "AWS", "Docker"]
        }
    ],
    "projects": [
        {
            "name": "Project Name",
            "date": "2023",
            "description": "Project description",
            "highlights": [
                "Key achievement or feature",
                "Impact or result"
            ],
            "technologies": ["React", "Node.js", "PostgreSQL"],
            "link": "github.com/username/project"
        }
    ],
    "education": [
        {
            "degree": "Bachelor of Science in Computer Science",
            "school": "University Name",
            "location": "City, State",
            "graduation_date": "May 2019",
            "gpa": "3.8/4.0",
            "honors": "Magna Cum Laude",
            "relevant_coursework": ["Data Structures", "Algorithms", "Machine Learning"]
        }
    ],
    "skills": {
        "Languages": ["Python", "JavaScript", "Java"],
        "Frameworks": ["React", "Django", "Spring"],
        "Tools": ["Docker", "AWS", "Git"],
        "Practices": ["Agile", "CI/CD", "TDD"]
    },
    "certifications": [
        {
            "name": "AWS Certified Solutions Architect",
            "issuer": "Amazon Web Services",
            "date": "2023"
        }
    ],
    "awards": [],
    "publications": [],
    "volunteer": [],
    "languages": ["English (Native)", "Spanish (Fluent)"],
    "interests": []
}

initialize_from_data(resume_data)

[SKILL_DIR] を実際のスキルディレクトリパスに置き換えます。

確認:

完璧です!あなたの職務経歴を抽出して保存しました。

• 個人情報: ✓
• 職務経験: X ポジション
• プロジェクト: X プロジェクト
• 学歴: X 学位
• スキル: X カテゴリ
• 資格: X 資格

履歴書データベースの準備ができました。応募するすべての仕事に合わせてカスタマイズされた履歴書を生成できます。役職または説明を教えていただければ、最も関連性の高い経験とスキルを強調した、調整された 1 ページの PDF を作成します。

ステップ 3: 求人応募用の調整された履歴書の生成

(原文がここで切り詰められています)

📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開

Resume Manager

Overview

This skill transforms Claude into a comprehensive resume management system that maintains a structured database of your professional profile and generates tailored, professionally styled PDF resumes for specific job applications. The skill intelligently selects and highlights the most relevant experiences, projects, and skills based on the target role.

When to Use This Skill

Invoke this skill for resume-related tasks:

  • Creating tailored resumes for job applications
  • Updating professional experiences and projects
  • Managing skills and certifications
  • Tracking career progression
  • Generating role-specific resumes
  • Maintaining a comprehensive career portfolio
  • Optimizing resume content for ATS systems

Workflow

Step 1: Check for Existing Data

Before any resume operations, check if the database is initialized:

python3 scripts/resume_db.py is_initialized

If output is "false", proceed to Step 2 (Initial Setup). If "true", proceed to Step 3 (Resume Operations).

Step 2: Initial Setup - Extract from Existing Resume

When no data exists, ask the user to provide their existing resume.

Prompt the User:

To help you create tailored resumes, I need to build a database of your professional
profile. Please provide your existing resume in one of these ways:

1. Upload your resume file (PDF, DOCX, or TXT)
2. Paste the content of your resume
3. Provide a link to your online resume/LinkedIn profile

I'll extract all the information and organize it in a structured database that I can
use to generate customized resumes for different job applications.

Extracting Data from Resume:

Once the user provides their resume, extract the following information:

1. Personal Information:

  • Full name
  • Email address
  • Phone number
  • Location (city, state/country)
  • LinkedIn profile URL
  • GitHub profile URL
  • Personal website
  • Professional summary/objective

2. Work Experience: For each role, extract:

  • Position/Job title
  • Company name
  • Location
  • Start date (format: "Mon YYYY" like "Jan 2022")
  • End date (or "Present")
  • Brief description
  • Key highlights/achievements (bullet points)
  • Technologies/tools used

3. Projects: For each project, extract:

  • Project name
  • Date or time period
  • Description
  • Key highlights/achievements
  • Technologies used
  • Link (if available)

4. Education: For each degree, extract:

  • Degree name (e.g., "Bachelor of Science in Computer Science")
  • School/University name
  • Location
  • Graduation date
  • GPA (if mentioned)
  • Honors (if any)
  • Relevant coursework

5. Skills: Extract and categorize skills:

  • Programming Languages
  • Frameworks & Libraries
  • Tools & Technologies
  • Practices & Methodologies
  • Soft skills

6. Additional Sections:

  • Certifications (name, issuer, date)
  • Awards & Honors
  • Publications
  • Volunteer work
  • Languages spoken

Saving the Extracted Data:

After extraction, save to the database using Python:

import sys
import json
sys.path.append('[SKILL_DIR]/scripts')
from resume_db import initialize_from_data

resume_data = {
    "personal_info": {
        "name": "Full Name",
        "email": "email@example.com",
        "phone": "+1 (555) 123-4567",
        "location": "City, State",
        "linkedin": "linkedin.com/in/username",
        "github": "github.com/username",
        "website": "website.com",
        "summary": "Professional summary..."
    },
    "experiences": [
        {
            "position": "Senior Software Engineer",
            "company": "Company Name",
            "location": "City, State",
            "start_date": "Jan 2022",
            "end_date": "Present",
            "description": "Brief description",
            "highlights": [
                "Achievement 1 with quantifiable results",
                "Achievement 2 with impact metrics",
                "Achievement 3 with technologies used"
            ],
            "technologies": ["Python", "AWS", "Docker"]
        }
    ],
    "projects": [
        {
            "name": "Project Name",
            "date": "2023",
            "description": "Project description",
            "highlights": [
                "Key achievement or feature",
                "Impact or result"
            ],
            "technologies": ["React", "Node.js", "PostgreSQL"],
            "link": "github.com/username/project"
        }
    ],
    "education": [
        {
            "degree": "Bachelor of Science in Computer Science",
            "school": "University Name",
            "location": "City, State",
            "graduation_date": "May 2019",
            "gpa": "3.8/4.0",
            "honors": "Magna Cum Laude",
            "relevant_coursework": ["Data Structures", "Algorithms", "Machine Learning"]
        }
    ],
    "skills": {
        "Languages": ["Python", "JavaScript", "Java"],
        "Frameworks": ["React", "Django", "Spring"],
        "Tools": ["Docker", "AWS", "Git"],
        "Practices": ["Agile", "CI/CD", "TDD"]
    },
    "certifications": [
        {
            "name": "AWS Certified Solutions Architect",
            "issuer": "Amazon Web Services",
            "date": "2023"
        }
    ],
    "awards": [],
    "publications": [],
    "volunteer": [],
    "languages": ["English (Native)", "Spanish (Fluent)"],
    "interests": []
}

initialize_from_data(resume_data)

Replace [SKILL_DIR] with the actual skill directory path.

Confirmation:

Perfect! I've extracted and saved your professional profile:

• Personal Information: ✓
• Work Experience: X positions
• Projects: X projects
• Education: X degrees
• Skills: X categories
• Certifications: X certifications

Your resume database is now ready. I can generate customized resumes for any job
you're applying to. Just tell me the job title or description, and I'll create a
tailored one-page PDF highlighting your most relevant experience and skills.

Step 3: Generate Tailored Resume for Job Application

When a user requests a resume for a specific role:

Step 3.1: Understand the Target Role

Ask the user about the role:

To create the perfect resume for this position, I need to understand the role better.

1. What's the job title?
2. Can you share the job description or key requirements?
3. What are the must-have skills or technologies mentioned?

Step 3.2: Extract Keywords and Requirements

From the job description, identify:

  • Required technical skills
  • Preferred technologies
  • Key responsibilities
  • Important keywords for ATS
  • Industry-specific terms
  • Experience level indicators

Step 3.3: Generate Tailored Resume

Use the PDF generator to create a customized resume:

import sys
sys.path.append('[SKILL_DIR]/scripts')
from pdf_generator import generate_resume

# Keywords from job description
job_keywords = [
    "python", "aws", "kubernetes", "microservices",
    "agile", "rest api", "postgresql", "docker"
]

job_title = "Senior Backend Engineer"

# Output path
output_path = f"~/Downloads/{job_title.replace(' ', '_')}_Resume.pdf"

# Generate resume
generate_resume(
    output_path=output_path,
    job_title=job_title,
    job_keywords=job_keywords
)

The generator will:

  • Filter experiences relevant to the keywords
  • Select projects that match the role
  • Highlight applicable skills
  • Keep it to one page
  • Use professional styling
  • Optimize for ATS parsing

Step 3.4: Review and Iterate

After generating:

  1. Inform the user where the PDF was saved
  2. Offer to make adjustments
  3. Suggest additional highlights if space allows
  4. Recommend customizations for specific requirements

Step 4: Update Resume Database

When users want to add or update information:

Adding New Experience:

from resume_db import add_experience

new_exp = {
    "position": "Lead Software Engineer",
    "company": "New Company",
    "location": "Remote",
    "start_date": "Mar 2024",
    "end_date": "Present",
    "description": "Leading backend infrastructure team",
    "highlights": [
        "Scaled services to handle 50M+ daily requests",
        "Reduced infrastructure costs by 30% through optimization",
        "Built CI/CD pipeline improving deployment speed by 10x"
    ],
    "technologies": ["Go", "Kubernetes", "PostgreSQL", "AWS"]
}

add_experience(new_exp)

Adding New Project:

from resume_db import add_project

new_project = {
    "name": "Real-time Analytics Dashboard",
    "date": "2024",
    "description": "Built real-time analytics platform processing 1M+ events/minute",
    "highlights": [
        "Implemented using streaming architecture with Kafka and Redis",
        "Created interactive visualizations with React and D3.js",
        "Achieved sub-second query latency on complex aggregations"
    ],
    "technologies": ["React", "Kafka", "Redis", "Python", "TimescaleDB"],
    "link": "github.com/username/analytics-dashboard"
}

add_project(new_project)

Updating Skills:

from resume_db import add_skill, update_skills

# Add individual skill
add_skill("Languages", "Rust")
add_skill("Tools", "Terraform")

# Or update entire skills dictionary
skills = {
    "Languages": ["Python", "Go", "JavaScript", "Rust", "SQL"],
    "Frameworks": ["Django", "FastAPI", "React", "Next.js"],
    "Cloud & DevOps": ["AWS", "Kubernetes", "Docker", "Terraform", "CI/CD"],
    "Databases": ["PostgreSQL", "MongoDB", "Redis", "Elasticsearch"],
    "Practices": ["Microservices", "TDD", "Agile", "System Design"]
}

update_skills(skills)

Adding Certification:

from resume_db import add_certification

cert = {
    "name": "Google Cloud Professional Architect",
    "issuer": "Google Cloud",
    "date": "2024",
    "credential_id": "ABC123",
    "link": "credentials.google.com/..."
}

add_certification(cert)

Step 5: View and Manage Resume Data

View Summary:

python3 scripts/resume_db.py summary

View Specific Sections:

# Personal info
python3 scripts/resume_db.py get_personal_info

# All experiences
python3 scripts/resume_db.py get_experiences

# All projects
python3 scripts/resume_db.py get_projects

# Education
python3 scripts/resume_db.py get_education

# Skills
python3 scripts/resume_db.py get_skills

Search Across All Data:

python3 scripts/resume_db.py search "machine learning"

Export All Data:

python3 scripts/resume_db.py export > resume_backup.json

Step 6: Resume Optimization Tips

When generating resumes, provide these optimization tips:

Content Optimization:

  • Use action verbs (Led, Built, Architected, Improved, Reduced)
  • Include quantifiable metrics (X% improvement, Y users, Z revenue)
  • Tailor highlights to match job requirements
  • Keep bullet points concise (1-2 lines max)
  • Focus on impact, not just responsibilities

ATS Optimization:

  • Use standard section headers (Experience, Education, Skills)
  • Include keywords from job description naturally
  • Avoid tables, columns, headers/footers
  • Use standard fonts (which the PDF generator does)
  • Spell out acronyms once: "Application Programming Interface (API)"

One-Page Strategy:

  • Prioritize recent and relevant experience (last 5-7 years)
  • Include 3-4 bullet points per role
  • Limit to 2-3 projects maximum
  • Condense older or less relevant experience
  • Remove outdated technologies unless specifically required

Best Practices

  1. Keep Data Current

    • Update experiences as projects complete
    • Add new skills as you learn them
    • Maintain quantifiable achievements
    • Record certifications immediately
  2. Write Effective Bullet Points

    • Start with action verbs
    • Include metrics and outcomes
    • Show progression and impact
    • Use the STAR method (Situation, Task, Action, Result)
  3. Organize Skills Strategically

    • Group by category for clarity
    • Put most relevant skills first
    • Remove outdated technologies
    • Be honest about proficiency levels
  4. Tailor Every Resume

    • Match keywords to job description
    • Emphasize relevant experience
    • Reorder bullet points by relevance
    • Adjust technical skills section
  5. Maintain Professional Tone

    • Use third-person implied (no "I")
    • Keep language concise and clear
    • Avoid jargon unless industry-standard
    • Proofread for errors

Example Interactions

Example 1: Initial Setup

User: "Help me create a resume for job applications"

Claude: [Checks database - finds not initialized]

To help you create tailored resumes, I need to build a database of your professional
profile. Please provide your existing resume in one of these ways:

1. Upload your resume file (PDF, DOCX, or TXT)
2. Paste the content of your resume
3. Provide a link to your online resume/LinkedIn profile

[User provides resume]

Claude: [Extracts data and initializes database]

Perfect! I've extracted and saved your professional profile:
• Personal Information: ✓
• Work Experience: 3 positions
• Projects: 2 projects
• Education: 1 degree
• Skills: 4 categories
• Certifications: 2 certifications

Your resume database is ready! Tell me about a job you're applying to and I'll
generate a customized one-page PDF resume.

Example 2: Generate Resume for Specific Role

User: "I need a resume for a Senior Backend Engineer position at a fintech startup"

Claude: [Database initialized]

Great! To create the perfect resume for this Senior Backend Engineer role, can you
share the job description or tell me about the key requirements?

User: [Shares job description mentioning Python, AWS, microservices, PostgreSQL, etc.]

Claude: [Extracts keywords: python, aws, microservices, postgresql, fintech, api]

[Generates PDF using relevant experiences and projects]

I've created your tailored resume: ~/Downloads/Senior_Backend_Engineer_Resume.pdf

The resume highlights:
✓ Your 5 years of backend experience with Python and microservices
✓ AWS and Kubernetes expertise from your current role
✓ PostgreSQL and database optimization achievements
✓ Your fintech-relevant project on payment processing
✓ All technical skills matching the job requirements

The resume is optimized for ATS systems and kept to exactly one page. Would you
like me to adjust anything?

Example 3: Update Experience

User: "I just completed a major project - built a real-time analytics system processing 1M events per minute using Kafka"

Claude: [Loads resume data]

Excellent achievement! Let me add this to your profile. A few questions:

1. Should I add this as a new bullet point to your current role, or as a separate project?
2. What technologies did you use besides Kafka?
3. What was the business impact or outcome?

User: "Add it to my current role. Used Kafka, Redis, Python, and TimescaleDB. Reduced report generation time from hours to seconds."

Claude: [Updates experience]

✓ Updated your current role with this achievement:

"Built real-time analytics system processing 1M+ events/minute using Kafka, Redis, and TimescaleDB, reducing report generation time from hours to seconds"

This will now appear in future resumes, especially for roles requiring streaming
data, Kafka, or analytics experience.

Example 4: Multiple Resume Versions

User: "I'm applying to both backend and full-stack positions. Can you create resumes for both?"

Claude: Sure! Let's create two targeted versions.

[Generates backend-focused resume emphasizing API development, microservices, databases]
✓ Backend Engineer Resume: Emphasizes your Python/Go backend work, API design, and infrastructure scaling

[Generates full-stack resume including both backend and frontend projects]
✓ Full-Stack Engineer Resume: Balances your backend expertise with React projects and full-stack achievements

Both resumes are one page and optimized for their respective roles. The main
differences are:
- Backend version: More emphasis on system design, performance, and infrastructure
- Full-stack version: Includes your React projects and mentions end-to-end ownership

Which one would you like to review first?

Example 5: Resume Review and Optimization

User: "Can you review my resume data and suggest improvements?"

Claude: [Analyzes resume database]

I've reviewed your profile. Here are my recommendations:

**Strengths:**
✓ Good mix of quantifiable achievements
✓ Recent experience with in-demand technologies
✓ Clear progression in roles and responsibilities

**Areas for Improvement:**

1. **Add Metrics** to these bullet points:
   - "Improved API performance" → Add percentage improvement
   - "Led team of engineers" → Specify team size and outcomes

2. **Update Skills** section:
   - Remove outdated: jQuery, Bower (unless specifically needed)
   - Add trending: TypeScript, Next.js (if you've used them)

3. **Expand Recent Project**:
   - Your latest project mentions "built authentication system"
   - Add: number of users, security standards followed, or technologies used

4. **Certifications**:
   - Your AWS cert expires soon - plan to renew
   - Consider adding Kubernetes cert you mentioned pursuing

Would you like me to help update any of these areas?

Technical Notes

Data Storage:

  • Location: ~/.claude/resume_data.json
  • Format: Structured JSON
  • Backup: Use python3 scripts/resume_db.py export

PDF Generation:

  • Library: reportlab (requires: pip install reportlab)
  • Page size: US Letter (8.5" x 11")
  • Margins: 0.75 inches all sides
  • Font: Helvetica family
  • Optimized for: One-page resumes, ATS compatibility

Resume Styling:

  • Professional color scheme (blues and grays)
  • Clear section headers with underlines
  • Consistent spacing and formatting
  • Bullet points for achievements
  • Contact info in header
  • Technical skills as comma-separated lists

Database Commands:

# Check initialization
python3 scripts/resume_db.py is_initialized

# View data
python3 scripts/resume_db.py summary
python3 scripts/resume_db.py get_experiences
python3 scripts/resume_db.py get_projects
python3 scripts/resume_db.py get_education
python3 scripts/resume_db.py get_skills

# Search
python3 scripts/resume_db.py search "keyword"

# Export/Backup
python3 scripts/resume_db.py export > backup.json

# Reset (caution!)
python3 scripts/resume_db.py reset

PDF Generation Commands:

# Generate general resume
python3 scripts/pdf_generator.py output.pdf

# Generate with job title
python3 scripts/pdf_generator.py output.pdf --title "Senior Software Engineer"

# Generate with keyword filtering
python3 scripts/pdf_generator.py output.pdf --keywords python aws kubernetes docker

Data Structure Example:

{
  "initialized": true,
  "personal_info": {
    "name": "Your Name",
    "email": "email@example.com",
    "phone": "+1 (555) 123-4567",
    "location": "City, State",
    "linkedin": "linkedin.com/in/username",
    "github": "github.com/username",
    "summary": "Professional summary"
  },
  "experiences": [
    {
      "id": 1234567890.123,
      "position": "Senior Engineer",
      "company": "Company Name",
      "location": "City, State",
      "start_date": "Jan 2022",
      "end_date": "Present",
      "highlights": ["Achievement 1", "Achievement 2"],
      "technologies": ["Python", "AWS"]
    }
  ],
  "skills": {
    "Languages": ["Python", "JavaScript"],
    "Frameworks": ["Django", "React"]
  }
}

Resources

scripts/resume_db.py

Complete database management system providing:

  • Data initialization and persistence
  • CRUD operations for all resume sections
  • Relevance-based filtering for experiences/projects
  • Keyword-based skill matching
  • Search functionality across all data
  • Data export and backup
  • CLI interface for all operations

scripts/pdf_generator.py

Professional PDF generation engine:

  • ReportLab-based PDF creation
  • Custom styling matching professional standards
  • One-page optimization
  • Keyword-based content filtering
  • Relevance scoring for experiences/projects
  • ATS-friendly formatting
  • Command-line interface

assets/resume_template.json

Sample resume data structure showing:

  • Complete data format
  • Best practices for content
  • Example bullet points with metrics
  • Proper date formatting
  • Skill categorization
  • All supported sections

同梱ファイル

※ ZIPに含まれるファイル一覧。`SKILL.md` 本体に加え、参考資料・サンプル・スクリプトが入っている場合があります。