skillsets 0.2.1 → 0.2.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/README.md +1 -2
- package/dist/index.js +0 -13
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,8 +24,7 @@ npx skillsets install @supercollectible/The_Skillset
|
|
|
24
24
|
|---------|---------|
|
|
25
25
|
| `list` | Browse all skillsets with live star/download counts |
|
|
26
26
|
| `search <query>` | Fuzzy search by name, description, or tags |
|
|
27
|
-
| `install <id>` | Install skillset to current directory |
|
|
28
|
-
| `verify` | Verify installed skillset checksums |
|
|
27
|
+
| `install <id>` | Install skillset to current directory (verifies checksums) |
|
|
29
28
|
| `init` | Scaffold a new skillset for contribution |
|
|
30
29
|
| `audit` | Validate skillset before submission |
|
|
31
30
|
| `submit` | Open PR to registry (requires `gh` CLI) |
|
package/dist/index.js
CHANGED
|
@@ -3,7 +3,6 @@ import { program } from 'commander';
|
|
|
3
3
|
import { search } from './commands/search.js';
|
|
4
4
|
import { list } from './commands/list.js';
|
|
5
5
|
import { install } from './commands/install.js';
|
|
6
|
-
import { verify } from './commands/verify.js';
|
|
7
6
|
import { init } from './commands/init.js';
|
|
8
7
|
import { audit } from './commands/audit.js';
|
|
9
8
|
import { submit } from './commands/submit.js';
|
|
@@ -55,18 +54,6 @@ program
|
|
|
55
54
|
handleError(error);
|
|
56
55
|
}
|
|
57
56
|
});
|
|
58
|
-
program
|
|
59
|
-
.command('verify')
|
|
60
|
-
.description('Verify installed skillset checksums against registry')
|
|
61
|
-
.option('-d, --dir <path>', 'Directory to verify (default: current)', '.')
|
|
62
|
-
.action(async (options) => {
|
|
63
|
-
try {
|
|
64
|
-
await verify(options);
|
|
65
|
-
}
|
|
66
|
-
catch (error) {
|
|
67
|
-
handleError(error);
|
|
68
|
-
}
|
|
69
|
-
});
|
|
70
57
|
// === Contribution Commands ===
|
|
71
58
|
program
|
|
72
59
|
.command('init')
|