@skillsmith/cli 0.8.1 → 0.8.3
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 +12 -0
- package/README.md +5 -6
- package/dist/.skillsmith-dist-hash +1 -1
- package/dist/.tsbuildinfo +1 -1
- package/dist/cli.js +1549 -1191
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,18 @@ All notable changes to `@skillsmith/cli` are documented here.
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## v0.8.3
|
|
8
|
+
|
|
9
|
+
- **Chore**: bump the opentelemetry group across 1 directory with 8 updates (#1862)
|
|
10
|
+
- **Fix**: `utils/license-validation.ts`'s `tryLoadEnterpriseValidator()` now dynamically imports the enterprise package under its real name, `@smith-horn/enterprise` — previously imported `@skillsmith/enterprise`, a name that has never existed, so license validation silently failed for every Enterprise-tier install regardless of correct setup (SMI-5738)
|
|
11
|
+
- **Fix**: `getSkillsFromDirectory()` now discovers an individually symlinked skill directory (`ln -s ~/.claude/skills/foo ~/.cursor/skills/foo`) — previously `entry.isDirectory()` alone silently skipped it, since `readdir(..., { withFileTypes: true })` reports a symlinked directory as a symlink, not a directory. `getInstalledSkillsPerHarness()` also no longer collapses a symlinked skill alias across harnesses into a single row — realpath is now used only to memoize the expensive `readSkillMd()` parse and to collapse multiple aliases WITHIN one harness's own directory, while a row is still returned for every harness that observes the skill, matching the function's own "two distinct rows" docstring contract (SMI-5717) (GH #1912)
|
|
12
|
+
- **Change**: `compliance_reports`' displayed tier requirement expanded from Enterprise-only to Team + Enterprise (SMI-3140)
|
|
13
|
+
- **Feature**: per-client MCP config snippet for Grok Build (`~/.grok/config.toml`) added to `CLIENT_SNIPPETS`/`SNIPPET_DISPLAY_ORDER` in `templates/mcp-server.template.snippets.ts`, matching the new `grok` harness added to `@skillsmith/core`'s inventory scanner (SMI-5697)
|
|
14
|
+
|
|
15
|
+
## v0.8.2
|
|
16
|
+
|
|
17
|
+
- **Cadence**: Mechanical cadence alignment (no changes since v0.8.1).
|
|
18
|
+
|
|
7
19
|
## v0.8.1
|
|
8
20
|
|
|
9
21
|
- **Cadence**: Mechanical cadence alignment (no changes since v0.8.0).
|
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ Command-line interface for Skillsmith - discover, manage, and author agent skill
|
|
|
6
6
|
|
|
7
7
|
## Contents
|
|
8
8
|
|
|
9
|
-
- [What's New](#whats-new-in-
|
|
9
|
+
- [What's New](#whats-new-in-v082)
|
|
10
10
|
- [Installation](#installation)
|
|
11
11
|
- [Commands](#commands)
|
|
12
12
|
- [inventory](#inventory)
|
|
@@ -14,12 +14,11 @@ Command-line interface for Skillsmith - discover, manage, and author agent skill
|
|
|
14
14
|
- [Examples](#examples)
|
|
15
15
|
- [Privacy & Data Handling](#privacy--data-handling)
|
|
16
16
|
|
|
17
|
-
## What's New in v0.8.
|
|
17
|
+
## What's New in v0.8.2
|
|
18
18
|
|
|
19
|
-
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
- **Remote-default search + provenance**: `search` now defaults to the remote registry with safety filters, and install provenance is reported as Local / source-identified / Pending.
|
|
19
|
+
- **Corrected tier quota display**: Community/Individual/Team quota labels shown by the CLI are reduced 10x (100/mo, 1,000/mo, 10,000/mo respectively) to match actual enforcement — display-only; enforcement lives in `@skillsmith/mcp-server`.
|
|
20
|
+
|
|
21
|
+
> v0.8.2 is a scheduled cadence release with no functional changes beyond v0.8.1.
|
|
23
22
|
|
|
24
23
|
See [CHANGELOG.md](./CHANGELOG.md) for previous releases.
|
|
25
24
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
fe5fa10069e9acee3fbaa2c4db6a73aea7b2cb1a
|