snow-flow 4.2.0 → 4.2.2

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.
Files changed (81) hide show
  1. package/README.md +186 -554
  2. package/cloudbuild-npm.yaml +132 -0
  3. package/cloudbuild-website.yaml +92 -0
  4. package/cloudbuild.yaml +141 -0
  5. package/dist/agent/interactive.d.ts +11 -0
  6. package/dist/agent/interactive.js +190 -0
  7. package/dist/agent/session.d.ts +12 -0
  8. package/dist/agent/session.js +106 -0
  9. package/dist/cli/auth.d.ts +3 -0
  10. package/dist/cli/auth.js +59 -0
  11. package/dist/cli/session.d.ts +3 -0
  12. package/dist/cli/session.js +46 -0
  13. package/dist/cli.js +81 -0
  14. package/dist/config/llm-config-loader.d.ts +45 -0
  15. package/dist/config/llm-config-loader.js +49 -0
  16. package/dist/index.js +1 -3
  17. package/dist/intelligence/performance-recommendations-engine.js +0 -1
  18. package/dist/llm/keys.d.ts +5 -0
  19. package/dist/llm/keys.js +29 -0
  20. package/dist/llm/providers.d.ts +11 -0
  21. package/dist/llm/providers.js +77 -0
  22. package/dist/mcp/advanced/servicenow-advanced-features-mcp.js +12 -12
  23. package/dist/mcp/bridge.d.ts +10 -0
  24. package/dist/mcp/bridge.js +31 -0
  25. package/dist/mcp/servicenow-development-assistant-mcp.js +1 -1
  26. package/dist/mcp/servicenow-machine-learning-mcp.js +2 -2
  27. package/dist/mcp/servicenow-reporting-analytics-mcp.js +1 -1
  28. package/dist/mcp/shared/mcp-types.d.ts +37 -0
  29. package/dist/mcp/shared/mcp-types.js +7 -0
  30. package/dist/mcp/shared/response-limiter.js +1 -1
  31. package/dist/memory/hierarchical-memory-system.d.ts +42 -0
  32. package/dist/memory/hierarchical-memory-system.js +60 -0
  33. package/dist/memory/memory-system.d.ts +34 -0
  34. package/dist/memory/memory-system.js +36 -0
  35. package/dist/memory/snow-flow-memory-patterns.d.ts +47 -28
  36. package/dist/memory/snow-flow-memory-patterns.js +46 -25
  37. package/dist/session/store.d.ts +47 -0
  38. package/dist/session/store.js +74 -0
  39. package/dist/snow-flow-system.js +0 -1
  40. package/dist/testing/integration-test-suite.js +0 -1
  41. package/dist/utils/artifact-local-sync.js +17 -0
  42. package/dist/utils/artifact-sync/artifact-registry.js +11 -11
  43. package/dist/utils/chunking-manager.d.ts +39 -0
  44. package/dist/utils/chunking-manager.js +143 -0
  45. package/dist/utils/smart-field-fetcher.js +11 -9
  46. package/package.json +3 -3
  47. package/website/Dockerfile +3 -2
  48. package/website/cloudbuild.yaml +4 -3
  49. package/website/complete-mcp-reference.html +1040 -0
  50. package/website/components/hero/Hero.html +9 -9
  51. package/website/components/hero/Hero.jsx +3 -3
  52. package/website/css/button-contrast-fixes.css +133 -0
  53. package/website/css/button-fixes.css +49 -0
  54. package/website/css/enterprise-section-update.css +38 -0
  55. package/website/css/font-standardization.css +54 -0
  56. package/website/css/footer-hero-styling.css +73 -0
  57. package/website/css/hero-compact-spacing.css +60 -0
  58. package/website/css/hero-contrast-fixes.css +195 -0
  59. package/website/css/hero-inspired-design.css +135 -0
  60. package/website/css/hero-size-optimization.css +146 -0
  61. package/website/css/hero-spacing-improvements.css +139 -0
  62. package/website/css/hero-stats-visibility.css +98 -0
  63. package/website/css/mobile-hero-fix.css +215 -0
  64. package/website/css/navbar-hero-styling.css +70 -0
  65. package/website/css/reference-text-contrast.css +101 -0
  66. package/website/css/scroll-overlap-nuclear-fix.css +127 -0
  67. package/website/css/section-layering-fix.css +85 -0
  68. package/website/css/style.css +37 -10
  69. package/website/css/title-layout-fix.css +58 -0
  70. package/website/css/ultimate-overlap-fix.css +101 -0
  71. package/website/css/website-hero-consistency.css +101 -0
  72. package/website/enterprise-features.html +147 -0
  73. package/website/index.html +268 -43
  74. package/website/js/animations.js +20 -23
  75. package/website/js/main.js +73 -7
  76. package/website/mcp-reference-link.html +16 -0
  77. package/website/mcp-servers.html +2 -2
  78. package/website/tools.js +125 -6
  79. package/website/what-is-snow-flow-section.html +142 -0
  80. package/assets/logo.txt +0 -8
  81. package/assets/snow-flow-logo.svg +0 -51
