@skillsmith/cli 0.2.7 → 0.3.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/README.md +3 -1
- package/dist/.tsbuildinfo +1 -1
- package/dist/src/commands/author.d.ts +16 -2
- package/dist/src/commands/author.d.ts.map +1 -1
- package/dist/src/commands/author.js +96 -51
- package/dist/src/commands/author.js.map +1 -1
- package/dist/src/commands/index.d.ts +1 -0
- package/dist/src/commands/index.d.ts.map +1 -1
- package/dist/src/commands/index.js +4 -0
- package/dist/src/commands/index.js.map +1 -1
- package/dist/src/commands/sync.d.ts +21 -0
- package/dist/src/commands/sync.d.ts.map +1 -0
- package/dist/src/commands/sync.js +413 -0
- package/dist/src/commands/sync.js.map +1 -0
- package/dist/src/index.d.ts +3 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +9 -2
- package/dist/src/index.js.map +1 -1
- package/dist/tests/author.test.js +85 -0
- package/dist/tests/author.test.js.map +1 -1
- package/dist/tests/e2e/author.e2e.test.js +341 -21
- package/dist/tests/e2e/author.e2e.test.js.map +1 -1
- package/dist/tests/e2e/utils/index.d.ts +4 -0
- package/dist/tests/e2e/utils/index.d.ts.map +1 -1
- package/dist/tests/e2e/utils/index.js +4 -0
- package/dist/tests/e2e/utils/index.js.map +1 -1
- package/dist/tests/e2e/utils/mock-github.d.ts +23 -0
- package/dist/tests/e2e/utils/mock-github.d.ts.map +1 -0
- package/dist/tests/e2e/utils/mock-github.js +60 -0
- package/dist/tests/e2e/utils/mock-github.js.map +1 -0
- package/dist/tests/e2e/utils/mock-prompts.d.ts +19 -0
- package/dist/tests/e2e/utils/mock-prompts.d.ts.map +1 -0
- package/dist/tests/e2e/utils/mock-prompts.js +48 -0
- package/dist/tests/e2e/utils/mock-prompts.js.map +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,12 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
Command-line interface for Skillsmith - discover, manage, and author Claude Code skills.
|
|
4
4
|
|
|
5
|
-
## What's New in v0.2.
|
|
5
|
+
## What's New in v0.2.7
|
|
6
6
|
|
|
7
7
|
- **MCP Server Scaffolding**: Generate TypeScript MCP servers with `author mcp-init`
|
|
8
|
+
- **Custom Tool Generation**: Auto-generates stub implementations for specified tools
|
|
8
9
|
- **Decision Helper Integration**: Seamless flow from evaluation to scaffolding
|
|
9
10
|
- **Subagent Generation**: Generate companion specialist agents for parallel execution (37-97% token savings)
|
|
10
11
|
- **Skill Transform**: Upgrade existing skills with subagent configuration
|
|
12
|
+
- **Dynamic Version**: Version now reads from package.json automatically
|
|
11
13
|
- **Tool Detection**: Automatic analysis of required tools from skill content
|
|
12
14
|
- **Live Skills**: Search and install from 9,717+ real skills
|
|
13
15
|
- **Faster Search**: Full-text search with quality ranking
|