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
package/website/tools.js CHANGED
@@ -1,5 +1,5 @@
1
1
  // Complete Snow-Flow MCP Tools Database
2
- // 🏔️ 18 MCP Servers with 200+ Tools - v3.6.25
2
+ // 🏔️ 23 MCP Servers with 355+ Tools - v4.2.0 ENTERPRISE OPTIMIZED
3
3
 
4
4
  const snowFlowTools = {
5
5
  "servicenow-deployment": {
@@ -384,7 +384,7 @@ const snowFlowTools = {
384
384
  {
385
385
  name: "snow_create_knowledge_article",
386
386
  description: "Create knowledge articles with KB validation. Now prevents orphaned articles by validating knowledge base exists!",
387
- highlight: "v3.6.25: KB validation added"
387
+ highlight: "v4.2.0: Enhanced enterprise validation"
388
388
  },
389
389
  {
390
390
  name: "snow_search_knowledge",
@@ -396,13 +396,13 @@ const snowFlowTools = {
396
396
  },
397
397
  {
398
398
  name: "snow_create_catalog_variable",
399
- description: "Create catalog variables in correct table (item_option_new). Fixed in v3.6.23!",
400
- highlight: "v3.6.23: Table fix"
399
+ description: "Create catalog variables in correct table (item_option_new). Enterprise optimization in v4.2.0!",
400
+ highlight: "v4.2.0: Enterprise ready"
401
401
  },
402
402
  {
403
403
  name: "snow_create_catalog_ui_policy",
404
- description: "Create catalog UI policies with conditions and actions. Enhanced debugging in v3.6.22.",
405
- highlight: "v3.6.22: Enhanced debugging"
404
+ description: "Create catalog UI policies with conditions and actions. Enterprise scale debugging in v4.2.0.",
405
+ highlight: "v4.2.0: Enterprise debugging"
406
406
  },
407
407
  {
408
408
  name: "snow_order_catalog_item",
@@ -634,6 +634,125 @@ const snowFlowTools = {
634
634
  description: "Generate comprehensive performance reports."
635
635
  }
636
636
  ]
637
+ },
638
+
639
+ // ===== NEW ENTERPRISE MCP SERVERS (v4.2.0) =====
640
+
641
+ "servicenow-itam": {
642
+ name: "🏢 IT Asset Management",
643
+ description: "Complete enterprise asset lifecycle management with license optimization and compliance reporting",
644
+ badge: "6 Enterprise Tools",
645
+ highlight: "NEW in v4.2.0",
646
+ tools: [
647
+ {
648
+ name: "snow_create_asset",
649
+ description: "Create IT asset with full lifecycle tracking, warranty management, and financial controls. Supports asset tags, locations, assignments, and automated audit trails.",
650
+ highlight: "Enterprise ITAM"
651
+ },
652
+ {
653
+ name: "snow_manage_software_license",
654
+ description: "Complete software license management with compliance tracking, usage optimization, cost analysis, and automatic renewal management.",
655
+ highlight: "License Optimization"
656
+ },
657
+ {
658
+ name: "snow_track_asset_lifecycle",
659
+ description: "Track complete asset lifecycle from procurement through disposal with automated state transitions and compliance reporting.",
660
+ highlight: "Lifecycle Automation"
661
+ },
662
+ {
663
+ name: "snow_asset_compliance_report",
664
+ description: "Generate comprehensive asset compliance reports for auditing with warranty tracking, cost analysis, and optimization recommendations.",
665
+ highlight: "Compliance Reporting"
666
+ },
667
+ {
668
+ name: "snow_optimize_licenses",
669
+ description: "AI-powered license usage analysis with cost optimization recommendations, usage efficiency scoring, and potential savings calculations.",
670
+ highlight: "AI Cost Optimization"
671
+ },
672
+ {
673
+ name: "snow_asset_discovery",
674
+ description: "Automated asset discovery from multiple sources with duplicate normalization, relationship creation, and CMDB integration.",
675
+ highlight: "Discovery Automation"
676
+ }
677
+ ]
678
+ },
679
+
680
+ "servicenow-secops": {
681
+ name: "🛡️ Security Operations",
682
+ description: "Advanced security incident response with threat intelligence and automated SOAR capabilities",
683
+ badge: "6 Security Tools",
684
+ highlight: "NEW in v4.2.0",
685
+ tools: [
686
+ {
687
+ name: "snow_create_security_incident",
688
+ description: "Create security incidents with automated threat correlation, IOC processing, affected system linking, and priority assignment based on threat intelligence.",
689
+ highlight: "Automated Threat Response"
690
+ },
691
+ {
692
+ name: "snow_analyze_threat_intelligence",
693
+ description: "Analyze and correlate threat intelligence with organizational security posture, IOC enrichment, and risk scoring with confidence intervals.",
694
+ highlight: "Threat Intelligence"
695
+ },
696
+ {
697
+ name: "snow_execute_security_playbook",
698
+ description: "Execute automated security response playbooks with orchestrated containment, eradication, and recovery actions.",
699
+ highlight: "SOAR Automation"
700
+ },
701
+ {
702
+ name: "snow_vulnerability_risk_assessment",
703
+ description: "Automated vulnerability risk assessment with CVSS scoring, business context analysis, and remediation prioritization.",
704
+ highlight: "Risk Assessment"
705
+ },
706
+ {
707
+ name: "snow_security_dashboard",
708
+ description: "Real-time security operations dashboard with executive, analyst, incident response, and compliance views with trend analysis.",
709
+ highlight: "Real-time SOC"
710
+ },
711
+ {
712
+ name: "snow_automate_threat_response",
713
+ description: "Fully automated threat response with containment, isolation, eradication, and recovery phases with notification orchestration.",
714
+ highlight: "Automated Response"
715
+ }
716
+ ]
717
+ },
718
+
719
+ "servicenow-notifications": {
720
+ name: "📨 Notification Framework",
721
+ description: "Enterprise multi-channel notification system with templates, analytics, and preference management",
722
+ badge: "6 Communication Tools",
723
+ highlight: "NEW in v4.2.0",
724
+ tools: [
725
+ {
726
+ name: "snow_send_notification",
727
+ description: "Send multi-channel notifications (email, SMS, push, Slack, Teams) with template support, personalization, and delivery tracking.",
728
+ highlight: "Multi-channel Messaging"
729
+ },
730
+ {
731
+ name: "snow_create_notification_template",
732
+ description: "Create reusable notification templates with variable substitution, multi-channel support, and automated formatting.",
733
+ highlight: "Template Engine"
734
+ },
735
+ {
736
+ name: "snow_notification_preferences",
737
+ description: "Manage user notification preferences, quiet hours, escalation channels, and routing rules with granular control.",
738
+ highlight: "Preference Management"
739
+ },
740
+ {
741
+ name: "snow_emergency_broadcast",
742
+ description: "Send emergency broadcast notifications with preference override, acknowledgment tracking, and targeted audience selection.",
743
+ highlight: "Emergency Broadcasting"
744
+ },
745
+ {
746
+ name: "snow_notification_analytics",
747
+ description: "Analyze notification delivery rates, engagement metrics, channel effectiveness, and template performance with insights.",
748
+ highlight: "Delivery Analytics"
749
+ },
750
+ {
751
+ name: "snow_schedule_notification",
752
+ description: "Schedule future notifications with advanced scheduling options, recurrence patterns, and conditional delivery triggers.",
753
+ highlight: "Scheduled Delivery"
754
+ }
755
+ ]
637
756
  }
638
757
  };
639
758
 
@@ -0,0 +1,142 @@
1
+ <!-- What is Snow-Flow Section - Explains how it works -->
2
+ <section id="what-is-snow-flow" class="section hero-inspired-section" style="padding: var(--space-24) 0;">
3
+ <div class="container">
4
+ <!-- Section Header -->
5
+ <div class="text-center" style="margin-bottom: var(--space-16);">
6
+ <h2 class="hero-inspired-title" style="font-size: var(--font-5xl); font-weight: 800; margin-bottom: var(--space-6);">
7
+ What is Snow-Flow?
8
+ </h2>
9
+ <p class="hero-inspired-subtitle" style="font-size: var(--font-xl); max-width: 800px; margin: 0 auto;">
10
+ Conversational ServiceNow development platform using Claude Code as your development interface
11
+ </p>
12
+ </div>
13
+
14
+ <!-- How it Works Grid -->
15
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8" style="margin-bottom: var(--space-20);">
16
+
17
+ <!-- MCP Server Integration -->
18
+ <div class="hero-inspired-card text-center">
19
+ <div style="font-size: var(--font-4xl); margin-bottom: var(--space-4);">🏗️</div>
20
+ <h3 style="color: white; font-size: var(--font-xl); margin-bottom: var(--space-3);">MCP Server Integration</h3>
21
+ <p style="color: var(--gray-200); line-height: var(--leading-relaxed);">
22
+ 20+ specialized MCP (Model Context Protocol) servers provide Claude Code with direct ServiceNow API access.
23
+ Each server handles specific ServiceNow operations like table queries, widget deployment, and machine learning.
24
+ </p>
25
+ </div>
26
+
27
+ <!-- Conversational Development -->
28
+ <div class="hero-inspired-card text-center">
29
+ <div style="font-size: var(--font-4xl); margin-bottom: var(--space-4);">🤖</div>
30
+ <h3 style="color: white; font-size: var(--font-xl); margin-bottom: var(--space-3);">Conversational Development</h3>
31
+ <p style="color: var(--gray-200); line-height: var(--leading-relaxed);">
32
+ Develop ServiceNow solutions through natural conversation with Claude Code.
33
+ No more navigating ServiceNow's web interface - just describe what you need and let the multi-agent system handle it.
34
+ </p>
35
+ </div>
36
+
37
+ <!-- Multi-Agent Orchestration -->
38
+ <div class="hero-inspired-card text-center">
39
+ <div style="font-size: var(--font-4xl); margin-bottom: var(--space-4);">⚡</div>
40
+ <h3 style="color: white; font-size: var(--font-xl); margin-bottom: var(--space-3);">Multi-Agent Orchestration</h3>
41
+ <p style="color: var(--gray-200); line-height: var(--leading-relaxed);">
42
+ Complex ServiceNow tasks are handled by coordinated specialist agents.
43
+ Each agent focuses on specific capabilities like widget development, data analysis, or deployment automation.
44
+ </p>
45
+ </div>
46
+ </div>
47
+
48
+ <!-- How Snow-Flow Works -->
49
+ <div class="hero-inspired-card" style="padding: var(--space-12); margin-bottom: var(--space-16);">
50
+ <h3 style="color: white; font-size: var(--font-3xl); text-align: center; margin-bottom: var(--space-8);">
51
+ ServiceNow Development: Traditional vs Conversational
52
+ </h3>
53
+
54
+ <div class="grid grid-cols-1 lg:grid-cols-2 gap-12">
55
+ <!-- Traditional ServiceNow Development -->
56
+ <div>
57
+ <h4 style="color: #ef4444; font-size: var(--font-xl); margin-bottom: var(--space-4);">
58
+ ❌ Traditional ServiceNow Development
59
+ </h4>
60
+ <ul style="color: var(--gray-300); line-height: var(--leading-relaxed); list-style: none; padding: 0;">
61
+ <li style="margin-bottom: var(--space-2);">• Web-based development through ServiceNow UI</li>
62
+ <li style="margin-bottom: var(--space-2);">• Limited browser text editing capabilities</li>
63
+ <li style="margin-bottom: var(--space-2);">• Copy-paste workflows between browser tabs</li>
64
+ <li style="margin-bottom: var(--space-2);">• Separate interfaces for different artifact types</li>
65
+ <li style="margin-bottom: var(--space-2);">• Manual table queries and data analysis</li>
66
+ <li style="margin-bottom: var(--space-2);">• Context switching between ServiceNow modules</li>
67
+ <li style="margin-bottom: var(--space-2);">• Steep learning curve for ServiceNow-specific patterns</li>
68
+ </ul>
69
+ </div>
70
+
71
+ <!-- Conversational Development with Snow-Flow -->
72
+ <div>
73
+ <h4 style="color: #10b981; font-size: var(--font-xl); margin-bottom: var(--space-4);">
74
+ ✅ Conversational Development with Snow-Flow
75
+ </h4>
76
+ <ul style="color: var(--gray-300); line-height: var(--leading-relaxed); list-style: none; padding: 0;">
77
+ <li style="margin-bottom: var(--space-2);">• Natural language development through Claude Code</li>
78
+ <li style="margin-bottom: var(--space-2);">• Native code editing with full IDE features</li>
79
+ <li style="margin-bottom: var(--space-2);">• Local file-based development workflow</li>
80
+ <li style="margin-bottom: var(--space-2);">• Unified interface for all ServiceNow operations</li>
81
+ <li style="margin-bottom: var(--space-2);">• Conversational queries: "Show me all P1 incidents"</li>
82
+ <li style="margin-bottom: var(--space-2);">• Multi-agent coordination for complex tasks</li>
83
+ <li style="margin-bottom: var(--space-2);">• AI handles ServiceNow complexity and best practices</li>
84
+ </ul>
85
+ </div>
86
+ </div>
87
+ </div>
88
+
89
+ <!-- Core Capabilities -->
90
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-8">
91
+
92
+ <!-- Conversational ServiceNow Operations -->
93
+ <div class="hero-inspired-card">
94
+ <div style="display: flex; align-items: center; margin-bottom: var(--space-4);">
95
+ <span style="font-size: var(--font-3xl); margin-right: var(--space-3);">💬</span>
96
+ <h4 style="color: white; font-size: var(--font-xl);">Conversational ServiceNow Operations</h4>
97
+ </div>
98
+ <p style="color: var(--gray-200); margin-bottom: var(--space-4);">
99
+ Talk to your ServiceNow instance through natural language. Ask Claude Code to query tables,
100
+ deploy widgets, or analyze data - the MCP servers handle the technical implementation.
101
+ </p>
102
+ <div style="background: rgba(0,0,0,0.4); padding: var(--space-3); border-radius: var(--radius-md); font-family: var(--font-mono); font-size: var(--font-sm); color: var(--gray-300);">
103
+ "Show me all P1 incidents from last week"<br>
104
+ // → snow_query_table handles the query<br>
105
+ <br>
106
+ "Deploy this widget to my portal"<br>
107
+ // → snow_deploy validates and deploys
108
+ </div>
109
+ </div>
110
+
111
+ <!-- Local Development Bridge -->
112
+ <div class="hero-inspired-card">
113
+ <div style="display: flex; align-items: center; margin-bottom: var(--space-4);">
114
+ <span style="font-size: var(--font-3xl); margin-right: var(--space-3);">💻</span>
115
+ <h4 style="color: white; font-size: var(--font-xl);">Local Development Bridge</h4>
116
+ </div>
117
+ <p style="color: var(--gray-200); margin-bottom: var(--space-4);">
118
+ Pull ServiceNow artifacts to local files, edit with native development tools,
119
+ then push back with validation. No more browser-based limitations.
120
+ </p>
121
+ <div style="background: rgba(0,0,0,0.4); padding: var(--space-3); border-radius: var(--radius-md); font-family: var(--font-mono); font-size: var(--font-sm); color: var(--gray-300);">
122
+ snow_pull_artifact({<br>
123
+ &nbsp;&nbsp;sys_id: "widget_sys_id",<br>
124
+ &nbsp;&nbsp;table: "sp_widget"<br>
125
+ })<br>
126
+ // Edit locally with full IDE features<br>
127
+ snow_push_artifact({ sys_id: "widget_sys_id" })
128
+ </div>
129
+ </div>
130
+ </div>
131
+
132
+ <!-- Call to Action -->
133
+ <div class="text-center" style="margin-top: var(--space-16);">
134
+ <a href="#install" class="btn btn-hero-primary" style="font-size: var(--font-lg); padding: var(--space-4) var(--space-8);">
135
+ Start Conversational ServiceNow Development
136
+ </a>
137
+ <p style="color: var(--gray-400); margin-top: var(--space-4); font-size: var(--font-sm);">
138
+ npm install snow-flow • Setup in minutes • Talk to your ServiceNow instance
139
+ </p>
140
+ </div>
141
+ </div>
142
+ </section>
package/assets/logo.txt DELETED
@@ -1,8 +0,0 @@
1
-
2
- ❄ ❄
3
- ❄ ❄ Snow-Flow
4
- /\ ❄ ServiceNow Multi-Agent Framework
5
- / \ ❄
6
- / \❄
7
- /______\
8
- ||||
@@ -1,51 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="200" height="200" viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
3
- <!-- Mountain -->
4
- <path d="M 50 150 L 100 50 L 150 150 Z" fill="#4A90E2" stroke="#2E5C8A" stroke-width="2"/>
5
-
6
- <!-- Snow cap on mountain -->
7
- <path d="M 100 50 L 80 90 L 120 90 Z" fill="#FFFFFF" stroke="#E0E0E0" stroke-width="1"/>
8
-
9
- <!-- Mountain base -->
10
- <rect x="40" y="150" width="120" height="10" fill="#2E5C8A"/>
11
-
12
- <!-- Snowflakes falling from top -->
13
- <!-- Motion trail from top -->
14
- <circle cx="100" cy="20" r="1" fill="#4A90E2" opacity="0.1"/>
15
- <circle cx="105" cy="30" r="1.2" fill="#4A90E2" opacity="0.2"/>
16
- <circle cx="95" cy="40" r="1.5" fill="#4A90E2" opacity="0.3"/>
17
-
18
- <!-- Main snowflake -->
19
- <g transform="translate(100, 55)">
20
- <!-- Snowflake center -->
21
- <circle cx="0" cy="0" r="3" fill="#FFFFFF" stroke="#4A90E2" stroke-width="1"/>
22
-
23
- <!-- Snowflake arms -->
24
- <line x1="-12" y1="0" x2="12" y2="0" stroke="#4A90E2" stroke-width="2"/>
25
- <line x1="0" y1="-12" x2="0" y2="12" stroke="#4A90E2" stroke-width="2"/>
26
- <line x1="-8" y1="-8" x2="8" y2="8" stroke="#4A90E2" stroke-width="2"/>
27
- <line x1="-8" y1="8" x2="8" y2="-8" stroke="#4A90E2" stroke-width="2"/>
28
-
29
- <!-- Snowflake decorations -->
30
- <circle cx="-8" cy="0" r="2" fill="#FFFFFF"/>
31
- <circle cx="8" cy="0" r="2" fill="#FFFFFF"/>
32
- <circle cx="0" cy="-8" r="2" fill="#FFFFFF"/>
33
- <circle cx="0" cy="8" r="2" fill="#FFFFFF"/>
34
- </g>
35
-
36
- <!-- Additional smaller snowflakes -->
37
- <g transform="translate(80, 70) scale(0.7)">
38
- <circle cx="0" cy="0" r="2" fill="#FFFFFF" stroke="#4A90E2" stroke-width="1"/>
39
- <line x1="-8" y1="0" x2="8" y2="0" stroke="#4A90E2" stroke-width="1.5"/>
40
- <line x1="0" y1="-8" x2="0" y2="8" stroke="#4A90E2" stroke-width="1.5"/>
41
- </g>
42
-
43
- <g transform="translate(120, 65) scale(0.5)">
44
- <circle cx="0" cy="0" r="2" fill="#FFFFFF" stroke="#4A90E2" stroke-width="1"/>
45
- <line x1="-8" y1="0" x2="8" y2="0" stroke="#4A90E2" stroke-width="1.5"/>
46
- <line x1="0" y1="-8" x2="0" y2="8" stroke="#4A90E2" stroke-width="1.5"/>
47
- </g>
48
-
49
- <!-- Text -->
50
- <text x="100" y="180" font-family="Arial, sans-serif" font-size="20" font-weight="bold" text-anchor="middle" fill="#2E5C8A">Snow-Flow</text>
51
- </svg>