skillwatch 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 (3) hide show
  1. package/README.md +3 -23
  2. package/dist/cli.js +1 -1
  3. package/package.json +3 -1
package/README.md CHANGED
@@ -1,34 +1,14 @@
1
1
  # skillwatch
2
2
 
3
- Daily macOS notifications when your installed agent skills have updates on GitHub.
4
-
5
- ## Install
3
+ Notifies you when installed agent skills have updates.
6
4
 
7
5
  ```bash
8
6
  npx skillwatch install
9
- ```
10
-
11
- Runs daily at 09:00. Customise with `--hour 14 --minute 30`.
12
-
13
- For frequent use, install globally with `npm install -g skillwatch`.
14
-
15
- ## Verify
16
-
17
- ```bash
18
7
  npx skillwatch check-now
19
8
  ```
20
9
 
21
- ## Uninstall
22
-
23
- ```bash
24
- npx skillwatch uninstall
25
- ```
26
-
27
- ## Troubleshooting
28
-
29
- - **"No skill lock file found"** — run `npx skills` first so the lock file exists.
30
- - **Node path changed** — rerun `npx skillwatch install` to update the LaunchAgent.
10
+ Checks daily at 9:00 am. Change the time with `--hour` and `--minute`.
31
11
 
32
- ## License
12
+ Uninstall with `npx skillwatch uninstall`.
33
13
 
34
14
  [MIT](LICENSE.md)
package/dist/cli.js CHANGED
@@ -9,7 +9,7 @@ import { fileURLToPath } from "node:url";
9
9
  //#region src/cli.ts
10
10
  var import_picocolors = /* @__PURE__ */ __toESM(require_picocolors(), 1);
11
11
  const PACKAGE_NAME = "skillwatch";
12
- const PACKAGE_VERSION = "0.1.5";
12
+ const PACKAGE_VERSION = "0.1.6";
13
13
  const ENTRYPOINT_PATH = fileURLToPath(import.meta.url);
14
14
  const PACKAGE_DIR = dirname(ENTRYPOINT_PATH);
15
15
  const CHECKER_SOURCE_PATH = join(PACKAGE_DIR, "checker.js");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skillwatch",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "Daily macOS notifications when installed GitHub-backed skills have updates.",
5
5
  "keywords": [
6
6
  "agent-skills",
@@ -47,10 +47,12 @@
47
47
  },
48
48
  "devDependencies": {
49
49
  "@changesets/cli": "^2.29.0",
50
+ "@clack/prompts": "^1.1.0",
50
51
  "@types/node": "^22.15.0",
51
52
  "lefthook": "^2.1.4",
52
53
  "oxfmt": "^0.41.0",
53
54
  "oxlint": "^1.56.0",
55
+ "picocolors": "^1.1.1",
54
56
  "tsdown": "^0.12.0",
55
57
  "typescript": "^5.8.0",
56
58
  "ultracite": "^7.3.2",