@skillsmith/cli 0.7.3 → 0.8.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/CHANGELOG.md +10 -0
- package/README.md +43 -0
- package/dist/.tsbuildinfo +1 -1
- package/dist/cli.js +2834 -968
- package/package.json +6 -5
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,16 @@ All notable changes to `@skillsmith/cli` are documented here.
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## v0.8.0
|
|
8
|
+
|
|
9
|
+
- **Feature**: per-user inventory purge, hard-delete (SMI-5510, R0 Wave 1a) (#1684)
|
|
10
|
+
- **Fix**: 0.7.4 security hotfix — interactive-search quarantine bypass (SMI-5447) (#1656)
|
|
11
|
+
- **Feature**: `sklx agent install` / `uninstall` command group — installs portable agent pack (SKILL.md + shims + hooks) to detected harnesses with per-harness MCP registration (SMI-5456)
|
|
12
|
+
|
|
13
|
+
## v0.7.4
|
|
14
|
+
|
|
15
|
+
- **Security**: fix an interactive-search install path that bypassed the quarantine gate — `skillsmith search -i` → "Install this skill" no longer installs a quarantined skill (consolidated onto the quarantine-aware registry lookup shared with `install`) (SMI-5447).
|
|
16
|
+
|
|
7
17
|
## v0.7.3
|
|
8
18
|
|
|
9
19
|
- **Feature**: 0.7.3 — esbuild bundle + remote-default search + skills-search safety filters (SMI-5427) (#1651)
|
package/README.md
CHANGED
|
@@ -9,6 +9,7 @@ Command-line interface for Skillsmith - discover, manage, and author agent skill
|
|
|
9
9
|
- [What's New](#whats-new-in-v050)
|
|
10
10
|
- [Installation](#installation)
|
|
11
11
|
- [Commands](#commands)
|
|
12
|
+
- [inventory](#inventory)
|
|
12
13
|
- [Configuration](#configuration)
|
|
13
14
|
- [Examples](#examples)
|
|
14
15
|
- [Privacy & Data Handling](#privacy--data-handling)
|
|
@@ -142,6 +143,48 @@ skillsmith update
|
|
|
142
143
|
skillsmith update author/skill-name
|
|
143
144
|
```
|
|
144
145
|
|
|
146
|
+
### inventory
|
|
147
|
+
|
|
148
|
+
Cross-machine skill inventory for viewing which agent skills are installed across your machines and harnesses. Requires `skillsmith login` and opt-in via the [Cross-machine skill inventory toggle](https://www.skillsmith.app/account/telemetry) at skillsmith.app/account/telemetry (off by default). Once enabled, view your inventory at [skillsmith.app/account/skills](https://www.skillsmith.app/account/skills).
|
|
149
|
+
|
|
150
|
+
**Privacy:** Only skill IDs, versions, content hashes, declared SKILL.md front-matter fields (author, license, repository), and device platform metadata are uploaded. File contents, paths, and your raw hostname are never transmitted. Set `SKILLSMITH_INVENTORY_DISABLE=1` to hard-disable.
|
|
151
|
+
|
|
152
|
+
#### inventory push
|
|
153
|
+
|
|
154
|
+
Push this device's installed-skill snapshot to your Skillsmith account.
|
|
155
|
+
|
|
156
|
+
```bash
|
|
157
|
+
skillsmith inventory push
|
|
158
|
+
```
|
|
159
|
+
|
|
160
|
+
Requires:
|
|
161
|
+
- Active authentication via `skillsmith login`
|
|
162
|
+
- "Cross-machine skill inventory" toggle enabled at skillsmith.app/account/telemetry
|
|
163
|
+
|
|
164
|
+
#### inventory status
|
|
165
|
+
|
|
166
|
+
Show local device inventory status (read-only, no network call).
|
|
167
|
+
|
|
168
|
+
```bash
|
|
169
|
+
skillsmith inventory status
|
|
170
|
+
|
|
171
|
+
# Verbose output
|
|
172
|
+
skillsmith inventory status --verbose
|
|
173
|
+
```
|
|
174
|
+
|
|
175
|
+
**Options:**
|
|
176
|
+
- `--verbose` - List the individual skill IDs found under each harness
|
|
177
|
+
|
|
178
|
+
#### inventory forget-device
|
|
179
|
+
|
|
180
|
+
Clear the local device registration; the next push creates a fresh device ID and registers as a new machine.
|
|
181
|
+
|
|
182
|
+
```bash
|
|
183
|
+
skillsmith inventory forget-device
|
|
184
|
+
```
|
|
185
|
+
|
|
186
|
+
See [Cross-machine skill inventory](https://www.skillsmith.app/docs/inventory) for details.
|
|
187
|
+
|
|
145
188
|
### init
|
|
146
189
|
|
|
147
190
|
Initialize a new skill project.
|