pumuki-ast-hooks 6.2.1 → 6.2.4
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pumuki-ast-hooks",
|
|
3
|
-
"version": "6.2.
|
|
3
|
+
"version": "6.2.4",
|
|
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": {
|
|
@@ -1506,3 +1506,7 @@
|
|
|
1506
1506
|
{"timestamp":1769006619004,"hook":"audit_logger","operation":"ensure_dir","status":"started"}
|
|
1507
1507
|
{"timestamp":1769006619004,"hook":"audit_logger","operation":"ensure_dir","status":"success"}
|
|
1508
1508
|
{"timestamp":1769006619004,"hook":"audit_logger","operation":"constructor","status":"success","repoRoot":"/Users/juancarlosmerlosalbarracin/Developer/Projects/ast-intelligence-hooks/scripts/hooks-system"}
|
|
1509
|
+
{"timestamp":1769296106437,"hook":"audit_logger","operation":"constructor","status":"started","repoRoot":"/Users/juancarlosmerlosalbarracin/Developer/Projects/ast-intelligence-hooks/scripts/hooks-system"}
|
|
1510
|
+
{"timestamp":1769296106437,"hook":"audit_logger","operation":"ensure_dir","status":"started"}
|
|
1511
|
+
{"timestamp":1769296106437,"hook":"audit_logger","operation":"ensure_dir","status":"success"}
|
|
1512
|
+
{"timestamp":1769296106437,"hook":"audit_logger","operation":"constructor","status":"success","repoRoot":"/Users/juancarlosmerlosalbarracin/Developer/Projects/ast-intelligence-hooks/scripts/hooks-system"}
|
|
@@ -2504,18 +2504,12 @@ if (require.main === module) {
|
|
|
2504
2504
|
* Called ONLY after MCP handshake is complete
|
|
2505
2505
|
*/
|
|
2506
2506
|
function startPollingLoops() {
|
|
2507
|
-
const evidenceMonitor = getCompositionRoot().getEvidenceMonitor();
|
|
2508
|
-
evidenceMonitor.start();
|
|
2509
|
-
|
|
2510
|
-
if (process.env.DEBUG) {
|
|
2511
|
-
process.stderr.write('[MCP] EvidenceMonitorService started with 3-min auto-refresh\n');
|
|
2512
|
-
}
|
|
2513
|
-
|
|
2514
2507
|
setInterval(async () => {
|
|
2515
2508
|
try {
|
|
2516
2509
|
const now = Date.now();
|
|
2517
2510
|
const gitFlowService = getCompositionRoot().getGitFlowService();
|
|
2518
2511
|
const gitQuery = getCompositionRoot().getGitQueryAdapter();
|
|
2512
|
+
const evidenceMonitor = getCompositionRoot().getEvidenceMonitor();
|
|
2519
2513
|
const orchestrator = getCompositionRoot().getOrchestrator();
|
|
2520
2514
|
|
|
2521
2515
|
const currentBranch = gitFlowService.getCurrentBranch();
|