Back to Skills

cv-knowledge-query

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

About

This skill enables querying a structured CV knowledge base to retrieve achievements, metrics, and experience stories by theme, skill, company, or keyword. It's designed for developers to quickly find specific accomplishments or data when a user asks about their experience or needs content for generation. Activate it with trigger phrases like "find," "search," or "show me my experience."

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-knowledge-query

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

Documentation

CV Knowledge Query

<purpose> Rapid retrieval from the knowledge base to answer questions about experience, find achievements, or gather data for content generation. </purpose>

<when_to_activate> Activate when the user:

  • Asks "What have I done with [technology/skill]?"
  • Wants to find achievements for a specific theme
  • Needs metrics for a particular company/period
  • Asks "Show me my [type] experience"
  • Wants to understand relationships between experiences

Trigger phrases: "find", "search", "what's my experience", "show me", "list achievements" </when_to_activate>

Knowledge Base Schema

Entities (content/knowledge/index.yaml)

entities:
  companies:
    - id: string       # anchorage, microsoft, etc.
      name: string
      period: string
      role: string
      domain: string

  themes:
    - id: string       # institutional-crypto, developer-experience
      label: string
      keywords: [string]

  skills:
    - id: string       # ethereum, api-design
      label: string
      category: string

Relationships

relationships:
  - from: achievement:id
    to: company:id | skill:id | theme:id
    type: achieved_at | demonstrates | belongs_to | contains | generated_from

