caveat-cli 0.14.9 → 0.15.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 +15 -0
- package/dist/{chunk-ECC5LJZF.js → chunk-Z2XLYCR3.js} +641 -82
- package/dist/chunk-Z2XLYCR3.js.map +1 -0
- package/dist/index.js +318 -80
- package/dist/index.js.map +1 -1
- package/dist/{server-YQ4DJ2H7.js → server-DCE3ODHI.js} +2 -2
- package/package.json +12 -12
- package/dist/chunk-ECC5LJZF.js.map +0 -1
- /package/dist/{server-YQ4DJ2H7.js.map → server-DCE3ODHI.js.map} +0 -0
package/README.md
CHANGED
|
@@ -12,6 +12,11 @@ caveat init # Claude Code MCP + hooks
|
|
|
12
12
|
caveat codex-hook install # optional: native Codex hooks
|
|
13
13
|
```
|
|
14
14
|
|
|
15
|
+
On macOS with Homebrew Node, Caveat installs hook commands through the stable
|
|
16
|
+
`/opt/homebrew/bin/node` symlink when it points at the current Node binary. This
|
|
17
|
+
keeps Claude Code and Codex hooks working after Homebrew moves Node between
|
|
18
|
+
`/opt/homebrew/Cellar/node/<version>/...` directories.
|
|
19
|
+
|
|
15
20
|
`caveat init` (idempotent, `--dry-run` supported) does the Claude Code setup:
|
|
16
21
|
|
|
17
22
|
1. Scaffolds `~/.caveat/own/` (your personal knowledge repo) + `~/.caveat/index/caveat.db`
|
|
@@ -82,6 +87,16 @@ If you want `~/.caveat/own/` to live elsewhere (e.g. a git-tracked directory you
|
|
|
82
87
|
- Claude Code installed if you want Claude MCP / hooks integration. Without it, `caveat init --skip-claude` still provisions local state.
|
|
83
88
|
- Codex installed if you want native Codex hooks via `caveat codex-hook install`.
|
|
84
89
|
|
|
90
|
+
Release install smoke:
|
|
91
|
+
|
|
92
|
+
```sh
|
|
93
|
+
npm uninstall -g caveat-cli
|
|
94
|
+
npm install -g caveat-cli
|
|
95
|
+
caveat --version
|
|
96
|
+
caveat init
|
|
97
|
+
caveat codex-hook install
|
|
98
|
+
```
|
|
99
|
+
|
|
85
100
|
## License
|
|
86
101
|
|
|
87
102
|
MIT
|