pumuki-ast-hooks 5.5.11 → 5.5.12
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": "5.5.
|
|
3
|
+
"version": "5.5.12",
|
|
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": {
|
|
@@ -503,8 +503,12 @@ function updateAIEvidenceMetrics(findings, levelTotals, root) {
|
|
|
503
503
|
try {
|
|
504
504
|
const evidence = JSON.parse(fs.readFileSync(evidencePath, 'utf8'));
|
|
505
505
|
|
|
506
|
+
const now = new Date().toISOString();
|
|
507
|
+
|
|
508
|
+
evidence.timestamp = now;
|
|
509
|
+
|
|
506
510
|
evidence.severity_metrics = {
|
|
507
|
-
last_updated:
|
|
511
|
+
last_updated: now,
|
|
508
512
|
total_violations: findings.length,
|
|
509
513
|
by_severity: {
|
|
510
514
|
CRITICAL: levelTotals.CRITICAL || 0,
|