skillpass 0.1.0 → 0.3.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/README.md CHANGED
@@ -25,6 +25,8 @@ skillpass scan <path> [--json]
25
25
  skillpass report <slug>[@version] [--json]
26
26
  skillpass add <slug>[@version] [--target <tool> [--global] | --dir <path>] [--yes]
27
27
  skillpass remove <slug> [--target <tool> [--global] | --dir <path>]
28
+ skillpass update <slug>[@version] [--target <tool> [--global]] [--yes]
29
+ skillpass outdated
28
30
  skillpass list
29
31
  skillpass --version | --help
30
32
  ```
@@ -63,11 +65,22 @@ skills in one verified step.
63
65
 
64
66
  ### Manage
65
67
 
66
- `skillpass list` shows what is installed in the known skills areas.
67
- `skillpass remove <slug>` deletes an installed skill; it refuses anything that
68
- does not look like an installed skill, so a stray `--dir` can never wipe a
69
- real folder. `skillpass scan <path>` runs the same validator the directory
70
- uses on any local skill folder before you submit it.
68
+ Installs into the known skills areas are recorded in a per-area
69
+ `.skillpass.json` receipt, so the CLI knows what it installed and at which
70
+ version - your own hand-made skills in the same folders are left alone.
71
+
72
+ - `skillpass list` shows installed skills with their versions
73
+ - `skillpass outdated` compares them to the directory (exits 1 when updates
74
+ exist, handy in scripts)
75
+ - `skillpass update <slug>` re-runs the whole trust gate - including a
76
+ permission diff against the version you currently have - then swaps the
77
+ install atomically; updating a pack swaps, adds, and removes members as
78
+ the pack changed
79
+ - `skillpass remove <slug>` deletes an installed skill (a pack removes its
80
+ whole family); it refuses anything that does not look like an installed
81
+ skill, so a stray `--dir` can never wipe a real folder
82
+ - `skillpass scan <path>` runs the same validator the directory uses on any
83
+ local skill folder before you submit it
71
84
 
72
85
  ## Configuration
73
86
 
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ import '../dist/cli.js';