agentskillscanner 0.2.0 → 0.2.1

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/dist/index.js +3 -0
  2. package/package.json +3 -2
package/dist/index.js CHANGED
@@ -1,5 +1,7 @@
1
1
  #!/usr/bin/env node
2
+ import { createRequire } from "node:module";
2
3
  import { cli, define } from "gunshi";
4
+ import updateNotifier from "update-notifier";
3
5
  import { dirname, join, resolve } from "node:path";
4
6
  import { homedir, platform } from "node:os";
5
7
  import { readFileSync, readdirSync, statSync } from "node:fs";
@@ -942,6 +944,7 @@ const scanCommand = define({
942
944
 
943
945
  //#endregion
944
946
  //#region src/index.ts
947
+ updateNotifier({ pkg: createRequire(import.meta.url)("../package.json") }).notify();
945
948
  await cli(process.argv.slice(2), scanCommand);
946
949
 
947
950
  //#endregion
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentskillscanner",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "type": "module",
5
5
  "description": "Scan and report all available skills for AI coding assistants",
6
6
  "license": "MIT",
@@ -19,7 +19,8 @@
19
19
  },
20
20
  "dependencies": {
21
21
  "gunshi": "^0.26.3",
22
- "picocolors": "^1.1.1"
22
+ "picocolors": "^1.1.1",
23
+ "update-notifier": "^7.3.1"
23
24
  },
24
25
  "devDependencies": {
25
26
  "tsdown": "^0.12.5",