| name | career-analyze |
| description | Analyze skill gaps, career alignment, and market fit using ChromaDB knowledge. |
| compatibility | opencode |
| when_to_use | When the user wants career analysis, skill gap assessment, or market positioning. |
| model | high |
| user-invocable | false |
| hub-skill-ids | ["career-intelligence","analysis"] |
| allowed-tools | ["Bash","Read","WebFetch"] |
Skill: Career Analyze
Analyze career data from the knowledge base against target roles and market data.
Prerequisites
Career data must be gathered first. Check knowledge base:
from fu7ur3pr00f.memory.knowledge import get_knowledge_store
store = get_knowledge_store()
stats = store.get_stats()
If stats["total_chunks"] == 0, tell the user to run /gather first.
Analysis Types
- Skill Gap Analysis: Compare current skills against target role requirements
- Career Alignment: How well current trajectory aligns with goals
- Market Fit: Salary expectations vs market data, location analysis
- Strength Leverage: How to apply CliftonStrengths to target roles
Workflow
- Load career data:
from fu7ur3pr00f.utils.data_loader import load_career_data_for_analysis
- Load profile:
from fu7ur3pr00f.memory.profile import load_profile
- Search for market data or use web search for salary/trend info
- Use your LLM reasoning to produce structured analysis
- Present findings to user with actionable recommendations
Output Format
## Skill Gap Analysis: [Target Role]
### Current Skills
[from profile + knowledge base]
### Required Skills
[from market research]
### Gaps
- Missing: [list]
- Emerging: [list]
### Recommendations
1. [actionable step]
2. [actionable step]