@hasna/hooks 0.2.18 → 0.2.20
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 +5 -8
- package/bin/index.js +76 -9457
- package/dist/cli/components/App.d.ts +7 -0
- package/dist/cli/components/CategorySelect.d.ts +7 -0
- package/dist/cli/components/DataTable.d.ts +11 -0
- package/dist/cli/components/Header.d.ts +7 -0
- package/dist/cli/components/HookSelect.d.ts +11 -0
- package/dist/cli/components/InstallProgress.d.ts +9 -0
- package/dist/cli/components/SearchView.d.ts +9 -0
- package/dist/cli/index.d.ts +2 -0
- package/dist/db/index.d.ts +11 -0
- package/dist/db/legacy-import.d.ts +11 -0
- package/dist/db/migrations/001_initial.d.ts +6 -0
- package/dist/db/migrations/index.d.ts +7 -0
- package/dist/db/pg-migrations.d.ts +7 -0
- package/dist/db/retention.d.ts +8 -0
- package/dist/db/schema.d.ts +21 -0
- package/dist/index.d.ts +59 -0
- package/dist/lib/db-writer.d.ts +9 -0
- package/dist/lib/installer.d.ts +36 -0
- package/dist/lib/profiles.d.ts +33 -0
- package/dist/lib/registry.d.ts +19 -0
- package/dist/mcp/http.d.ts +16 -0
- package/dist/mcp/server.d.ts +17 -0
- package/package.json +3 -4
package/README.md
CHANGED
|
@@ -26,15 +26,12 @@ hooks --help
|
|
|
26
26
|
- `hooks doctor`
|
|
27
27
|
- `hooks run`
|
|
28
28
|
|
|
29
|
-
##
|
|
29
|
+
## Storage
|
|
30
30
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
cloud sync push --service hooks
|
|
36
|
-
cloud sync pull --service hooks
|
|
37
|
-
```
|
|
31
|
+
Hooks stores data locally by default in `~/.hasna/hooks/` and uses SQLite
|
|
32
|
+
directly for hook event history. The package owns its database schema and
|
|
33
|
+
migrations; it does not depend on the deprecated shared runtime or its CLI. Use
|
|
34
|
+
the `hooks log` commands to inspect local hook event data.
|
|
38
35
|
|
|
39
36
|
## Data Directory
|
|
40
37
|
|