@skillsmith/cli 0.8.9 → 0.8.10
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/CHANGELOG.md +4 -0
- package/README.md +2 -2
- package/dist/.skillsmith-dist-hash +1 -1
- package/dist/.tsbuildinfo +1 -1
- package/dist/cli.js +436 -74
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,10 @@ All notable changes to `@skillsmith/cli` are documented here.
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## v0.8.10
|
|
8
|
+
|
|
9
|
+
- **Fixed**: SMI-6472 -- `src/utils/skill-name.ts`'s re-export of `VALID_SKILL_NAME_RE`/`validateSkillName` now imports from the narrow `@skillsmith/core/utils/skill-name` subpath instead of the `@skillsmith/core` package barrel. The barrel import transitively pulled in `skill-installation.io.ts` -> `safe-fs.ts`'s `fs/promises` needs (`open`/`lstat`/`constants`), breaking `tests/create.test.ts`'s narrow `fs/promises` mock (`mkdir`/`writeFile`/`stat` only) with `[vitest] No "constants" export is defined on the "fs/promises" mock`. No behavior change — only the import path.
|
|
10
|
+
|
|
7
11
|
## v0.8.9
|
|
8
12
|
|
|
9
13
|
- **Feature**: SMI-6343 Wave 3 -- tamper-check classification (#2710)
|
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@ Part of Skillsmith: a registry for sharing, scanning, and tracking agent skills
|
|
|
8
8
|
|
|
9
9
|
## Contents
|
|
10
10
|
|
|
11
|
-
- [What's New](#whats-new-in-
|
|
11
|
+
- [What's New](#whats-new-in-v0810)
|
|
12
12
|
- [Installation](#installation)
|
|
13
13
|
- [Commands](#commands)
|
|
14
14
|
- [inventory](#inventory)
|
|
@@ -16,7 +16,7 @@ Part of Skillsmith: a registry for sharing, scanning, and tracking agent skills
|
|
|
16
16
|
- [Examples](#examples)
|
|
17
17
|
- [Privacy & Data Handling](#privacy--data-handling)
|
|
18
18
|
|
|
19
|
-
## What's New in v0.8.
|
|
19
|
+
## What's New in v0.8.10
|
|
20
20
|
|
|
21
21
|
- **Multi-client targeting fixed across the board**: `install`, `list`, `remove`, `update`, `sync`, and `search -i`'s install action now all honor `SKILLSMITH_CLIENT`/`--client` consistently — previously several of these silently acted on the Claude Code directory regardless of the flag or env var.
|
|
22
22
|
- **`update` no longer fails after a fresh install**: now resolves the installed skill's registry source from the manifest `install` already writes, instead of a dead-code path that could never find it.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
5992a78b8d7fefcc5366d7b1a8c3f83c07ad056e
|