@skillsmith/cli 0.3.5 → 0.3.6

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.
@@ -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.2.0"
4
+ version: "0.1.0"
5
5
  category: "productivity"
6
6
  tags:
7
7
  - skills
@@ -9,54 +9,15 @@ tags:
9
9
  - registry
10
10
  - mcp
11
11
  - installation
12
- - agents
13
- - optimization
14
12
  author: "Skillsmith"
15
13
  allowed-tools:
16
14
  - mcp__skillsmith
17
15
  - Bash
18
- - Task
19
16
  ---
20
17
 
21
18
  # Skillsmith Skill
22
19
 
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"
20
+ Discover, install, compare, and manage Claude Code skills through natural language.
60
21
 
61
22
  ## Trigger Phrases
62
23
 
@@ -70,9 +31,6 @@ What would you like to do? Some examples:
70
31
  - "skill details", "get skill"
71
32
  - "browse skills", "explore skills"
72
33
  - "high quality skills", "verified skills"
73
- - "generate subagent", "create agent"
74
- - "transform skill", "upgrade skill"
75
- - "batch transform", "parallel agents"
76
34
 
77
35
  ## Slash Commands
78
36
 
@@ -87,46 +45,6 @@ What would you like to do? Some examples:
87
45
  | `/skillsmith uninstall` | Remove an installed skill | `/skillsmith uninstall jest-helper` |
88
46
  | `/skillsmith get` | Get detailed skill information | `/skillsmith get community/jest-helper` |
89
47
 
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
-
130
48
  ## MCP Tool Delegation
131
49
 
132
50
  This skill delegates to the `mcp__skillsmith` MCP server for all operations. When the user requests skill-related actions, use the appropriate MCP tool.