@skillsmith/cli 0.3.3 → 0.3.5

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/README.md CHANGED
@@ -24,7 +24,7 @@ Command-line interface for Skillsmith - discover, manage, and author Claude Code
24
24
  - **Skill Transform**: Upgrade existing skills with subagent configuration
25
25
  - **Dynamic Version**: Version now reads from package.json automatically
26
26
  - **Tool Detection**: Automatic analysis of required tools from skill content
27
- - **Live Skills**: Search and install from 9,717+ real skills
27
+ - **Live Skills**: Search and install from 14,000+ real skills
28
28
  - **Faster Search**: Full-text search with quality ranking
29
29
  - **Privacy First**: Opt-out telemetry, no PII collected
30
30
 
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: "skillsmith"
3
3
  description: "Discover, install, compare, and manage Claude Code skills. Search the registry, get recommendations, validate skill quality, and manage your installed skills."
4
- version: "0.1.0"
4
+ version: "0.2.0"
5
5
  category: "productivity"
6
6
  tags:
7
7
  - skills
@@ -9,15 +9,54 @@ tags:
9
9
  - registry
10
10
  - mcp
11
11
  - installation
12
+ - agents
13
+ - optimization
12
14
  author: "Skillsmith"
13
15
  allowed-tools:
14
16
  - mcp__skillsmith
15
17
  - Bash
18
+ - Task
16
19
  ---
17
20
 
18
21
  # Skillsmith Skill
19
22
 
20
- Discover, install, compare, and manage Claude Code skills through natural language.
23
+ Skillsmith is loaded. I can help you with:
24
+
25
+ ## Top Features
26
+
27
+ **Parallel Agent Spawning**
28
+ - Generate companion subagents for any skill with `author subagent`
29
+ - Transform existing skills into agent-ready workflows with `author transform`
30
+ - Batch process multiple skills for team-wide agent deployment
31
+
32
+ **Skill Optimization**
33
+ - A/B test original vs optimized skills (Team+ tier)
34
+ - Benchmark skill performance with controlled experiments
35
+ - Generate detailed optimization analysis reports
36
+
37
+ ## Discovery
38
+ - Search 14,000+ skills by keyword, category, or trust tier
39
+ - Get stack-aware recommendations based on your project context
40
+ - Compare multiple skills side-by-side with quality scores
41
+
42
+ ## Management
43
+ - Install skills to `~/.claude/skills/` with security scanning
44
+ - Uninstall skills you no longer need
45
+ - Validate skill structure before publishing
46
+
47
+ ## Security
48
+ - All skills are scanned before installation
49
+ - Trust tiers indicate verification level (Official → Verified → Community → Unverified)
50
+ - Typosquatting and blocklist protection
51
+
52
+ What would you like to do? Some examples:
53
+ - "Search for testing skills"
54
+ - "Find verified skills for git"
55
+ - "Recommend skills for my React project"
56
+ - "Install the commit skill"
57
+ - "Compare jest-helper and vitest-helper"
58
+ - "Generate subagent for my skill"
59
+ - "Transform my skills to support agents"
21
60
 
22
61
  ## Trigger Phrases
23
62
 
@@ -31,6 +70,9 @@ Discover, install, compare, and manage Claude Code skills through natural langua
31
70
  - "skill details", "get skill"
32
71
  - "browse skills", "explore skills"
33
72
  - "high quality skills", "verified skills"
73
+ - "generate subagent", "create agent"
74
+ - "transform skill", "upgrade skill"
75
+ - "batch transform", "parallel agents"
34
76
 
35
77
  ## Slash Commands
36
78
 
@@ -45,6 +87,46 @@ Discover, install, compare, and manage Claude Code skills through natural langua
45
87
  | `/skillsmith uninstall` | Remove an installed skill | `/skillsmith uninstall jest-helper` |
46
88
  | `/skillsmith get` | Get detailed skill information | `/skillsmith get community/jest-helper` |
47
89
 
90
+ ## Agent & Optimization Commands
91
+
92
+ | Command | Description |
93
+ |---------|-------------|
94
+ | `author subagent [path]` | Generate companion subagent for a skill |
95
+ | `author transform [path]` | Upgrade existing skill with subagent configuration |
96
+ | `author transform --batch` | Batch process multiple skills |
97
+ | `ab-test --skill <name>` | Run A/B testing experiments (Team+ tier) |
98
+
99
+ ### Subagent Generation
100
+
101
+ Generate a parallel agent for any skill:
102
+
103
+ ```bash
104
+ skillsmith author subagent ./my-skill
105
+ --tools "Read,Write,Bash" # Override detected tools
106
+ --model sonnet # Model: sonnet|opus|haiku
107
+ --force # Overwrite existing subagent
108
+ ```
109
+
110
+ ### Batch Transform
111
+
112
+ Transform all your skills to support parallel agents:
113
+
114
+ ```bash
115
+ # Transform all skills in ~/.claude/skills/
116
+ skillsmith author transform ~/.claude/skills --batch
117
+
118
+ # Transform specific skills
119
+ skillsmith author transform skill1,skill2,skill3 --batch --force
120
+ ```
121
+
122
+ ### A/B Testing (Team+ Tier)
123
+
124
+ Compare original vs optimized skill performance:
125
+
126
+ ```bash
127
+ skillsmith ab-test --skill governance --iterations 20
128
+ ```
129
+
48
130
  ## MCP Tool Delegation
49
131
 
50
132
  This skill delegates to the `mcp__skillsmith` MCP server for all operations. When the user requests skill-related actions, use the appropriate MCP tool.