@skillsmith/cli 0.8.0 → 0.8.2
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 +9 -0
- package/README.md +80 -12
- package/dist/.skillsmith-dist-hash +1 -0
- package/dist/.tsbuildinfo +1 -1
- package/dist/cli.js +2918 -1213
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,15 @@ All notable changes to `@skillsmith/cli` are documented here.
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## v0.8.2
|
|
8
|
+
|
|
9
|
+
- **Cadence**: Mechanical cadence alignment (no changes since v0.8.1).
|
|
10
|
+
|
|
11
|
+
## v0.8.1
|
|
12
|
+
|
|
13
|
+
- **Cadence**: Mechanical cadence alignment (no changes since v0.8.0).
|
|
14
|
+
- **Fix**: reduced displayed tier quota constants 10x (SMI-5558) — Community was 1,000/mo now 100/mo, Individual was 10,000/mo now 1,000/mo, Team was 100,000/mo now 10,000/mo. Display-only; actual enforcement is in `@skillsmith/mcp-server`.
|
|
15
|
+
|
|
7
16
|
## v0.8.0
|
|
8
17
|
|
|
9
18
|
- **Feature**: per-user inventory purge, hard-delete (SMI-5510, R0 Wave 1a) (#1684)
|
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-v080)
|
|
10
10
|
- [Installation](#installation)
|
|
11
11
|
- [Commands](#commands)
|
|
12
12
|
- [inventory](#inventory)
|
|
@@ -14,12 +14,12 @@ 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.
|
|
17
|
+
## What's New in v0.8.0
|
|
18
18
|
|
|
19
|
-
- **`
|
|
20
|
-
- **
|
|
21
|
-
|
|
22
|
-
|
|
19
|
+
- **`sklx agent install` / `uninstall`**: New command group installs a portable agent pack (SKILL.md + shims + hooks) to detected harnesses with per-harness MCP registration.
|
|
20
|
+
- **Per-user inventory purge**: New hard-delete path for clearing a user's full skill inventory.
|
|
21
|
+
- **`sklx audit collisions` / `audit advisories`**: Namespace-collision and legacy security-advisory audit subcommands, plus `sklx config set audit_mode <preventative|power_user|governance|off>`.
|
|
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.
|
|
23
23
|
|
|
24
24
|
See [CHANGELOG.md](./CHANGELOG.md) for previous releases.
|
|
25
25
|
|
|
@@ -133,21 +133,34 @@ skillsmith remove author/skill-name --force
|
|
|
133
133
|
|
|
134
134
|
### update
|
|
135
135
|
|
|
136
|
-
Update installed skills.
|
|
136
|
+
Update installed skills. Requires an explicit selector — a skill name, several
|
|
137
|
+
names, or `--all` — bare `skillsmith update` with none of those prints usage
|
|
138
|
+
guidance instead of updating anything.
|
|
137
139
|
|
|
138
140
|
```bash
|
|
139
141
|
# Update all skills
|
|
140
|
-
skillsmith update
|
|
142
|
+
skillsmith update --all
|
|
143
|
+
|
|
144
|
+
# Update one skill
|
|
145
|
+
skillsmith update skill-name
|
|
141
146
|
|
|
142
|
-
# Update specific
|
|
143
|
-
skillsmith update
|
|
147
|
+
# Update a specific set of skills
|
|
148
|
+
skillsmith update skill-name another-skill
|
|
149
|
+
|
|
150
|
+
# Preview changes without applying them
|
|
151
|
+
skillsmith update skill-name --dry-run
|
|
144
152
|
```
|
|
145
153
|
|
|
154
|
+
**Options:**
|
|
155
|
+
- `-a, --all` - Update all installed skills
|
|
156
|
+
- `-n, --dry-run` - Show what would update without installing
|
|
157
|
+
- `-d, --db <path>` - Database file path
|
|
158
|
+
|
|
146
159
|
### inventory
|
|
147
160
|
|
|
148
161
|
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
162
|
|
|
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.
|
|
163
|
+
**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, or run `skillsmith inventory purge` to delete everything already stored.
|
|
151
164
|
|
|
152
165
|
#### inventory push
|
|
153
166
|
|
|
@@ -183,6 +196,18 @@ Clear the local device registration; the next push creates a fresh device ID and
|
|
|
183
196
|
skillsmith inventory forget-device
|
|
184
197
|
```
|
|
185
198
|
|
|
199
|
+
#### inventory purge
|
|
200
|
+
|
|
201
|
+
Permanently delete this account's entire stored cross-machine inventory from Skillsmith's servers (all devices and their skill rows). Irreversible. Prompts for confirmation unless `--yes` is passed.
|
|
202
|
+
|
|
203
|
+
```bash
|
|
204
|
+
skillsmith inventory purge
|
|
205
|
+
skillsmith inventory purge --yes
|
|
206
|
+
```
|
|
207
|
+
|
|
208
|
+
**Options:**
|
|
209
|
+
- `-y, --yes` - Skip the confirmation prompt (for scripts)
|
|
210
|
+
|
|
186
211
|
See [Cross-machine skill inventory](https://www.skillsmith.app/docs/inventory) for details.
|
|
187
212
|
|
|
188
213
|
### init
|
|
@@ -645,6 +670,49 @@ By default, the CLI uses `~/.skillsmith/skills.db`. Override with:
|
|
|
645
670
|
SKILLSMITH_DB_PATH=/custom/path/skills.db skillsmith search "testing"
|
|
646
671
|
```
|
|
647
672
|
|
|
673
|
+
### Error Logging
|
|
674
|
+
|
|
675
|
+
Structured error logs are automatically persisted to disk for debugging and diagnostics.
|
|
676
|
+
|
|
677
|
+
**Log Location:** `~/.skillsmith/logs/skillsmith-cli-<YYYY-MM-DD>.jsonl`
|
|
678
|
+
|
|
679
|
+
**Log Format:** One JSON-line record per error, with fields:
|
|
680
|
+
- `ts` — ISO 8601 timestamp
|
|
681
|
+
- `level` — log level (`debug`, `info`, `warn`, `error`)
|
|
682
|
+
- `surface` — invocation surface (`cli`, `mcp`, or `vscode`)
|
|
683
|
+
- `event` — short machine-readable category tag
|
|
684
|
+
- `msg` — human-readable message (redacted)
|
|
685
|
+
- `err` — normalized error object with `name`, `message`, and first 20 stack frames (all redacted)
|
|
686
|
+
- `correlationId` — trace ID linking related log entries and telemetry events
|
|
687
|
+
- `toolOrCommand` — CLI command name or MCP tool name
|
|
688
|
+
- `skillId` — skill ID when applicable
|
|
689
|
+
- `version` — package version
|
|
690
|
+
- `pid` — process ID
|
|
691
|
+
- `details` — additional structured context beyond the fields above, when provided (redacted)
|
|
692
|
+
|
|
693
|
+
**Redaction:** Secrets, tokens, API keys, passwords, connection strings, and PEM keys are automatically redacted before any record is written to disk — this applies to the message, error stack, and any structured context. Redaction happens synchronously at the call site, so disk logs are already safe to inspect or share.
|
|
694
|
+
|
|
695
|
+
**Rotation & Retention:** Log files rotate daily (new file per UTC calendar date) and are capped at ~10MB with `.1`, `.2` continuation files. Files older than 14 days are automatically deleted on startup (CLI or MCP server, whichever runs first).
|
|
696
|
+
|
|
697
|
+
**Control Logging:**
|
|
698
|
+
|
|
699
|
+
| Variable | Default | Description |
|
|
700
|
+
|----------|---------|-------------|
|
|
701
|
+
| `SKILLSMITH_ERROR_LOG_DISABLE` | unset (logging ON) | Set to `'1'` or `'true'` to disable error logging entirely |
|
|
702
|
+
| `SKILLSMITH_LOG_LEVEL` | `warn` | Filter log verbosity: `debug`, `info`, `warn`, or `error` |
|
|
703
|
+
|
|
704
|
+
Examples:
|
|
705
|
+
|
|
706
|
+
```bash
|
|
707
|
+
# Turn off error logging
|
|
708
|
+
SKILLSMITH_ERROR_LOG_DISABLE=1 skillsmith search "testing"
|
|
709
|
+
|
|
710
|
+
# Enable debug-level verbosity (noisier, more detailed logs)
|
|
711
|
+
SKILLSMITH_LOG_LEVEL=debug skillsmith search "testing"
|
|
712
|
+
```
|
|
713
|
+
|
|
714
|
+
**Inspect Logs:** Run `skillsmith diagnose` to view a redacted summary of recent error records, or `skillsmith logs --tail` to follow logs in real-time. Both commands redact secrets inline, so output is always safe to paste in chat or share.
|
|
715
|
+
|
|
648
716
|
## Privacy & Data Handling
|
|
649
717
|
|
|
650
718
|
Skillsmith is designed with privacy as a core principle.
|
|
@@ -758,7 +826,7 @@ npm run dev
|
|
|
758
826
|
|
|
759
827
|
```bash
|
|
760
828
|
# Update all installed skills
|
|
761
|
-
skillsmith update
|
|
829
|
+
skillsmith update --all
|
|
762
830
|
|
|
763
831
|
# Remove a skill
|
|
764
832
|
skillsmith remove community/old-skill
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
1c79f9dd311c8960dffa1c8af98f6089de9acee9
|