@skillsmith/cli 0.8.5 → 0.8.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.
package/CHANGELOG.md CHANGED
@@ -4,6 +4,39 @@ All notable changes to `@skillsmith/cli` are documented here.
4
4
 
5
5
  ## [Unreleased]
6
6
 
7
+ ## v0.8.6
8
+
9
+ - **Fix**: Harden manifest concurrency (uninstall lock, temp-file races) (#2331)
10
+ - **Feature**: `antigravity` (Google Antigravity) is now a supported `--client` value across install/list/remove/update/sync and the generated MCP-server config snippet (`skillsmith install --client antigravity` / `SKILLSMITH_CLIENT=antigravity`) — companion-subagent output uses Antigravity's own directory-package convention (`.agents/agents/<name>/agent.md`), not the flat file every other client gets. `VALID_CLIENT_HINT` also picks up `grok`, which was a pre-existing gap (SMI-5697 added the client but never updated this help text) (SMI-5982)
11
+ - **Fix**: `saveManifest()` (`utils/manifest.ts`) computed its temp filename from just the process
12
+ id, so two concurrent saves in the same process could collide on the same temp path and corrupt
13
+ one of them. The temp filename now includes a random UUID suffix, with best-effort cleanup of
14
+ only that invocation's own temp file on failure (mirrors the same fix in
15
+ `@skillsmith/core`'s `ManifestManager.save()`) (SMI-6007).
16
+ - **Changed**: bumps `@skillsmith/core` for the SMI-5929 compatibility-ranking change —
17
+ `SearchResponse.compatibilityHidden` is renamed to `compatibilityDeprioritized` and
18
+ `SearchOptions` gains an optional `compatibility` field. `skillsmith search` does not currently
19
+ expose a compatibility filter of its own (no `--compatible-with` flag, and `searchRemoteOrLocal`
20
+ never read the old field), so this has no CLI-visible behavior change today — the entry is here
21
+ because both renamed/added members are part of `@skillsmith/core`'s public type surface this
22
+ package depends on (SMI-5929)
23
+ - **Fix**: `skillsmith author subagent`/`transform` now write companion-subagent files to the
24
+ target client's own agent directory (via `@skillsmith/core`'s new `COMPANION_AGENT_TARGETS`)
25
+ instead of always hardcoding `~/.claude/agents/` — fixes generated subagents landing in the
26
+ wrong client's directory for `--client cursor`/`copilot`/etc (GH #2161)
27
+ - **Fix**: `recommend --context`'s keyword extraction (`commands/recommend.ts`) no longer silently
28
+ drops real short technical terms ("git", "ci", "aws", "sql", "k8s") via a bare
29
+ `.filter((w) => w.length > 3)` threshold — a context consisting only of such terms previously
30
+ derived an empty stack and tripped the SMI-5896 empty-stack guard even though usable context had
31
+ been supplied. Now uses the shared `extractContextWords()` (`@skillsmith/core`) also adopted by
32
+ the MCP server's `skill_recommend`, so the two can't independently drift on this again (SMI-5986)
33
+ - **Fix**: `license-types.ts`'s `TIER_FEATURES` was silently missing `version_tracking`
34
+ (individual/team/enterprise) and `skill_security_audit` (team/enterprise) versus the canonical
35
+ `@smith-horn/enterprise` package's own feature membership — this file has no compiler backstop
36
+ (`Record<LicenseTier, string[]>`, not `Record<FeatureFlag, ...>`), so the drift went undetected
37
+ until a new regression test comparing the two caught it. Also adds the new `registry_approval`
38
+ flag to the `enterprise` tier (SMI-5949 Wave 2)
39
+
7
40
  ## v0.8.5
8
41
 
9
42
  - **Cadence**: Mechanical cadence alignment (no changes since v0.8.4).
package/README.md CHANGED
@@ -8,7 +8,7 @@ Part of Skillsmith: a lifecycle layer for agent skills across teams.
8
8
 
9
9
  ## Contents
10
10
 
11
- - [What's New](#whats-new-in-v085)
11
+ - [What's New](#whats-new-in-v086)
12
12
  - [Installation](#installation)
13
13
  - [Commands](#commands)
14
14
  - [inventory](#inventory)
@@ -16,7 +16,7 @@ Part of Skillsmith: a lifecycle layer for agent skills across teams.
16
16
  - [Examples](#examples)
17
17
  - [Privacy & Data Handling](#privacy--data-handling)
18
18
 
19
- ## What's New in v0.8.5
19
+ ## What's New in v0.8.6
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
- 0bf4163ad3408fd44f049b7776596b2ffd97cd3d
1
+ 7b1b6c30831fc27d4cfa421514f8939c6f8515b7