cv-knowledge-query
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 add https://github.com/majiayu000/claude-skill-registrygit clone https://github.com/majiayu000/claude-skill-registry.git ~/.claude/skills/cv-knowledge-queryCopy 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:
- Find theme
institutional-cryptoin index - Query relationships where
to: theme:institutional-crypto - Load matching achievements
- 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:
- Find skill
api-designin index - Query achievements where
skillsincludesapi-design - Return with context and metrics
Query by Company
User: "What did I accomplish at Microsoft?"
Process:
- Find company
microsoftin index - Query achievements where
companiesincludesmicrosoft - 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:
- Search theme keywords for "revenue"
- Search achievement headlines/results for "revenue"
- 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:
- Parse role keywords: platform, infrastructure, scale
- Match themes: infrastructure, developer-experience
- Match
good_forarrays in achievements - 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:
- Load
eth-staking-zero-slashingachievement - Find shared themes:
institutional-crypto,infrastructure - Find shared skills:
ethereum,compliance - Query other achievements with overlap
- Rank by relationship strength
Find Gaps
User: "What skills don't have strong achievements?"
Process:
- List all skills in index
- Count achievements per skill
- Flag skills with <2 achievements
- Suggest areas for content development
Query Shortcuts
| User Says | Query |
|---|---|
| "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 Target | File Path |
|---|---|
| Entity definitions | content/knowledge/index.yaml |
| Achievements | content/knowledge/achievements/*.yaml |
| Stories | content/knowledge/stories/*.yaml |
| Metrics | content/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
Related Skills
content-collections
MetaThis 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.
cloudflare-turnstile
MetaThis 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.
hybrid-cloud-networking
MetaThis 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.
llamaindex
MetaLlamaIndex 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.
