@skillsmith/cli 0.8.5 → 0.8.7

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,48 @@ All notable changes to `@skillsmith/cli` are documented here.
4
4
 
5
5
  ## [Unreleased]
6
6
 
7
+ ## v0.8.7
8
+
9
+ - **Fix**: Cursor UAT follow-up — website onboarding, CLI/MCP parity, hooks schema (#2375)
10
+ - **Chore**: removed 3 confirmed-dead exports flagged by the new `code-health-auditor` skill's first real dogfooding run (SMI-6023) — `displayQuotaProgressBar`/`displayQuotaWarning` (`utils/license.ts`, superseded by inline rendering in `displayLicenseStatus`) and `getTrustTierColor` (`commands/search-formatters.ts`, a one-line wrapper — real call sites already index `TRUST_TIER_COLORS` directly), plus the now-dead re-export of `getTrustTierColor` from `commands/search.ts`. No public API surface change — `packages/cli` ships as a bin-only bundle with no `exports`/`main`/`types` field. 3 other candidates the scan flagged were verified as false positives (same-file callers the tool's coverage check missed) and kept.
11
+ - **Fix**: `list --client cursor`'s footer no longer hardcodes `~/.claude/skills` — it now names the resolved client's actual install path, via `manage.action.ts` reusing the existing `getInstallPath(client)` pattern (SMI-5893 Wave 7, GH#2368)
12
+ - **Fix**: `recommend`'s footer no longer hardcodes `~/.claude/skills` either — since `recommend`'s auto-detection scans across every installed client rather than one, the footer now describes multi-harness detection accurately instead of naming one client path. `recommend --context` also dedupes duplicate rows by `skill.id` (client-side mitigation; the schema-level root cause stays with the separately-tracked SMI-5898) (SMI-5893 Wave 7, GH#2368)
13
+ - **Feature**: `skillsmith setup` (`install-skill.ts`) gains `--client <id>` support, installing to the resolved client's path instead of always `~/.claude/skills/skillsmith/` (SMI-5893 Wave 7, GH#2368)
14
+ - **Fix**: `--quiet`/`SKILLSMITH_QUIET` is now wired once via a commander `preAction` hook at the CLI root instead of being duplicated per-command, and reuses the shared `isQuietModeEnabled()` check instead of a narrower literal-`'true'` comparison. Fixes a real bug where the new root `--quiet` flag was silently shadowing `install`/`registry-install`/`merge`'s own pre-existing local `--quiet` flags (SMI-5893 Wave 7, GH#2368)
15
+
16
+ ## v0.8.6
17
+
18
+ - **Fix**: Harden manifest concurrency (uninstall lock, temp-file races) (#2331)
19
+ - **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)
20
+ - **Fix**: `saveManifest()` (`utils/manifest.ts`) computed its temp filename from just the process
21
+ id, so two concurrent saves in the same process could collide on the same temp path and corrupt
22
+ one of them. The temp filename now includes a random UUID suffix, with best-effort cleanup of
23
+ only that invocation's own temp file on failure (mirrors the same fix in
24
+ `@skillsmith/core`'s `ManifestManager.save()`) (SMI-6007).
25
+ - **Changed**: bumps `@skillsmith/core` for the SMI-5929 compatibility-ranking change —
26
+ `SearchResponse.compatibilityHidden` is renamed to `compatibilityDeprioritized` and
27
+ `SearchOptions` gains an optional `compatibility` field. `skillsmith search` does not currently
28
+ expose a compatibility filter of its own (no `--compatible-with` flag, and `searchRemoteOrLocal`
29
+ never read the old field), so this has no CLI-visible behavior change today — the entry is here
30
+ because both renamed/added members are part of `@skillsmith/core`'s public type surface this
31
+ package depends on (SMI-5929)
32
+ - **Fix**: `skillsmith author subagent`/`transform` now write companion-subagent files to the
33
+ target client's own agent directory (via `@skillsmith/core`'s new `COMPANION_AGENT_TARGETS`)
34
+ instead of always hardcoding `~/.claude/agents/` — fixes generated subagents landing in the
35
+ wrong client's directory for `--client cursor`/`copilot`/etc (GH #2161)
36
+ - **Fix**: `recommend --context`'s keyword extraction (`commands/recommend.ts`) no longer silently
37
+ drops real short technical terms ("git", "ci", "aws", "sql", "k8s") via a bare
38
+ `.filter((w) => w.length > 3)` threshold — a context consisting only of such terms previously
39
+ derived an empty stack and tripped the SMI-5896 empty-stack guard even though usable context had
40
+ been supplied. Now uses the shared `extractContextWords()` (`@skillsmith/core`) also adopted by
41
+ the MCP server's `skill_recommend`, so the two can't independently drift on this again (SMI-5986)
42
+ - **Fix**: `license-types.ts`'s `TIER_FEATURES` was silently missing `version_tracking`
43
+ (individual/team/enterprise) and `skill_security_audit` (team/enterprise) versus the canonical
44
+ `@smith-horn/enterprise` package's own feature membership — this file has no compiler backstop
45
+ (`Record<LicenseTier, string[]>`, not `Record<FeatureFlag, ...>`), so the drift went undetected
46
+ until a new regression test comparing the two caught it. Also adds the new `registry_approval`
47
+ flag to the `enterprise` tier (SMI-5949 Wave 2)
48
+
7
49
  ## v0.8.5
8
50
 
9
51
  - **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-v087)
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.7
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
+ bbbc02d0207042137ce44e87cadc0140a1182fb9