pumuki-ast-hooks 5.6.2 → 5.6.5
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 -6
- package/docs/images/ai_gate.png +0 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -100,6 +100,10 @@ Pumuki addresses these issues by **removing trust from the AI** and replacing it
|
|
|
100
100
|
* **In-Memory AST Analysis**: `analyzeCodeInMemory()` for proposed code validation
|
|
101
101
|
* **IDE Hooks**: Real-time blocking in Windsurf, Claude Code, OpenCode
|
|
102
102
|
|
|
103
|
+
<img src="https://raw.githubusercontent.com/SwiftEnProfundidad/ast-intelligence-hooks/main/assets/Hook_01.png" alt="Windsurf post-write hook output" width="100%" />
|
|
104
|
+
|
|
105
|
+
<img src="https://raw.githubusercontent.com/SwiftEnProfundidad/ast-intelligence-hooks/main/assets/Hook_02.png" alt="Windsurf pre-write hook output" width="100%" />
|
|
106
|
+
|
|
103
107
|
### NEW: MCP Integration
|
|
104
108
|
|
|
105
109
|
* **MCP Server**: Full Model Context Protocol integration
|
|
@@ -107,6 +111,8 @@ Pumuki addresses these issues by **removing trust from the AI** and replacing it
|
|
|
107
111
|
* **pre_flight_check**: Validate proposed code before writing
|
|
108
112
|
* **set_human_intent**: Track user goals across sessions
|
|
109
113
|
|
|
114
|
+
<img src="https://raw.githubusercontent.com/SwiftEnProfundidad/ast-intelligence-hooks/main/docs/images/ai_gate.png" alt="MCP ai_gate_check BLOCKED example" width="100%" />
|
|
115
|
+
|
|
110
116
|
### NEW: Cognitive Layers
|
|
111
117
|
|
|
112
118
|
* **Human Intent**: Persistent user goal tracking with confidence levels
|
|
@@ -122,15 +128,15 @@ Pumuki addresses these issues by **removing trust from the AI** and replacing it
|
|
|
122
128
|
|
|
123
129
|
## Visual Overview
|
|
124
130
|
|
|
125
|
-
<img src="https://raw.githubusercontent.com/
|
|
131
|
+
<img src="https://raw.githubusercontent.com/SwiftEnProfundidad/ast-intelligence-hooks/main/docs/images/ast_intelligence_01.svg" alt="AST Intelligence System Overview" width="100%" />
|
|
126
132
|
|
|
127
|
-
<img src="https://raw.githubusercontent.com/
|
|
133
|
+
<img src="https://raw.githubusercontent.com/SwiftEnProfundidad/ast-intelligence-hooks/main/docs/images/ast_intelligence_02.svg" alt="AST Intelligence Workflow" width="100%" />
|
|
128
134
|
|
|
129
|
-
<img src="https://raw.githubusercontent.com/
|
|
135
|
+
<img src="https://raw.githubusercontent.com/SwiftEnProfundidad/ast-intelligence-hooks/main/docs/images/ast_intelligence_03.svg" alt="AST Intelligence Audit - Part 1" width="100%" />
|
|
130
136
|
|
|
131
|
-
<img src="https://raw.githubusercontent.com/
|
|
137
|
+
<img src="https://raw.githubusercontent.com/SwiftEnProfundidad/ast-intelligence-hooks/main/docs/images/ast_intelligence_04.svg" alt="AST Intelligence Audit - Part 2" width="100%" />
|
|
132
138
|
|
|
133
|
-
<img src="https://raw.githubusercontent.com/
|
|
139
|
+
<img src="https://raw.githubusercontent.com/SwiftEnProfundidad/ast-intelligence-hooks/main/docs/images/ast_intelligence_05.svg" alt="AST Intelligence Audit - Part 3" width="100%" />
|
|
134
140
|
|
|
135
141
|
---
|
|
136
142
|
|
|
@@ -345,7 +351,7 @@ AI generates code → IDE Hook intercepts → AST Intelligence analyzes →
|
|
|
345
351
|
|
|
346
352
|
> **Note**: For IDEs without pre-write hooks, the Git pre-commit hook provides 100% enforcement at commit time.
|
|
347
353
|
|
|
348
|
-
See [
|
|
354
|
+
See [https://github.com/SwiftEnProfundidad/ast-intelligence-hooks/blob/main/scripts/hooks-system/infrastructure/cascade-hooks/README.md](https://github.com/SwiftEnProfundidad/ast-intelligence-hooks/blob/main/scripts/hooks-system/infrastructure/cascade-hooks/README.md) for installation instructions.
|
|
349
355
|
|
|
350
356
|
---
|
|
351
357
|
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pumuki-ast-hooks",
|
|
3
|
-
"version": "5.6.
|
|
3
|
+
"version": "5.6.5",
|
|
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": {
|
|
@@ -134,4 +134,4 @@
|
|
|
134
134
|
"./skills": "./skills/skill-rules.json",
|
|
135
135
|
"./hooks": "./hooks/index.js"
|
|
136
136
|
}
|
|
137
|
-
}
|
|
137
|
+
}
|