caveat-cli 0.17.1 → 0.17.2

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 CHANGED
@@ -1,8 +1,20 @@
1
- # caveat-cli
1
+ <p align="center">
2
+ <img src="https://raw.githubusercontent.com/kitepon-rgb/Caveat/main/.github/og.png" alt="Caveat — long-term memory layer for coding agents" width="100%">
3
+ </p>
2
4
 
3
- Long-term memory CLI for Claude Code and Codex — markdown + SQLite FTS5 + MCP server + agent hooks. Personal / group knowledge tool, no central shared DB.
5
+ # Caveat
4
6
 
5
- **Source / full docs**: https://github.com/kitepon-rgb/Caveat
7
+ [![npm](https://img.shields.io/npm/v/caveat-cli?color=cb3837&label=caveat-cli)](https://www.npmjs.com/package/caveat-cli)
8
+ [![CI](https://github.com/kitepon-rgb/Caveat/actions/workflows/ci.yml/badge.svg)](https://github.com/kitepon-rgb/Caveat/actions/workflows/ci.yml)
9
+ [![license](https://img.shields.io/npm/l/caveat-cli?color=blue)](https://github.com/kitepon-rgb/Caveat/blob/main/LICENSE)
10
+
11
+ > **Stop rediscovering the same trap.** Caveat is a long-term memory layer for Claude Code and Codex: record a hard-won external-spec quirk or repo-specific oddity once, and the relevant note surfaces before an AI repeats it.
12
+
13
+ 🇯🇵 **日本語版**: [README.ja.md](https://github.com/kitepon-rgb/Caveat/blob/main/README.ja.md)
14
+
15
+ Built and maintained by [Quo](https://x.com/QLyun35332) at [kitepon.dev](https://kitepon.dev/en).
16
+
17
+ **Source / full docs**: [github.com/kitepon-rgb/Caveat](https://github.com/kitepon-rgb/Caveat)
6
18
 
7
19
  ## Install
8
20
 
File without changes
package/dist/index.js CHANGED
File without changes
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "caveat-cli",
3
- "version": "0.17.1",
3
+ "version": "0.17.2",
4
4
  "description": "Long-term memory CLI for Claude Code and Codex (markdown + SQLite FTS5 + MCP + hooks)",
5
5
  "keywords": [
6
6
  "caveat",
@@ -14,8 +14,11 @@
14
14
  "cli"
15
15
  ],
16
16
  "license": "MIT",
17
- "author": "kitepon-rgb",
18
- "homepage": "https://github.com/kitepon-rgb/Caveat",
17
+ "author": {
18
+ "name": "Quo / クオ at kitepon.dev",
19
+ "url": "https://kitepon.dev/"
20
+ },
21
+ "homepage": "https://github.com/kitepon-rgb/Caveat#readme",
19
22
  "repository": {
20
23
  "type": "git",
21
24
  "url": "git+https://github.com/kitepon-rgb/Caveat.git"
@@ -38,25 +41,25 @@
38
41
  "publishConfig": {
39
42
  "access": "public"
40
43
  },
44
+ "scripts": {
45
+ "build": "tsup",
46
+ "test": "vitest run",
47
+ "typecheck": "tsc --noEmit",
48
+ "dev": "tsx src/index.ts"
49
+ },
41
50
  "dependencies": {
42
51
  "commander": "^14.0.3",
43
52
  "smol-toml": "1.7.0"
44
53
  },
45
54
  "devDependencies": {
55
+ "@caveat/core": "workspace:*",
56
+ "@caveat/mcp": "workspace:*",
57
+ "@caveat/web": "workspace:*",
46
58
  "@types/node": "^22.20.1",
47
59
  "tsup": "^8.3.0",
48
60
  "tsx": "^4.23.1",
49
61
  "typescript": "^6.0.3",
50
62
  "vite": "^8.1.4",
51
- "vitest": "^4.1.10",
52
- "@caveat/core": "0.0.0",
53
- "@caveat/mcp": "0.0.0",
54
- "@caveat/web": "0.0.0"
55
- },
56
- "scripts": {
57
- "build": "tsup",
58
- "test": "vitest run",
59
- "typecheck": "tsc --noEmit",
60
- "dev": "tsx src/index.ts"
63
+ "vitest": "^4.1.10"
61
64
  }
62
- }
65
+ }