@gonzih/skill-radar 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Maksim Soltan
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,105 @@
1
+ # Skill Radar — Personalized Skill Gap Analysis
2
+
3
+ > 86% of professionals are falling behind on critical skills — LinkedIn 2026 Learning Report
4
+
5
+ Skill Radar is an MCP (Model Context Protocol) server that analyzes your professional role, current skills, and 2025-2026 industry trends to identify specific skill gaps and generate a personalized 90-day learning plan. All resources are free.
6
+
7
+ ## What it does
8
+
9
+ - **Skill gap analysis** across 9 role categories (Software Engineering, Product, Marketing, Finance, Healthcare, Data Science, Design, Leadership, Law)
10
+ - **90-day learning plans** with weekly themes, curated free resources, practice exercises, and daily 5-15 minute micro-actions
11
+ - **Market comparison** with alignment scores and estimated salary impact
12
+ - **Weekly check-ins** to track progress over the 12-week plan
13
+ - **Trend data** covering trending, emerging, and decaying skills for 2025-2026
14
+
15
+ ## Installation
16
+
17
+ ```bash
18
+ npm install -g @gonzih/skill-radar
19
+ ```
20
+
21
+ ## MCP Configuration (Claude Desktop)
22
+
23
+ Add to your `claude_desktop_config.json`:
24
+
25
+ ```json
26
+ {
27
+ "mcpServers": {
28
+ "skill-radar": {
29
+ "command": "skill-radar"
30
+ }
31
+ }
32
+ }
33
+ ```
34
+
35
+ On macOS the config file is at:
36
+ `~/Library/Application Support/Claude/claude_desktop_config.json`
37
+
38
+ ## How to use
39
+
40
+ ### 1. Analyze your skill gaps
41
+
42
+ Ask Claude:
43
+
44
+ > "Analyze my skill gaps. I'm a software engineer with 4 years experience. My current skills are: Python, Django, PostgreSQL, Git, basic AWS. My goal is to get promoted to senior."
45
+
46
+ Claude will call `analyze_skills` and return a prioritized gap list with ROI scores.
47
+
48
+ ### 2. Build your 90-day plan
49
+
50
+ > "Build a learning plan based on my top 5 skill gaps, I have 7 hours per week."
51
+
52
+ Claude will call `build_plan` and return a 12-week plan broken into:
53
+ - **Month 1 — Foundation:** One new concept per week
54
+ - **Month 2 — Application:** Build real projects
55
+ - **Month 3 — Visibility:** Portfolio, networking, credentialing
56
+
57
+ ### 3. Weekly check-ins
58
+
59
+ > "Log my week 3 check-in. I completed: read TypeScript handbook chapter 1-3, built a typed Express API, watched Kubernetes intro video."
60
+
61
+ ### 4. Career pivots
62
+
63
+ For role transitions (e.g., software engineer → data scientist):
64
+
65
+ > "I'm a software engineer wanting to switch to data science. Analyze my gaps and build a 90-day transition plan."
66
+
67
+ Skill Radar will detect the gap between your current role's skills and the target role's trending skills, then build a bridge plan.
68
+
69
+ ### 5. Combine with daily micro-learning
70
+
71
+ Each week in your plan includes 7 daily actions (5-45 min each). Use them as:
72
+ - Morning warm-up before work
73
+ - Lunch-break learning
74
+ - Evening wind-down practice
75
+
76
+ ## Tool Reference
77
+
78
+ | Tool | Description |
79
+ |------|-------------|
80
+ | `analyze_skills` | Gap analysis with ROI scoring |
81
+ | `build_plan` | 12-week personalized learning plan |
82
+ | `get_trending_skills` | Trending/emerging/decaying skills by role |
83
+ | `weekly_checkin` | Track progress + get encouragement |
84
+ | `get_resources` | Curated free learning resources |
85
+ | `compare_to_market` | Alignment score + salary impact estimate |
86
+
87
+ ## Supported Role Categories
88
+
89
+ - Software Engineering
90
+ - Product Management
91
+ - Marketing
92
+ - Finance/Accounting
93
+ - Healthcare
94
+ - Data Science/Analytics
95
+ - Design
96
+ - Leadership/Management
97
+ - Law
98
+
99
+ ## Data
100
+
101
+ Trend data is sourced from analysis of job postings, LinkedIn Learning reports, Stack Overflow surveys, and industry reports for 2025-2026. All learning resources are free (freeCodeCamp, Kaggle, Hugging Face, official docs, YouTube, MIT OCW, etc.).
102
+
103
+ ## License
104
+
105
+ MIT — Copyright Maksim Soltan
package/SKILL.md ADDED
@@ -0,0 +1,97 @@
1
+ # Skill Radar — MCP Capability Card
2
+
3
+ ## What skill-radar is
4
+
5
+ `skill-radar` is an MCP server that provides personalized skill gap analysis and 90-day learning plans for professionals. It combines 2025-2026 market trend data across 9 role categories with curated free learning resources to help professionals identify what to learn next and how.
6
+
7
+ Data is persisted locally in SQLite (`~/.skill-radar/data.db`) so profiles and check-ins are remembered across sessions.
8
+
9
+ ## MCP Tools
10
+
11
+ ### `analyze_skills`
12
+ Analyzes skill gaps for a professional profile.
13
+
14
+ **Input:**
15
+ - `profileId` (string) — unique identifier for this person
16
+ - `role` (string) — job title or role (e.g. "software engineer", "product manager")
17
+ - `currentSkills` (string[]) — list of current skills
18
+ - `yearsExperience` (number) — years in the role
19
+ - `target` (string) — "stay current" | "get promoted" | "switch roles to X"
20
+
21
+ **Output:** Gap score (0-100), prioritized skill gaps with ROI, strengths, at-risk skills, full gap table.
22
+
23
+ ---
24
+
25
+ ### `build_plan`
26
+ Generates a 90-day (12-week) personalized learning plan.
27
+
28
+ **Input:**
29
+ - `profileId` (string)
30
+ - `focusSkills` (string[]) — ordered list of skills to focus on
31
+ - `hoursPerWeek` (number) — available hours per week
32
+
33
+ **Output:** 12-week plan with monthly themes, weekly concepts, curated resources, practice exercises, stretch goals, and daily micro-actions.
34
+
35
+ ---
36
+
37
+ ### `get_trending_skills`
38
+ Returns trending, emerging, and decaying skills for a role.
39
+
40
+ **Input:**
41
+ - `role` (string) — role or category
42
+
43
+ **Output:** Three lists: trending (learn now), emerging (get ahead), decaying (sunset).
44
+
45
+ ---
46
+
47
+ ### `weekly_checkin`
48
+ Records a weekly learning check-in and returns progress summary + encouragement.
49
+
50
+ **Input:**
51
+ - `profileId` (string)
52
+ - `weekNumber` (number, 1-12)
53
+ - `completedItems` (string[]) — activities completed
54
+ - `notes` (string, optional)
55
+
56
+ **Output:** Saved confirmation, progress summary, encouragement, and next-step guidance.
57
+
58
+ ---
59
+
60
+ ### `get_resources`
61
+ Returns curated free learning resources for a specific skill.
62
+
63
+ **Input:**
64
+ - `skill` (string)
65
+ - `level` (optional: "beginner" | "intermediate" | "advanced")
66
+ - `maxHours` (optional: number)
67
+
68
+ **Output:** List of resources with title, URL, type, estimated hours, level, and free status.
69
+
70
+ ---
71
+
72
+ ### `compare_to_market`
73
+ Compares a professional's skills to current market demands.
74
+
75
+ **Input:**
76
+ - `profileId` (string)
77
+ - `role` (string)
78
+ - `currentSkills` (string[])
79
+ - `yearsExperience` (number)
80
+
81
+ **Output:** Alignment score (%), unique strengths, critical gaps, estimated salary impact.
82
+
83
+ ## Role Categories
84
+
85
+ Software Engineering, Product Management, Marketing, Finance/Accounting, Healthcare, Data Science/Analytics, Design, Leadership/Management, Law
86
+
87
+ ## Example Use Cases
88
+
89
+ 1. **Pre-promotion prep:** "I want to get promoted to staff engineer — what skills am I missing?"
90
+ 2. **Career pivot:** "I'm a marketer moving into product management — what should I learn first?"
91
+ 3. **Annual review:** "It's Q1 — what are the most important skills to develop this year for my role?"
92
+ 4. **Salary negotiation research:** "How well do my skills align with market demand for a senior data scientist?"
93
+ 5. **Team learning:** "What are the top trending skills my engineering team should focus on?"
94
+
95
+ ## Storage
96
+
97
+ All data is stored locally at `~/.skill-radar/data.db` (SQLite). No data is sent to external services.
@@ -0,0 +1,12 @@
1
+ export interface LearningResource {
2
+ skill: string;
3
+ title: string;
4
+ type: 'video' | 'article' | 'course' | 'book' | 'project';
5
+ url: string;
6
+ estimatedHours: number;
7
+ level: 'beginner' | 'intermediate' | 'advanced';
8
+ free: boolean;
9
+ }
10
+ export declare const LEARNING_RESOURCES: LearningResource[];
11
+ export declare function getResourcesForSkill(skill: string, level?: string, maxHours?: number): LearningResource[];
12
+ //# sourceMappingURL=resources.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"resources.d.ts","sourceRoot":"","sources":["../../src/data/resources.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,gBAAgB;IAC/B,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,OAAO,GAAG,SAAS,GAAG,QAAQ,GAAG,MAAM,GAAG,SAAS,CAAC;IAC1D,GAAG,EAAE,MAAM,CAAC;IACZ,cAAc,EAAE,MAAM,CAAC;IACvB,KAAK,EAAE,UAAU,GAAG,cAAc,GAAG,UAAU,CAAC;IAChD,IAAI,EAAE,OAAO,CAAC;CACf;AAED,eAAO,MAAM,kBAAkB,EAAE,gBAAgB,EA6qBhD,CAAC;AAEF,wBAAgB,oBAAoB,CAClC,KAAK,EAAE,MAAM,EACb,KAAK,CAAC,EAAE,MAAM,EACd,QAAQ,CAAC,EAAE,MAAM,GAChB,gBAAgB,EAAE,CAyBpB"}