Achievements (content/knowledge/achievements/*.yaml)

id: string
headline: string
metric:
  value: string
  unit: string
  context: string
situation: string
task: string
action: string
result: string
skills: [string]
themes: [string]
companies: [string]
years: [number]
good_for: [string]

Quick Search (Deterministic Script)

For keyword-based searches, USE THE SCRIPT FIRST — it's faster and consistent:

# Search by keywords
npm run search:evidence -- --terms "crypto,staking,institutional"

# With JSON output for processing
npm run search:evidence -- --terms "crypto,staking" --json

The script returns:

  • Matching achievements and stories sorted by relevance
  • Relevance scores (strong ≥70%, moderate 40-70%, weak <40%)
  • Matched terms, skills, and themes
  • Snippets for quick review

Use the script when:

  • User asks about specific keywords
  • Quick search without deep analysis needed
  • Need alignment scoring for job fit

Use manual querying when:

  • Deep relationship traversal needed
  • Need full STAR narrative (situation, task, action, result)
  • Complex cross-referencing across entities

Query Patterns

Query by Theme

User: "What's my institutional crypto experience?"

Script-first approach:

npm run search:evidence -- --terms "institutional,crypto,custody"

For deep dive:

  1. Find theme institutional-crypto in index
  2. Query relationships where to: theme:institutional-crypto
  3. Load matching achievements
  4. Return summary with metrics

Output Format:

## Institutional Crypto Experience

### Achievements:
1. **ETH Staking Zero Slashing** (Anchorage, 2024-25)
   - Zero slashing events, Galaxy + institutional clients
   - Skills: ethereum, staking, compliance

2. **L2 Protocol Integrations** (Anchorage, 2024-25)
   - 7+ protocols shipped, 40% faster integration
   - Skills: l2s, compliance

Query by Skill

User: "Show me my API design work"

Process:

  1. Find skill api-design in index
  2. Query achievements where skills includes api-design
  3. Return with context and metrics

Query by Company

User: "What did I accomplish at Microsoft?"

Process:

  1. Find company microsoft in index
  2. Query achievements where companies includes microsoft
  3. Include period and role context

Query by Keyword

User: "Find achievements related to revenue growth"

Script-first approach:

npm run search:evidence -- --terms "revenue,growth,ARR"

For manual search:

  1. Search theme keywords for "revenue"
  2. Search achievement headlines/results for "revenue"
  3. Return ranked by relevance

Query for Role Fit

User: "What achievements fit a Platform PM role?"

Script-first approach:

npm run search:evidence -- --terms "platform,infrastructure,api,scale"

For deeper analysis:

  1. Parse role keywords: platform, infrastructure, scale
  2. Match themes: infrastructure, developer-experience
  3. Match good_for arrays in achievements
  4. Return ranked list with reasoning

Response Formats

Summary Format (default)

Found 3 achievements matching "[query]":

1. **[Headline]** ([Company], [Year])
   Metric: [value] [unit]
   Themes: [theme1], [theme2]

2. ...

Detail Format (on request)

## [Achievement Headline]

**Context**: [Company] | [Period] | [Role]
**Impact**: [metric.value] [metric.unit]

### Situation
[situation text]

### Task
[task text]

### Action
[action text]

### Result
[result text]

**Best for**: [good_for items]

Metrics Format (for comparisons)

| Achievement | Metric | Value | Company | Year |
|------------|--------|-------|---------|------|
| [headline] | [unit] | [value] | [company] | [year] |

Cross-Reference Queries

Find Related Achievements

User: "What else relates to the ETH staking work?"

Process:

  1. Load eth-staking-zero-slashing achievement
  2. Find shared themes: institutional-crypto, infrastructure
  3. Find shared skills: ethereum, compliance
  4. Query other achievements with overlap
  5. Rank by relationship strength

Find Gaps

User: "What skills don't have strong achievements?"

Process:

  1. List all skills in index
  2. Count achievements per skill
  3. Flag skills with <2 achievements
  4. Suggest areas for content development

Query Shortcuts

User SaysQuery
"my blockchain work"themes: [enterprise-blockchain, institutional-crypto]
"growth stories"themes: [revenue-growth]
"developer tools"themes: [developer-experience]
"recent work"years: [2024, 2025]
"Microsoft days"companies: [microsoft]
"startup experience"companies: [ankr, forte, dapper]

<file_locations>

File Locations

Query TargetFile Path
Entity definitionscontent/knowledge/index.yaml
Achievementscontent/knowledge/achievements/*.yaml
Storiescontent/knowledge/stories/*.yaml
Metricscontent/knowledge/metrics/*.yaml
</file_locations>

<skill_compositions>

Works Well With

  • generate-variant — Query evidence before generating variants
  • cv-content-generator — Find achievements for case studies
  • generate-story-bank — Search for stories by category </skill_compositions>

GitHub Repository

majiayu000/claude-skill-registry
Path: skills/cv-knowledge-query

Related Skills

content-collections

Meta

This skill provides a production-tested setup for Content Collections, a TypeScript-first tool that transforms Markdown/MDX files into type-safe data collections with Zod validation. Use it when building blogs, documentation sites, or content-heavy Vite + React applications to ensure type safety and automatic content validation. It covers everything from Vite plugin configuration and MDX compilation to deployment optimization and schema validation.

View skill

cloudflare-turnstile

Meta

This skill provides comprehensive guidance for implementing Cloudflare Turnstile as a CAPTCHA-alternative bot protection system. It covers integration for forms, login pages, API endpoints, and frameworks like React/Next.js/Hono, while handling invisible challenges that maintain user experience. Use it when migrating from reCAPTCHA, debugging error codes, or implementing token validation and E2E tests.

View skill

hybrid-cloud-networking

Meta

This skill configures secure hybrid cloud networking between on-premises infrastructure and cloud platforms like AWS, Azure, and GCP. Use it when connecting data centers to the cloud, building hybrid architectures, or implementing secure cross-premises connectivity. It supports key capabilities such as VPNs and dedicated connections like AWS Direct Connect for high-performance, reliable setups.

View skill

llamaindex

Meta

LlamaIndex is a data framework for building RAG-powered LLM applications, specializing in document ingestion, indexing, and querying. It provides key features like vector indices, query engines, and agents, and supports over 300 data connectors. Use it for document Q&A, chatbots, and knowledge retrieval when building data-centric applications.

View skill