@npeercy/skills 0.1.5 → 0.1.6

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.
Files changed (2) hide show
  1. package/bin/skills.js +2 -2
  2. package/package.json +1 -1
package/bin/skills.js CHANGED
@@ -23,7 +23,7 @@ Setup:
23
23
  Discovery:
24
24
  search [query] Search skills (no query = browse all)
25
25
  info <skill> Skill details + versions
26
- list [--verify] [--outdated] [--json] Show all local skills (managed + unmanaged)
26
+ list [--verify] [--outdated] [--json] Show all local skills (managed + unmanaged + bundled)
27
27
 
28
28
  Install:
29
29
  install <skill>[@ver] [--agent <a>] [--dry-run]
@@ -99,7 +99,7 @@ async function maybeWarnOutdated() {
99
99
  async function main() {
100
100
  const args = process.argv.slice(2);
101
101
 
102
- // `skills` by itself -> list all local skills (managed + unmanaged)
102
+ // `skills` by itself -> list all local skills (managed + unmanaged + bundled)
103
103
  if (args.length === 0) {
104
104
  await maybeWarnOutdated();
105
105
  await cmdList({ verify: false, outdated: false, json: false });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@npeercy/skills",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "CLI-first skill marketplace for coding agents",
5
5
  "type": "module",
6
6
  "bin": {