@skillsmith/mcp-server 0.3.5 → 0.3.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skillsmith/mcp-server",
3
- "version": "0.3.5",
3
+ "version": "0.3.7",
4
4
  "description": "MCP server for Skillsmith skill discovery",
5
5
  "type": "module",
6
6
  "main": "./dist/src/index.js",
@@ -5,7 +5,43 @@ description: "Discover, install, compare, and manage Claude Code skills. Use whe
5
5
 
6
6
  # Skillsmith
7
7
 
8
- Skillsmith is your skill discovery and management system for Claude Code. It provides access to 500+ community skills with trust verification, quality scoring, and security scanning.
8
+ Skillsmith is loaded. I can help you with:
9
+
10
+ ## Top Features
11
+
12
+ **Parallel Agent Spawning**
13
+ - Generate companion subagents for any skill with `author subagent`
14
+ - Transform existing skills into agent-ready workflows with `author transform`
15
+ - Batch process multiple skills for team-wide agent deployment
16
+
17
+ **Skill Optimization**
18
+ - A/B test original vs optimized skills (Team+ tier)
19
+ - Benchmark skill performance with controlled experiments
20
+ - Generate detailed optimization analysis reports
21
+
22
+ ## Discovery
23
+ - Search 14,000+ skills by keyword, category, or trust tier
24
+ - Get stack-aware recommendations based on your project context
25
+ - Compare multiple skills side-by-side with quality scores
26
+
27
+ ## Management
28
+ - Install skills to `~/.claude/skills/` with security scanning
29
+ - Uninstall skills you no longer need
30
+ - Validate skill structure before publishing
31
+
32
+ ## Security
33
+ - All skills are scanned before installation
34
+ - Trust tiers indicate verification level (Official → Verified → Community → Unverified)
35
+ - Typosquatting and blocklist protection
36
+
37
+ What would you like to do? Some examples:
38
+ - "Search for testing skills"
39
+ - "Find verified skills for git"
40
+ - "Recommend skills for my React project"
41
+ - "Install the commit skill"
42
+ - "Compare jest-helper and vitest-helper"
43
+ - "Generate subagent for my skill"
44
+ - "Transform my skills to support agents"
9
45
 
10
46
  ## Quick Reference: MCP Tools
11
47
 
@@ -18,7 +54,34 @@ Skillsmith is your skill discovery and management system for Claude Code. It pro
18
54
  | `skill_recommend` | Getting contextual recommendations | "Recommend skills for my React project" |
19
55
  | `skill_validate` | Checking skill structure before manual install | "Validate this skill" |
20
56
  | `skill_compare` | Comparing 2-5 skills side-by-side | "Compare jest-helper and vitest-helper" |
21
- | `skill_suggest` | Getting suggestions based on current work | Automatic based on context |
57
+
58
+ ## CLI Commands for Agents & Optimization
59
+
60
+ | Command | Description |
61
+ |---------|-------------|
62
+ | `author subagent [path]` | Generate companion subagent for a skill |
63
+ | `author transform [path]` | Upgrade existing skill with subagent configuration |
64
+ | `author transform --batch` | Batch process multiple skills |
65
+ | `ab-test --skill <name>` | Run A/B testing experiments (Team+ tier) |
66
+
67
+ ### Subagent Generation Options
68
+
69
+ ```bash
70
+ skillsmith author subagent ./my-skill
71
+ --tools "Read,Write,Bash" # Override detected tools
72
+ --model sonnet # Model: sonnet|opus|haiku
73
+ --force # Overwrite existing subagent
74
+ ```
75
+
76
+ ### Batch Transform Example
77
+
78
+ ```bash
79
+ # Transform all skills in ~/.claude/skills/
80
+ skillsmith author transform ~/.claude/skills --batch
81
+
82
+ # Transform specific skills
83
+ skillsmith author transform skill1,skill2,skill3 --batch --force
84
+ ```
22
85
 
23
86
  ## Trust Tiers
24
87