Back to Skills

cv-content-editor

majiayu000
Updated Today
1 views
58
9
58
View on GitHub
Othergeneral

About

This Claude Skill edits existing CV content by cross-referencing a centralized knowledge base as the source of truth. It activates when users need to update case studies, modify experience, or refine content variants. The skill maintains consistency by syncing changes between the knowledge base and presentation-layer files.

Quick Install

Claude Code

Recommended
Plugin CommandRecommended
/plugin add https://github.com/majiayu000/claude-skill-registry
Git CloneAlternative
git clone https://github.com/majiayu000/claude-skill-registry.git ~/.claude/skills/cv-content-editor

Copy and paste this command in Claude Code to install this skill

Documentation

CV Content Editor

<purpose> Edit existing portfolio content by cross-referencing the knowledge base to ensure consistency and accuracy. Maintains the source of truth in `content/knowledge/` while updating presentation-layer files. </purpose>

<when_to_activate> Activate when the user:

  • Wants to update an existing case study
  • Needs to modify experience highlights
  • Wants to refine a variant's messaging
  • Asks to improve or expand existing content
  • Needs to sync content with knowledge base updates

Trigger phrases: "update", "edit", "modify", "change", "improve", "fix [content]" </when_to_activate>

Two-Way Sync Philosophy

Knowledge Base (Source of Truth)     Presentation Layer (Output)
─────────────────────────────────    ──────────────────────────
content/knowledge/                   content/case-studies/
├── achievements/                    content/experience/
├── stories/                         content/variants/
└── metrics/                         content/blog/
         ↓ generates                         ↑ informs
         ↓                                   ↑
    [EDITING FLOW: Update knowledge → Regenerate presentation]

Content Editing Workflow

Step 1: Identify What to Edit

  1. Read the target file user wants to modify
  2. Identify which knowledge base entities it draws from
  3. Query content/knowledge/index.yaml for relationships

Step 2: Determine Edit Scope

Edit TypeScopeFiles to Update
Factual correctionKnowledge baseAchievement/story → regenerate presentation
Messaging refinementPresentation onlyCase study/variant directly
New achievementKnowledge base firstNew achievement → update case study
Metric updateKnowledge baseAchievement metric → sync to presentation

Step 3: Execute Edit

For Knowledge Base Updates

  1. Edit the source file in content/knowledge/achievements/ or stories/
  2. Update content/knowledge/index.yaml if relationships changed
  3. Regenerate affected presentation files

For Presentation-Only Updates

  1. Read current file
  2. Apply targeted edits (preserve structure)
  3. Validate against schema

Step 4: Validate Consistency

  • Knowledge base and presentation should not contradict
  • Metrics should match across files
  • Tags/themes should align with index

Edit Patterns

Pattern 1: Update Achievement Metric

User: "Update the Ankr revenue to $2.5M ARR"

Workflow:

1. Edit: content/knowledge/achievements/ankr-15x-revenue.yaml
   - Update metric.value and result section

2. Sync: content/case-studies/04-ankr-rpc.md
   - Update hook.impactMetric
   - Update Results section

3. Sync: content/experience/index.yaml
   - Update Ankr highlights if affected

Pattern 2: Improve Case Study Narrative

User: "Make the ETH staking case study more compelling"

Workflow:

1. Read: content/knowledge/stories/galaxy-compliance-win.yaml
   - Understand the core narrative

2. Read: content/case-studies/01-eth-staking.md
   - Identify weak sections

3. Edit: Case study directly
   - Strengthen hook
   - Add concrete details from story
   - Improve key quote

4. Consider: Backport improvements to story if substantial

Pattern 3: Update Variant for New Role

User: "Update the Bloomberg variant with new achievements"

Workflow:

1. Read: content/knowledge/achievements/*.yaml
   - Find new relevant achievements

2. Read: content/variants/bloomberg-technical-product-manager.yaml
   - Understand current positioning

3. Edit: Variant YAML
   - Add new achievements to relevant sections
   - Update relevance scores
   - Regenerate JSON

4. Validate: Test variant URL still works

Pattern 4: Add New Experience Highlight

User: "Add a highlight about shipping 3 protocols in parallel"

Workflow:

1. Check: Does achievement exist?
   - If not, create in content/knowledge/achievements/

2. Edit: content/experience/index.yaml
   - Add highlight to appropriate company

3. Consider: Update related case study if relevant

Content Validation

After any edit, verify:

Schema Validation

npm run validate

Cross-Reference Check

  • Achievement metrics match case study metrics
  • Experience highlights reflect achievements
  • Variant relevance scores are justified
  • Index relationships are current

Consistency Check

  • Same achievement = same numbers everywhere
  • Company names consistent
  • Dates/periods consistent
  • Tags match knowledge base themes

Common Edit Commands

User SaysAction
"Update the numbers"Edit achievement → sync presentation
"Make it more compelling"Edit presentation narrative
"Add this achievement"Create achievement → update presentation
"Fix inconsistency"Identify source of truth → sync all
"Improve this section"Targeted presentation edit

Output Format

When editing, always:

  1. Show the diff (what changed)
  2. List all files updated
  3. Note if knowledge base was modified
  4. Suggest running validation

Example output:

Updated files:
- content/knowledge/achievements/ankr-15x-revenue.yaml (metric update)
- content/case-studies/04-ankr-rpc.md (synced metric)

Knowledge base updated: Yes
Run validation: npm run validate

GitHub Repository

majiayu000/claude-skill-registry
Path: skills/cv-content-editor

Related Skills

algorithmic-art

Meta

This Claude Skill creates original algorithmic art using p5.js with seeded randomness and interactive parameters. It generates .md files for algorithmic philosophies, plus .html and .js files for interactive generative art implementations. Use it when developers need to create flow fields, particle systems, or other computational art while avoiding copyright issues.

View skill

subagent-driven-development

Development

This skill executes implementation plans by dispatching a fresh subagent for each independent task, with code review between tasks. It enables fast iteration while maintaining quality gates through this review process. Use it when working on mostly independent tasks within the same session to ensure continuous progress with built-in quality checks.

View skill

executing-plans

Design

Use the executing-plans skill when you have a complete implementation plan to execute in controlled batches with review checkpoints. It loads and critically reviews the plan, then executes tasks in small batches (default 3 tasks) while reporting progress between each batch for architect review. This ensures systematic implementation with built-in quality control checkpoints.

View skill

cost-optimization

Other

This Claude Skill helps developers optimize cloud costs through resource rightsizing, tagging strategies, and spending analysis. It provides a framework for reducing cloud expenses and implementing cost governance across AWS, Azure, and GCP. Use it when you need to analyze infrastructure costs, right-size resources, or meet budget constraints.

View skill