@hasna/contacts 0.6.20 → 0.6.22
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 +12 -5
- package/dist/cli/index.js +1562 -11376
- package/dist/cli/storage-contract.test.d.ts +2 -0
- package/dist/cli/storage-contract.test.d.ts.map +1 -0
- package/dist/cli/storage.d.ts +3 -0
- package/dist/cli/storage.d.ts.map +1 -0
- package/dist/db/database.d.ts +2 -2
- package/dist/db/database.d.ts.map +1 -1
- package/dist/db/database.test.d.ts +2 -0
- package/dist/db/database.test.d.ts.map +1 -0
- package/dist/db/feedback.d.ts +15 -0
- package/dist/db/feedback.d.ts.map +1 -0
- package/dist/db/pg-migrations.d.ts +1 -1
- package/dist/db/sqlite-adapter.d.ts +15 -0
- package/dist/db/sqlite-adapter.d.ts.map +1 -0
- package/dist/db/sqlite-adapter.test.d.ts +2 -0
- package/dist/db/sqlite-adapter.test.d.ts.map +1 -0
- package/dist/db/storage.d.ts +15 -0
- package/dist/db/storage.d.ts.map +1 -0
- package/dist/db/storage.test.d.ts +2 -0
- package/dist/db/storage.test.d.ts.map +1 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +252 -9489
- package/dist/mcp/index.js +1371 -11195
- package/dist/mcp/storage-contract.test.d.ts +2 -0
- package/dist/mcp/storage-contract.test.d.ts.map +1 -0
- package/dist/mcp/storage-tools.d.ts +3 -0
- package/dist/mcp/storage-tools.d.ts.map +1 -0
- package/dist/server/index.js +1664 -11490
- package/package.json +3 -4
package/README.md
CHANGED
|
@@ -44,16 +44,23 @@ The REST server (`contacts-serve`) also exposes `/health` and `/mcp` when runnin
|
|
|
44
44
|
contacts-serve
|
|
45
45
|
```
|
|
46
46
|
|
|
47
|
-
##
|
|
47
|
+
## Storage
|
|
48
48
|
|
|
49
|
-
|
|
49
|
+
Contacts owns its local SQLite storage directly. It does not depend on shared
|
|
50
|
+
cloud runtime commands or MCP tools.
|
|
50
51
|
|
|
51
52
|
```bash
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
cloud
|
|
53
|
+
contacts storage status
|
|
54
|
+
contacts storage status --json
|
|
55
|
+
contacts cloud status --json
|
|
55
56
|
```
|
|
56
57
|
|
|
58
|
+
`contacts cloud status` remains as a compatibility alias that reports local
|
|
59
|
+
storage and remote-sync availability. `contacts cloud push` and
|
|
60
|
+
`contacts cloud pull` return a clear unsupported message until repo-native
|
|
61
|
+
remote sync is configured inside this package. `contacts cloud feedback` saves
|
|
62
|
+
feedback locally in the contacts database.
|
|
63
|
+
|
|
57
64
|
## Data Directory
|
|
58
65
|
|
|
59
66
|
Data is stored in `~/.hasna/contacts/`.
|