pumuki-ast-hooks 6.1.6 → 6.1.7
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 +4 -3
- package/docs/INSTALLATION.md +2 -2
- package/docs/USAGE.md +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -16,9 +16,10 @@ Portable, project‑agnostic, multi‑platform enterprise framework to govern AI
|
|
|
16
16
|
## Quick Start (30–60s)
|
|
17
17
|
|
|
18
18
|
```bash
|
|
19
|
+
git init
|
|
19
20
|
npm install --save-dev pumuki-ast-hooks
|
|
20
|
-
|
|
21
|
-
npx ast-hooks
|
|
21
|
+
npx ast-install
|
|
22
|
+
npx ast-hooks audit
|
|
22
23
|
```
|
|
23
24
|
|
|
24
25
|
Default installation mode is `npm-runtime`.
|
|
@@ -26,7 +27,7 @@ Default installation mode is `npm-runtime`.
|
|
|
26
27
|
To opt into an embedded runtime copy (`vendored` mode):
|
|
27
28
|
|
|
28
29
|
```bash
|
|
29
|
-
HOOK_INSTALL_MODE=vendored
|
|
30
|
+
HOOK_INSTALL_MODE=vendored npx ast-install
|
|
30
31
|
```
|
|
31
32
|
|
|
32
33
|
---
|
package/docs/INSTALLATION.md
CHANGED
|
@@ -84,11 +84,11 @@ The installer will detect if Git is missing and show a clear warning:
|
|
|
84
84
|
### Option 1: Local Installation (Recommended)
|
|
85
85
|
|
|
86
86
|
```bash
|
|
87
|
-
# Install as
|
|
87
|
+
# Install as dev dependency
|
|
88
88
|
npm install --save-dev pumuki-ast-hooks
|
|
89
89
|
|
|
90
90
|
# Configure hooks
|
|
91
|
-
|
|
91
|
+
npx ast-install
|
|
92
92
|
```
|
|
93
93
|
|
|
94
94
|
By default, the installer uses npm-runtime mode (no embedded copy of `scripts/hooks-system` into your project). To use the vendored mode (embedded runtime), run the installer with `HOOK_INSTALL_MODE=vendored`.
|
package/docs/USAGE.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pumuki-ast-hooks",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.7",
|
|
4
4
|
"description": "Enterprise-grade AST Intelligence System with multi-platform support (iOS, Android, Backend, Frontend) and Feature-First + DDD + Clean Architecture enforcement. Includes dynamic violations API for intelligent querying.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|