@@ -473,9 +473,15 @@ a.link-animated:hover::after {
473
473
 
474
474
  .hero-content {
475
475
  position: relative;
476
- z-index: 2; /* Above the noise overlay */
476
+ z-index: 20; /* CONTRAST FIX: Higher z-index above all background elements */
477
477
  text-align: center;
478
478
  padding: var(--space-8);
479
+ /* READABILITY FIX: Semi-transparent dark backdrop for better text contrast */
480
+ background: rgba(0, 0, 0, 0.3);
481
+ border-radius: var(--radius-2xl);
482
+ backdrop-filter: blur(10px);
483
+ -webkit-backdrop-filter: blur(10px);
484
+ border: 1px solid rgba(255, 255, 255, 0.1);
479
485
  }
480
486
 
481
487
  .hero-title {
@@ -485,6 +491,10 @@ a.link-animated:hover::after {
485
491
  margin-bottom: var(--space-6);
486
492
  position: relative;
487
493
  display: inline-block;
494
+ /* CONTRAST FIX: Ensure title is always readable */
495
+ color: var(--white);
496
+ text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 4px 8px rgba(0, 0, 0, 0.6);
497
+ z-index: 10;
488
498
  }
489
499
 
490
500
  @keyframes gradientShift {
@@ -495,10 +505,14 @@ a.link-animated:hover::after {
495
505
 
496
506
  .hero-subtitle {
497
507
  font-size: clamp(var(--font-lg), 2vw, var(--font-2xl));
498
- color: var(--gray-400);
508
+ color: var(--gray-200); /* CONTRAST FIX: Lighter for better readability */
499
509
  margin-bottom: var(--space-10);
500
- font-weight: 300;
510
+ font-weight: 400; /* Slightly bolder for better readability */
501
511
  letter-spacing: var(--tracking-wide);
512
+ /* READABILITY FIX: Add text shadow for contrast */
513
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
514
+ z-index: 10;
515
+ position: relative;
502
516
  }
503
517
 
504
518
  /* =========================================
@@ -520,8 +534,9 @@ a.link-animated:hover::after {
520
534
  position: absolute;
521
535
  border-radius: 50%;
522
536
  filter: blur(40px);
523
- opacity: 0.5;
537
+ opacity: 0.2; /* CONTRAST FIX: Reduced opacity so they don't interfere with text */
524
538
  animation: float 20s infinite ease-in-out;
539
+ z-index: 1; /* Keep below text content */
525
540
  }
526
541
 
527
542
  .orb-1 {
@@ -598,7 +613,6 @@ a.link-animated:hover::after {
598
613
  /* Enhanced Logo */
599
614
  .hero-logo-container {
600
615
  margin-bottom: var(--space-8);
601
- position: relative;
602
616
  }
603
617
 
604
618
  .logo-glow-container {
@@ -658,12 +672,17 @@ a.link-animated:hover::after {
658
672
 
659
673
  /* Enhanced Title */
660
674
  .gradient-text {
661
- background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #667eea 100%);
675
+ /* CONTRAST FIX: Much brighter, more contrastive gradient */
676
+ background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 25%, #e0f2fe 50%, #bfdbfe 75%, #ffffff 100%);
662
677
  -webkit-background-clip: text;
663
678
  -webkit-text-fill-color: transparent;
664
679
  background-clip: text;
665
680
  background-size: 200% auto;
666
681
  animation: gradient-animate 5s ease infinite;
682
+ /* FALLBACK: If gradient fails, show white text */
683
+ color: var(--white);
684
+ /* CONTRAST ENHANCEMENT: Text shadow visible through transparency */
685
+ filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
667
686
  }
668
687
 
669
688
  @keyframes gradient-animate {
@@ -710,8 +729,11 @@ a.link-animated:hover::after {
710
729
  }
711
730
 
712
731
  .highlight-text {
713
- color: #f5576c;
732
+ color: #ff6b7a; /* CONTRAST FIX: Brighter red for better visibility */
714
733
  font-weight: 600;
734
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8); /* Better contrast */
735
+ position: relative;
736
+ z-index: 15;
715
737
  }
716
738
 
717
739
  /* Feature Pills */
@@ -724,14 +746,18 @@ a.link-animated:hover::after {
724
746
  }
725
747
 
726
748
  .pill {
727
- background: rgba(255, 255, 255, 0.1);
749
+ background: rgba(0, 0, 0, 0.6); /* CONTRAST FIX: Darker background for better text visibility */
728
750
  backdrop-filter: blur(10px);
729
- border: 1px solid rgba(255, 255, 255, 0.2);
751
+ border: 1px solid rgba(255, 255, 255, 0.3); /* Brighter border */
730
752
  padding: 0.5rem 1rem;
731
753
  border-radius: 50px;
732
754
  font-size: 0.85rem;
733
- color: white;
755
+ color: var(--white); /* Ensure pure white text */
734
756
  animation: pill-intro 0.5s ease-out;
757
+ /* READABILITY FIX: Text shadow for extra contrast */
758
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
759
+ position: relative;
760
+ z-index: 15;
735
761
  }
736
762
 
737
763
  .pill-glow { animation: pill-glow 3s ease-in-out infinite; }
@@ -1119,6 +1145,7 @@ a.link-animated:hover::after {
1119
1145
  transform: translateX(-50%);
1120
1146
  text-align: center;
1121
1147
  animation: bounce 2s ease-in-out infinite;
1148
+ z-index: 999;
1122
1149
  }
1123
1150
 
1124
1151
  .scroll-text {
@@ -0,0 +1,58 @@
1
+ /* =========================================
2
+ TITLE LAYOUT EMERGENCY FIX
3
+ ========================================= */
4
+
5
+ /* Override ALL conflicting CSS to force horizontal layout */
6
+ .hero-title {
7
+ /* Reset to normal heading behavior */
8
+ display: block !important;
9
+ text-align: center !important;
10
+ margin: 0 auto !important;
11
+ width: 100% !important;
12
+ /* Remove any flexbox behavior that could stack vertically */
13
+ flex-direction: unset !important;
14
+ align-items: unset !important;
15
+ justify-content: unset !important;
16
+ }
17
+
18
+ /* Force letters to display horizontally inline - TIGHT SPACING */
19
+ .title-letter {
20
+ /* CRITICAL: inline-block allows horizontal layout with animations */
21
+ display: inline-block !important;
22
+ /* Never let these become block or flex */
23
+ flex-direction: unset !important;
24
+ /* Keep letters side by side */
25
+ float: none !important;
26
+ /* TIGHTER letter spacing to fit in container */
27
+ margin-right: 0.02em !important; /* Much tighter spacing */
28
+ margin-bottom: 0 !important;
29
+ margin-top: 0 !important;
30
+ /* White color for visibility */
31
+ color: var(--white) !important;
32
+ /* Strong text shadow for contrast */
33
+ text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9) !important;
34
+ /* RESPONSIVE: Scale with container */
35
+ transform: scale(1) !important;
36
+ }
37
+
38
+ /* Override any parent containers that might affect layout */
39
+ .hero-content {
40
+ text-align: center !important;
41
+ /* Don't let flex affect title layout */
42
+ align-items: center !important;
43
+ justify-content: center !important;
44
+ }
45
+
46
+ /* Specifically target title to prevent inheritance issues */
47
+ h1.hero-title {
48
+ line-height: 1.2 !important;
49
+ white-space: nowrap !important; /* Prevent text wrapping */
50
+ }
51
+
52
+ /* Version badge positioning fix */
53
+ .version-badge {
54
+ /* Keep badge inline with title but slightly offset */
55
+ display: inline-block !important;
56
+ margin-left: 1rem !important;
57
+ vertical-align: top !important;
58
+ }
@@ -0,0 +1,101 @@
1
+ /* =========================================
2
+ ULTIMATE OVERLAP FIX - Nuclear Option
3
+ ========================================= */
4
+
5
+ /* HERO - Maximum z-index protection */
6
+ .hero {
7
+ position: relative !important;
8
+ z-index: 500 !important; /* Nuclear z-index level */
9
+ isolation: isolate !important;
10
+ transform-style: preserve-3d !important; /* Enable 3D context */
11
+ }
12
+
13
+ /* HERO CONTENT - Ultra high z-index */
14
+ .hero-content {
15
+ position: relative !important;
16
+ z-index: 600 !important; /* Above everything except navbar */
17
+ transform: translateZ(10px) !important; /* Significantly forward */
18
+ isolation: isolate !important;
19
+ }
20
+
21
+ /* ALL SECTIONS - Force behind with multiple techniques */
22
+ .section,
23
+ #servers,
24
+ #new-features,
25
+ #docs,
26
+ #install {
27
+ position: relative !important;
28
+ z-index: 1 !important; /* Much lower */
29
+ transform: translateZ(-10px) !important; /* Significantly behind */
30
+ /* Create negative space */
31
+ margin-top: 0 !important;
32
+ /* Prevent any upward movement */
33
+ will-change: auto !important;
34
+ }
35
+
36
+ /* SPECIFIC REVOLUTIONARY FEATURES FIX */
37
+ #new-features {
38
+ z-index: 0 !important; /* Even lower */
39
+ transform: translateZ(-20px) !important; /* Far behind */
40
+ position: relative !important;
41
+ /* Prevent any layering tricks */
42
+ contain: layout style paint !important;
43
+ }
44
+
45
+ /* NAVBAR - Absolute highest */
46
+ .navbar {
47
+ z-index: 9999 !important; /* Maximum */
48
+ position: fixed !important;
49
+ isolation: isolate !important;
50
+ }
51
+
52
+ /* Version badge - ensure it stays with hero */
53
+ .version-badge {
54
+ z-index: 700 !important; /* Above hero content */
55
+ position: absolute !important;
56
+ }
57
+
58
+ /* Hero background - behind everything */
59
+ .hero-bg-animation,
60
+ .floating-orb {
61
+ z-index: 0 !important;
62
+ transform: translateZ(-5px) !important;
63
+ }
64
+
65
+ /* Additional protection - force rendering order */
66
+ .hero::before {
67
+ content: '';
68
+ position: absolute;
69
+ top: 0;
70
+ left: 0;
71
+ right: 0;
72
+ bottom: 0;
73
+ z-index: -1;
74
+ background: transparent;
75
+ pointer-events: none;
76
+ }
77
+
78
+ /* Mobile specific fixes */
79
+ @media (max-width: 768px) {
80
+ .hero {
81
+ z-index: 500 !important;
82
+ }
83
+
84
+ .hero-content {
85
+ z-index: 600 !important;
86
+ }
87
+
88
+ .section {
89
+ z-index: 1 !important;
90
+ transform: translateZ(-10px) !important;
91
+ }
92
+ }
93
+
94
+ /* Debugging - remove in production */
95
+ .hero {
96
+ /* border: 2px solid red !important; /* Visual debug */
97
+ }
98
+
99
+ .section {
100
+ /* border: 2px solid blue !important; /* Visual debug */
101
+ }
@@ -0,0 +1,101 @@
1
+ /* =========================================
2
+ WEBSITE-WIDE HERO CONSISTENCY
3
+ ========================================= */
4
+
5
+ /* Apply hero's beautiful design language to all sections */
6
+
7
+ /* All sections get hero-inspired backgrounds */
8
+ .section {
9
+ background:
10
+ radial-gradient(at 20% 80%, hsla(240, 60%, 20%, 0.2) 0%, transparent 50%),
11
+ radial-gradient(at 80% 20%, hsla(260, 60%, 25%, 0.2) 0%, transparent 50%),
12
+ radial-gradient(at 40% 40%, hsla(280, 60%, 15%, 0.2) 0%, transparent 50%),
13
+ var(--black) !important;
14
+ position: relative !important;
15
+ }
16
+
17
+ /* Hero-inspired section headers */
18
+ .section h2,
19
+ .section h3 {
20
+ background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%) !important;
21
+ -webkit-background-clip: text !important;
22
+ -webkit-text-fill-color: transparent !important;
23
+ background-clip: text !important;
24
+ filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5)) !important;
25
+ text-align: center !important;
26
+ font-family: var(--font-sans) !important;
27
+ }
28
+
29
+ /* All cards get hero glass effect */
30
+ .card {
31
+ background: rgba(255, 255, 255, 0.08) !important;
32
+ backdrop-filter: blur(20px) !important;
33
+ -webkit-backdrop-filter: blur(20px) !important;
34
+ border: 1px solid rgba(255, 255, 255, 0.15) !important;
35
+ border-radius: var(--radius-2xl) !important;
36
+ box-shadow:
37
+ 0 8px 32px rgba(0, 0, 0, 0.3),
38
+ inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
39
+ transition: all 0.3s ease !important;
40
+ }
41
+
42
+ .card:hover {
43
+ background: rgba(255, 255, 255, 0.12) !important;
44
+ border-color: rgba(255, 255, 255, 0.25) !important;
45
+ transform: translateY(-4px) !important;
46
+ box-shadow:
47
+ 0 16px 48px rgba(0, 0, 0, 0.4),
48
+ inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
49
+ }
50
+
51
+ /* Hero-inspired text styling throughout */
52
+ .section p {
53
+ color: var(--gray-200) !important;
54
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6) !important;
55
+ }
56
+
57
+ /* All buttons get hero styling */
58
+ .btn:not(.btn-hero-primary):not(.btn-hero-secondary) {
59
+ background: rgba(255, 255, 255, 0.1) !important;
60
+ color: var(--white) !important;
61
+ border: 2px solid rgba(255, 255, 255, 0.3) !important;
62
+ backdrop-filter: blur(15px) !important;
63
+ border-radius: var(--radius-xl) !important;
64
+ padding: var(--space-3) var(--space-6) !important;
65
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4) !important;
66
+ box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2) !important;
67
+ transition: all 0.3s ease !important;
68
+ }
69
+
70
+ .btn:not(.btn-hero-primary):not(.btn-hero-secondary):hover {
71
+ background: rgba(255, 255, 255, 0.2) !important;
72
+ border-color: rgba(255, 255, 255, 0.5) !important;
73
+ transform: translateY(-2px) !important;
74
+ box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3) !important;
75
+ }
76
+
77
+ /* Navigation gets hero glass effect */
78
+ .navbar {
79
+ background: rgba(0, 0, 0, 0.7) !important;
80
+ backdrop-filter: blur(20px) !important;
81
+ border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
82
+ }
83
+
84
+ /* Footer gets hero styling */
85
+ footer {
86
+ background:
87
+ radial-gradient(at 50% 0%, hsla(240, 60%, 15%, 0.3) 0%, transparent 50%),
88
+ var(--black) !important;
89
+ border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
90
+ }
91
+
92
+ /* Code blocks get hero glass effect */
93
+ .code-block,
94
+ pre,
95
+ code {
96
+ background: rgba(0, 0, 0, 0.6) !important;
97
+ border: 1px solid rgba(255, 255, 255, 0.15) !important;
98
+ backdrop-filter: blur(10px) !important;
99
+ border-radius: var(--radius-lg) !important;
100
+ color: var(--gray-100) !important;
101
+ }
@@ -0,0 +1,147 @@
1
+ <!-- Enterprise Features Showcase for v4.2.0 -->
2
+ <section id="enterprise" class="section" style="background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%); padding: var(--space-32) 0;">
3
+ <div class="container">
4
+ <div class="text-center" style="margin-bottom: var(--space-20);">
5
+ <h2 style="font-size: var(--font-6xl); font-weight: 900; color: var(--white); margin-bottom: var(--space-4);">
6
+ 🏢 Enterprise Edition Features
7
+ </h2>
8
+ <p style="font-size: var(--font-xl); color: var(--gray-300); margin-bottom: var(--space-8);">
9
+ Professional ServiceNow automation for large organizations
10
+ </p>
11
+ <div class="enterprise-badge" style="display: inline-block; background: linear-gradient(45deg, #10b981, #059669); padding: var(--space-2) var(--space-6); border-radius: var(--radius-full); font-weight: 700; color: white;">
12
+ ✨ NEW in v4.2.0 ENTERPRISE
13
+ </div>
14
+ </div>
15
+
16
+ <!-- Enterprise Features Grid -->
17
+ <div class="grid grid-cols-1 md:grid-cols-3" style="gap: var(--space-8); margin-bottom: var(--space-16);">
18
+
19
+ <!-- ITAM Feature -->
20
+ <div class="enterprise-card" style="background: var(--gradient-glass); padding: var(--space-8); border-radius: var(--radius-2xl); border: 1px solid var(--gray-700);">
21
+ <div class="feature-icon" style="font-size: var(--font-5xl); margin-bottom: var(--space-4);">🏢</div>
22
+ <h3 style="color: var(--white); font-size: var(--font-2xl); font-weight: 700; margin-bottom: var(--space-3);">
23
+ IT Asset Management
24
+ </h3>
25
+ <p style="color: var(--gray-300); margin-bottom: var(--space-6);">
26
+ Complete asset lifecycle automation with license optimization and compliance reporting
27
+ </p>
28
+
29
+ <div class="feature-tools" style="margin-bottom: var(--space-6);">
30
+ <h4 style="color: var(--white); font-size: var(--font-lg); margin-bottom: var(--space-3);">6 Enterprise Tools:</h4>
31
+ <ul style="list-style: none; padding: 0;">
32
+ <li style="color: var(--gray-400); font-size: var(--font-sm); margin-bottom: var(--space-1);">✅ snow_create_asset</li>
33
+ <li style="color: var(--gray-400); font-size: var(--font-sm); margin-bottom: var(--space-1);">✅ snow_manage_software_license</li>
34
+ <li style="color: var(--gray-400); font-size: var(--font-sm); margin-bottom: var(--space-1);">✅ snow_track_asset_lifecycle</li>
35
+ <li style="color: var(--gray-400); font-size: var(--font-sm); margin-bottom: var(--space-1);">✅ snow_asset_compliance_report</li>
36
+ <li style="color: var(--gray-400); font-size: var(--font-sm); margin-bottom: var(--space-1);">✅ snow_optimize_licenses</li>
37
+ <li style="color: var(--gray-400); font-size: var(--font-sm);">✅ snow_asset_discovery</li>
38
+ </ul>
39
+ </div>
40
+
41
+ <div class="enterprise-benefits" style="background: var(--green-900); padding: var(--space-3); border-radius: var(--radius-lg); border: 1px solid var(--green-700);">
42
+ <strong style="color: var(--green-400);">Enterprise Value:</strong>
43
+ <p style="color: var(--green-200); font-size: var(--font-sm); margin-top: var(--space-1);">
44
+ 15-25% asset cost reduction • 90% automated compliance • Real-time license optimization
45
+ </p>
46
+ </div>
47
+ </div>
48
+
49
+ <!-- SecOps Feature -->
50
+ <div class="enterprise-card" style="background: var(--gradient-glass); padding: var(--space-8); border-radius: var(--radius-2xl); border: 1px solid var(--gray-700);">
51
+ <div class="feature-icon" style="font-size: var(--font-5xl); margin-bottom: var(--space-4);">🛡️</div>
52
+ <h3 style="color: var(--white); font-size: var(--font-2xl); font-weight: 700; margin-bottom: var(--space-3);">
53
+ Security Operations
54
+ </h3>
55
+ <p style="color: var(--gray-300); margin-bottom: var(--space-6);">
56
+ Advanced security incident response with threat intelligence and automated SOAR capabilities
57
+ </p>
58
+
59
+ <div class="feature-tools" style="margin-bottom: var(--space-6);">
60
+ <h4 style="color: var(--white); font-size: var(--font-lg); margin-bottom: var(--space-3);">6 Security Tools:</h4>
61
+ <ul style="list-style: none; padding: 0;">
62
+ <li style="color: var(--gray-400); font-size: var(--font-sm); margin-bottom: var(--space-1);">✅ snow_create_security_incident</li>
63
+ <li style="color: var(--gray-400); font-size: var(--font-sm); margin-bottom: var(--space-1);">✅ snow_analyze_threat_intelligence</li>
64
+ <li style="color: var(--gray-400); font-size: var(--font-sm); margin-bottom: var(--space-1);">✅ snow_execute_security_playbook</li>
65
+ <li style="color: var(--gray-400); font-size: var(--font-sm); margin-bottom: var(--space-1);">✅ snow_vulnerability_risk_assessment</li>
66
+ <li style="color: var(--gray-400); font-size: var(--font-sm); margin-bottom: var(--space-1);">✅ snow_security_dashboard</li>
67
+ <li style="color: var(--gray-400); font-size: var(--font-sm);">✅ snow_automate_threat_response</li>
68
+ </ul>
69
+ </div>
70
+
71
+ <div class="enterprise-benefits" style="background: var(--red-900); padding: var(--space-3); border-radius: var(--radius-lg); border: 1px solid var(--red-700);">
72
+ <strong style="color: var(--red-400);">Security Value:</strong>
73
+ <p style="color: var(--red-200); font-size: var(--font-sm); margin-top: var(--space-1);">
74
+ 40-60% faster incident response • Automated threat correlation • Real-time SOC dashboard
75
+ </p>
76
+ </div>
77
+ </div>
78
+
79
+ <!-- Notifications Feature -->
80
+ <div class="enterprise-card" style="background: var(--gradient-glass); padding: var(--space-8); border-radius: var(--radius-2xl); border: 1px solid var(--gray-700);">
81
+ <div class="feature-icon" style="font-size: var(--font-5xl); margin-bottom: var(--space-4);">📨</div>
82
+ <h3 style="color: var(--white); font-size: var(--font-2xl); font-weight: 700; margin-bottom: var(--space-3);">
83
+ Notification Framework
84
+ </h3>
85
+ <p style="color: var(--gray-300); margin-bottom: var(--space-6);">
86
+ Enterprise multi-channel notification system with templates, analytics, and preference management
87
+ </p>
88
+
89
+ <div class="feature-tools" style="margin-bottom: var(--space-6);">
90
+ <h4 style="color: var(--white); font-size: var(--font-lg); margin-bottom: var(--space-3);">6 Communication Tools:</h4>
91
+ <ul style="list-style: none; padding: 0;">
92
+ <li style="color: var(--gray-400); font-size: var(--font-sm); margin-bottom: var(--space-1);">✅ snow_send_notification</li>
93
+ <li style="color: var(--gray-400); font-size: var(--font-sm); margin-bottom: var(--space-1);">✅ snow_create_notification_template</li>
94
+ <li style="color: var(--gray-400); font-size: var(--font-sm); margin-bottom: var(--space-1);">✅ snow_notification_preferences</li>
95
+ <li style="color: var(--gray-400); font-size: var(--font-sm); margin-bottom: var(--space-1);">✅ snow_emergency_broadcast</li>
96
+ <li style="color: var(--gray-400); font-size: var(--font-sm); margin-bottom: var(--space-1);">✅ snow_notification_analytics</li>
97
+ <li style="color: var(--gray-400); font-size: var(--font-sm);">✅ snow_schedule_notification</li>
98
+ </ul>
99
+ </div>
100
+
101
+ <div class="enterprise-benefits" style="background: var(--blue-900); padding: var(--space-3); border-radius: var(--radius-lg); border: 1px solid var(--blue-700);">
102
+ <strong style="color: var(--blue-400);">Communication Value:</strong>
103
+ <p style="color: var(--blue-200); font-size: var(--font-sm); margin-top: var(--space-1);">
104
+ Multi-channel delivery • Template automation • Emergency broadcasting • Analytics insights
105
+ </p>
106
+ </div>
107
+ </div>
108
+ </div>
109
+
110
+ <!-- Performance Improvements Section -->
111
+ <div class="enterprise-improvements" style="background: var(--gradient-glass); padding: var(--space-12); border-radius: var(--radius-2xl); border: 1px solid var(--gray-700); margin-bottom: var(--space-16);">
112
+ <h3 style="color: var(--white); font-size: var(--font-3xl); font-weight: 700; text-align: center; margin-bottom: var(--space-8);">
113
+ 🚀 v4.2.0 Performance Optimizations
114
+ </h3>
115
+
116
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4" style="gap: var(--space-6);">
117
+ <div class="perf-metric" style="text-align: center;">
118
+ <div style="font-size: var(--font-4xl); font-weight: 900; color: var(--green-400); margin-bottom: var(--space-2);">-10,135</div>
119
+ <p style="color: var(--gray-400); font-size: var(--font-sm);">Lines of Code Removed</p>
120
+ </div>
121
+ <div class="perf-metric" style="text-align: center;">
122
+ <div style="font-size: var(--font-4xl); font-weight: 900; color: var(--blue-400); margin-bottom: var(--space-2);">85%</div>
123
+ <p style="color: var(--gray-400); font-size: var(--font-sm);">Memory Allocation Reduction</p>
124
+ </div>
125
+ <div class="perf-metric" style="text-align: center;">
126
+ <div style="font-size: var(--font-4xl); font-weight: 900; color: var(--purple-400); margin-bottom: var(--space-2);">5MB+</div>
127
+ <p style="color: var(--gray-400); font-size: var(--font-sm);">Widget Support (vs 30k)</p>
128
+ </div>
129
+ <div class="perf-metric" style="text-align: center;">
130
+ <div style="font-size: var(--font-4xl); font-weight: 900; color: var(--yellow-400); margin-bottom: var(--space-2);">200k</div>
131
+ <p style="color: var(--gray-400); font-size: var(--font-sm);">Token Limits (vs 20k)</p>
132
+ </div>
133
+ </div>
134
+ </div>
135
+
136
+ <!-- Summary -->
137
+ <div class="text-center">
138
+ <p style="font-size: var(--font-2xl); color: var(--white); font-weight: 700; margin-bottom: var(--space-4);">
139
+ From Framework to Complete Enterprise Platform
140
+ </p>
141
+ <p style="color: var(--gray-400); font-size: var(--font-lg);">
142
+ Snow-Flow v4.2.0 ENTERPRISE: 355+ tools across 23 specialized MCP servers with memory optimization,
143
+ massive widget support, and complete enterprise ServiceNow coverage including ITAM, SecOps, and multi-channel notifications.
144
+ </p>
145
+ </div>
146
+ </div>
147
+ </section>