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.
- package/README.md +186 -554
- package/cloudbuild-npm.yaml +132 -0
- package/cloudbuild-website.yaml +92 -0
- package/cloudbuild.yaml +141 -0
- package/dist/agent/interactive.d.ts +11 -0
- package/dist/agent/interactive.js +190 -0
- package/dist/agent/session.d.ts +12 -0
- package/dist/agent/session.js +106 -0
- package/dist/cli/auth.d.ts +3 -0
- package/dist/cli/auth.js +59 -0
- package/dist/cli/session.d.ts +3 -0
- package/dist/cli/session.js +46 -0
- package/dist/cli.js +81 -0
- package/dist/config/llm-config-loader.d.ts +45 -0
- package/dist/config/llm-config-loader.js +49 -0
- package/dist/index.js +1 -3
- package/dist/intelligence/performance-recommendations-engine.js +0 -1
- package/dist/llm/keys.d.ts +5 -0
- package/dist/llm/keys.js +29 -0
- package/dist/llm/providers.d.ts +11 -0
- package/dist/llm/providers.js +77 -0
- package/dist/mcp/advanced/servicenow-advanced-features-mcp.js +12 -12
- package/dist/mcp/bridge.d.ts +10 -0
- package/dist/mcp/bridge.js +31 -0
- package/dist/mcp/servicenow-development-assistant-mcp.js +1 -1
- package/dist/mcp/servicenow-machine-learning-mcp.js +2 -2
- package/dist/mcp/servicenow-reporting-analytics-mcp.js +1 -1
- package/dist/mcp/shared/mcp-types.d.ts +37 -0
- package/dist/mcp/shared/mcp-types.js +7 -0
- package/dist/mcp/shared/response-limiter.js +1 -1
- package/dist/memory/hierarchical-memory-system.d.ts +42 -0
- package/dist/memory/hierarchical-memory-system.js +60 -0
- package/dist/memory/memory-system.d.ts +34 -0
- package/dist/memory/memory-system.js +36 -0
- package/dist/memory/snow-flow-memory-patterns.d.ts +47 -28
- package/dist/memory/snow-flow-memory-patterns.js +46 -25
- package/dist/session/store.d.ts +47 -0
- package/dist/session/store.js +74 -0
- package/dist/snow-flow-system.js +0 -1
- package/dist/testing/integration-test-suite.js +0 -1
- package/dist/utils/artifact-local-sync.js +17 -0
- package/dist/utils/artifact-sync/artifact-registry.js +11 -11
- package/dist/utils/chunking-manager.d.ts +39 -0
- package/dist/utils/chunking-manager.js +143 -0
- package/dist/utils/smart-field-fetcher.js +11 -9
- package/package.json +3 -3
- package/website/Dockerfile +3 -2
- package/website/cloudbuild.yaml +4 -3
- package/website/complete-mcp-reference.html +1040 -0
- package/website/components/hero/Hero.html +9 -9
- package/website/components/hero/Hero.jsx +3 -3
- package/website/css/button-contrast-fixes.css +133 -0
- package/website/css/button-fixes.css +49 -0
- package/website/css/enterprise-section-update.css +38 -0
- package/website/css/font-standardization.css +54 -0
- package/website/css/footer-hero-styling.css +73 -0
- package/website/css/hero-compact-spacing.css +60 -0
- package/website/css/hero-contrast-fixes.css +195 -0
- package/website/css/hero-inspired-design.css +135 -0
- package/website/css/hero-size-optimization.css +146 -0
- package/website/css/hero-spacing-improvements.css +139 -0
- package/website/css/hero-stats-visibility.css +98 -0
- package/website/css/mobile-hero-fix.css +215 -0
- package/website/css/navbar-hero-styling.css +70 -0
- package/website/css/reference-text-contrast.css +101 -0
- package/website/css/scroll-overlap-nuclear-fix.css +127 -0
- package/website/css/section-layering-fix.css +85 -0
- package/website/css/style.css +37 -10
- package/website/css/title-layout-fix.css +58 -0
- package/website/css/ultimate-overlap-fix.css +101 -0
- package/website/css/website-hero-consistency.css +101 -0
- package/website/enterprise-features.html +147 -0
- package/website/index.html +268 -43
- package/website/js/animations.js +20 -23
- package/website/js/main.js +73 -7
- package/website/mcp-reference-link.html +16 -0
- package/website/mcp-servers.html +2 -2
- package/website/tools.js +125 -6
- package/website/what-is-snow-flow-section.html +142 -0
- package/assets/logo.txt +0 -8
- package/assets/snow-flow-logo.svg +0 -51
package/website/index.html
CHANGED
|
@@ -3,11 +3,23 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="UTF-8">
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
-
<title>Snow-Flow
|
|
7
|
-
<meta name="description" content="Snow-Flow
|
|
6
|
+
<title>Snow-Flow | Conversational ServiceNow Development Platform</title>
|
|
7
|
+
<meta name="description" content="Snow-Flow: Conversational ServiceNow development platform using Claude Code. Multi-agent orchestration with 20+ MCP servers providing 200+ ServiceNow tools for comprehensive platform development.">
|
|
8
8
|
|
|
9
9
|
<!-- Modern CSS -->
|
|
10
10
|
<link rel="stylesheet" href="css/style.css">
|
|
11
|
+
<link rel="stylesheet" href="css/hero-contrast-fixes.css">
|
|
12
|
+
<link rel="stylesheet" href="css/button-fixes.css">
|
|
13
|
+
<link rel="stylesheet" href="css/title-layout-fix.css">
|
|
14
|
+
<link rel="stylesheet" href="css/button-contrast-fixes.css">
|
|
15
|
+
<link rel="stylesheet" href="css/hero-stats-visibility.css">
|
|
16
|
+
<link rel="stylesheet" href="css/font-standardization.css">
|
|
17
|
+
<link rel="stylesheet" href="css/enterprise-section-update.css">
|
|
18
|
+
<link rel="stylesheet" href="css/hero-inspired-design.css">
|
|
19
|
+
<link rel="stylesheet" href="css/website-hero-consistency.css">
|
|
20
|
+
<link rel="stylesheet" href="css/navbar-hero-styling.css">
|
|
21
|
+
<link rel="stylesheet" href="css/footer-hero-styling.css">
|
|
22
|
+
<link rel="stylesheet" href="css/hero-compact-spacing.css">
|
|
11
23
|
|
|
12
24
|
<!-- Modern Font Stack -->
|
|
13
25
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
@@ -26,6 +38,7 @@
|
|
|
26
38
|
<li><a href="#home" class="navbar-link">Home</a></li>
|
|
27
39
|
<li><a href="#features" class="navbar-link">Features</a></li>
|
|
28
40
|
<li><a href="#servers" class="navbar-link">MCP</a></li>
|
|
41
|
+
<li><a href="complete-mcp-reference.html" class="navbar-link">Complete Reference</a></li>
|
|
29
42
|
<li><a href="#install" class="navbar-link">Install</a></li>
|
|
30
43
|
<li><a href="#docs" class="navbar-link">Docs</a></li>
|
|
31
44
|
</ul>
|
|
@@ -91,7 +104,7 @@
|
|
|
91
104
|
<span class="title-letter" style="animation-delay: 0.7s">L</span>
|
|
92
105
|
<span class="title-letter" style="animation-delay: 0.8s">O</span>
|
|
93
106
|
<span class="title-letter" style="animation-delay: 0.9s">W</span>
|
|
94
|
-
<span class="version-badge animated-badge">
|
|
107
|
+
<span class="version-badge animated-badge">Multi-Agent Platform</span>
|
|
95
108
|
</h1>
|
|
96
109
|
|
|
97
110
|
<!-- Animated Subtitle with Enhanced Effect -->
|
|
@@ -116,52 +129,48 @@
|
|
|
116
129
|
</span>
|
|
117
130
|
<span class="pill pill-pulse" style="animation-delay: 2.4s">
|
|
118
131
|
<span class="pill-icon">⚡</span>
|
|
119
|
-
<span class="pill-text">200+ Tools</span>
|
|
132
|
+
<span class="pill-text">200+ ServiceNow Tools</span>
|
|
120
133
|
</span>
|
|
121
134
|
<span class="pill pill-float" style="animation-delay: 2.6s">
|
|
122
|
-
<span class="pill-icon"
|
|
123
|
-
<span class="pill-text">
|
|
135
|
+
<span class="pill-icon">🏗️</span>
|
|
136
|
+
<span class="pill-text">20+ MCP Servers</span>
|
|
124
137
|
</span>
|
|
125
138
|
<span class="pill pill-shine" style="animation-delay: 2.8s">
|
|
126
|
-
<span class="pill-icon"
|
|
127
|
-
<span class="pill-text">
|
|
139
|
+
<span class="pill-icon">💬</span>
|
|
140
|
+
<span class="pill-text">Conversational</span>
|
|
128
141
|
</span>
|
|
129
142
|
</div>
|
|
130
143
|
|
|
131
|
-
<!--
|
|
144
|
+
<!-- HERO-INSPIRED CTA Buttons -->
|
|
132
145
|
<div class="hero-actions" style="animation-delay: 3s">
|
|
133
|
-
<a href="#install" class="btn btn-primary
|
|
134
|
-
<span class="btn-
|
|
135
|
-
|
|
136
|
-
<span class="btn-icon">🚀</span>
|
|
137
|
-
</span>
|
|
138
|
-
<div class="btn-particles"></div>
|
|
146
|
+
<a href="#install" class="btn btn-hero-primary">
|
|
147
|
+
<span class="btn-text">Start Building</span>
|
|
148
|
+
<span class="btn-icon">🚀</span>
|
|
139
149
|
</a>
|
|
140
|
-
<a href="https://github.com/groeimetai/snow-flow" target="_blank" class="btn btn-
|
|
141
|
-
<span class="btn-
|
|
142
|
-
|
|
143
|
-
<span class="btn-icon">⭐</span>
|
|
144
|
-
</span>
|
|
145
|
-
<span class="btn-badge pulse">v3.6.25</span>
|
|
150
|
+
<a href="https://github.com/groeimetai/snow-flow" target="_blank" class="btn btn-hero-secondary">
|
|
151
|
+
<span class="btn-text">View on GitHub</span>
|
|
152
|
+
<span class="btn-icon">⭐</span>
|
|
146
153
|
</a>
|
|
147
154
|
</div>
|
|
148
155
|
|
|
149
|
-
<!-- Enhanced Stats Bar with Animation -->
|
|
156
|
+
<!-- Enhanced Stats Bar with Animation + Emojis -->
|
|
150
157
|
<div class="hero-stats floating" style="animation-delay: 3.5s">
|
|
151
158
|
<div class="stat-item">
|
|
152
159
|
<span class="stat-icon">🖥️</span>
|
|
153
|
-
<span class="stat-number counter" data-target="
|
|
160
|
+
<span class="stat-number counter" data-target="20">0</span>+
|
|
154
161
|
<span class="stat-label">MCP Servers</span>
|
|
155
162
|
</div>
|
|
156
163
|
<div class="stat-divider"></div>
|
|
157
164
|
<div class="stat-item">
|
|
165
|
+
<span class="stat-icon">⚡</span>
|
|
158
166
|
<span class="stat-number counter" data-target="200">0</span>+
|
|
159
|
-
<span class="stat-label">Tools</span>
|
|
167
|
+
<span class="stat-label">ServiceNow Tools</span>
|
|
160
168
|
</div>
|
|
161
169
|
<div class="stat-divider"></div>
|
|
162
170
|
<div class="stat-item">
|
|
163
|
-
<span class="stat-
|
|
164
|
-
<span class="stat-
|
|
171
|
+
<span class="stat-icon">💬</span>
|
|
172
|
+
<span class="stat-number counter" data-target="100">0</span>%
|
|
173
|
+
<span class="stat-label">Conversational</span>
|
|
165
174
|
</div>
|
|
166
175
|
</div>
|
|
167
176
|
</div>
|
|
@@ -173,6 +182,151 @@
|
|
|
173
182
|
</div>
|
|
174
183
|
</section>
|
|
175
184
|
|
|
185
|
+
<!-- What is Snow-Flow Section -->
|
|
186
|
+
<section id="what-is-snow-flow" class="section hero-inspired-section" style="padding: var(--space-24) 0;">
|
|
187
|
+
<div class="container">
|
|
188
|
+
<!-- Section Header -->
|
|
189
|
+
<div class="text-center" style="margin-bottom: var(--space-16);">
|
|
190
|
+
<h2 class="hero-inspired-title" style="font-size: var(--font-5xl); font-weight: 800; margin-bottom: var(--space-6);">
|
|
191
|
+
What is Snow-Flow?
|
|
192
|
+
</h2>
|
|
193
|
+
<p class="hero-inspired-subtitle" style="font-size: var(--font-xl); max-width: 800px; margin: 0 auto;">
|
|
194
|
+
AI-powered ServiceNow development that transforms manual workflows into intelligent automation
|
|
195
|
+
</p>
|
|
196
|
+
</div>
|
|
197
|
+
|
|
198
|
+
<!-- How it Works Grid -->
|
|
199
|
+
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8" style="margin-bottom: var(--space-20);">
|
|
200
|
+
|
|
201
|
+
<!-- MCP Architecture -->
|
|
202
|
+
<div class="hero-inspired-card text-center">
|
|
203
|
+
<div style="font-size: var(--font-4xl); margin-bottom: var(--space-4);">🏗️</div>
|
|
204
|
+
<h3 style="color: white; font-size: var(--font-xl); margin-bottom: var(--space-3);">MCP Architecture</h3>
|
|
205
|
+
<p style="color: var(--gray-200); line-height: var(--leading-relaxed);">
|
|
206
|
+
23 specialized MCP servers provide Claude AI with direct access to ServiceNow APIs.
|
|
207
|
+
Each server handles specific modules like ITAM, SecOps, and notifications.
|
|
208
|
+
</p>
|
|
209
|
+
</div>
|
|
210
|
+
|
|
211
|
+
<!-- AI-Powered Development -->
|
|
212
|
+
<div class="hero-inspired-card text-center">
|
|
213
|
+
<div style="font-size: var(--font-4xl); margin-bottom: var(--space-4);">🤖</div>
|
|
214
|
+
<h3 style="color: white; font-size: var(--font-xl); margin-bottom: var(--space-3);">AI-Powered Development</h3>
|
|
215
|
+
<p style="color: var(--gray-200); line-height: var(--leading-relaxed);">
|
|
216
|
+
Claude AI understands ServiceNow's complexity and generates production-ready code.
|
|
217
|
+
From widget debugging to enterprise asset management - AI handles the heavy lifting.
|
|
218
|
+
</p>
|
|
219
|
+
</div>
|
|
220
|
+
|
|
221
|
+
<!-- Enterprise Scale -->
|
|
222
|
+
<div class="hero-inspired-card text-center">
|
|
223
|
+
<div style="font-size: var(--font-4xl); margin-bottom: var(--space-4);">🏢</div>
|
|
224
|
+
<h3 style="color: white; font-size: var(--font-xl); margin-bottom: var(--space-3);">Enterprise Scale</h3>
|
|
225
|
+
<p style="color: var(--gray-200); line-height: var(--leading-relaxed);">
|
|
226
|
+
Supports massive widgets (5MB+), enterprise queries (100k+ records), and complex workflows.
|
|
227
|
+
Built for real enterprise ServiceNow environments.
|
|
228
|
+
</p>
|
|
229
|
+
</div>
|
|
230
|
+
</div>
|
|
231
|
+
|
|
232
|
+
<!-- How Snow-Flow Works -->
|
|
233
|
+
<div class="hero-inspired-card" style="padding: var(--space-12); margin-bottom: var(--space-16);">
|
|
234
|
+
<h3 style="color: white; font-size: var(--font-3xl); text-align: center; margin-bottom: var(--space-8);">
|
|
235
|
+
How Snow-Flow Transforms ServiceNow Development
|
|
236
|
+
</h3>
|
|
237
|
+
|
|
238
|
+
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12">
|
|
239
|
+
<!-- Before Snow-Flow -->
|
|
240
|
+
<div>
|
|
241
|
+
<h4 style="color: #ef4444; font-size: var(--font-xl); margin-bottom: var(--space-4);">
|
|
242
|
+
❌ Before Snow-Flow
|
|
243
|
+
</h4>
|
|
244
|
+
<ul style="color: var(--gray-300); line-height: var(--leading-relaxed); list-style: none; padding: 0;">
|
|
245
|
+
<li style="margin-bottom: var(--space-2);">• Manual widget deployment with copy-paste</li>
|
|
246
|
+
<li style="margin-bottom: var(--space-2);">• Limited to 30k character scripts</li>
|
|
247
|
+
<li style="margin-bottom: var(--space-2);">• No local editing capabilities</li>
|
|
248
|
+
<li style="margin-bottom: var(--space-2);">• Manual asset tracking and compliance</li>
|
|
249
|
+
<li style="margin-bottom: var(--space-2);">• Fragmented security incident response</li>
|
|
250
|
+
<li style="margin-bottom: var(--space-2);">• Multi-tool workflows for simple tasks</li>
|
|
251
|
+
<li style="margin-bottom: var(--space-2);">• Hours of manual configuration</li>
|
|
252
|
+
</ul>
|
|
253
|
+
</div>
|
|
254
|
+
|
|
255
|
+
<!-- After Snow-Flow -->
|
|
256
|
+
<div>
|
|
257
|
+
<h4 style="color: #10b981; font-size: var(--font-xl); margin-bottom: var(--space-4);">
|
|
258
|
+
✅ With Snow-Flow v4.2.0 ENTERPRISE
|
|
259
|
+
</h4>
|
|
260
|
+
<ul style="color: var(--gray-300); line-height: var(--leading-relaxed); list-style: none; padding: 0;">
|
|
261
|
+
<li style="margin-bottom: var(--space-2);">• AI-powered widget development and deployment</li>
|
|
262
|
+
<li style="margin-bottom: var(--space-2);">• Support for 5MB+ enterprise widgets</li>
|
|
263
|
+
<li style="margin-bottom: var(--space-2);">• Local editing with Claude Code's native tools</li>
|
|
264
|
+
<li style="margin-bottom: var(--space-2);">• Automated asset lifecycle and license optimization</li>
|
|
265
|
+
<li style="margin-bottom: var(--space-2);">• Intelligent security operations with SOAR</li>
|
|
266
|
+
<li style="margin-bottom: var(--space-2);">• Single platform for all ServiceNow development</li>
|
|
267
|
+
<li style="margin-bottom: var(--space-2);">• Minutes of automated configuration</li>
|
|
268
|
+
</ul>
|
|
269
|
+
</div>
|
|
270
|
+
</div>
|
|
271
|
+
</div>
|
|
272
|
+
|
|
273
|
+
<!-- Core Capabilities -->
|
|
274
|
+
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
|
|
275
|
+
|
|
276
|
+
<!-- Local Development -->
|
|
277
|
+
<div class="hero-inspired-card">
|
|
278
|
+
<div style="display: flex; align-items: center; margin-bottom: var(--space-4);">
|
|
279
|
+
<span style="font-size: var(--font-3xl); margin-right: var(--space-3);">💻</span>
|
|
280
|
+
<h4 style="color: white; font-size: var(--font-xl);">Local Development Bridge</h4>
|
|
281
|
+
</div>
|
|
282
|
+
<p style="color: var(--gray-200); margin-bottom: var(--space-4);">
|
|
283
|
+
Pull any ServiceNow artifact to local files, edit with Claude Code's powerful tools,
|
|
284
|
+
then push back with validation. No more copy-paste development.
|
|
285
|
+
</p>
|
|
286
|
+
<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);">
|
|
287
|
+
snow_pull_artifact({<br>
|
|
288
|
+
sys_id: "widget_sys_id",<br>
|
|
289
|
+
table: "sp_widget"<br>
|
|
290
|
+
})<br>
|
|
291
|
+
// Edit locally with Claude Code<br>
|
|
292
|
+
snow_push_artifact({ sys_id: "widget_sys_id" })
|
|
293
|
+
</div>
|
|
294
|
+
</div>
|
|
295
|
+
|
|
296
|
+
<!-- Enterprise Automation -->
|
|
297
|
+
<div class="hero-inspired-card">
|
|
298
|
+
<div style="display: flex; align-items: center; margin-bottom: var(--space-4);">
|
|
299
|
+
<span style="font-size: var(--font-3xl); margin-right: var(--space-3);">🏢</span>
|
|
300
|
+
<h4 style="color: white; font-size: var(--font-xl);">Enterprise Automation</h4>
|
|
301
|
+
</div>
|
|
302
|
+
<p style="color: var(--gray-200); margin-bottom: var(--space-4);">
|
|
303
|
+
Complete enterprise modules for ITAM (asset management), SecOps (security operations),
|
|
304
|
+
and multi-channel notifications. Real enterprise capabilities, not demos.
|
|
305
|
+
</p>
|
|
306
|
+
<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);">
|
|
307
|
+
snow_create_security_incident({<br>
|
|
308
|
+
title: "Malware Detection",<br>
|
|
309
|
+
threat_type: "malware",<br>
|
|
310
|
+
iocs: ["192.168.1.100"]<br>
|
|
311
|
+
})<br>
|
|
312
|
+
// Automated threat response activated
|
|
313
|
+
</div>
|
|
314
|
+
</div>
|
|
315
|
+
</div>
|
|
316
|
+
|
|
317
|
+
<!-- Call to Action -->
|
|
318
|
+
<div class="text-center" style="margin-top: var(--space-16);">
|
|
319
|
+
<a href="#install" class="btn btn-hero-primary" style="font-size: var(--font-lg); padding: var(--space-4) var(--space-8);">
|
|
320
|
+
Start Building with Snow-Flow
|
|
321
|
+
<span style="margin-left: var(--space-2);">🚀</span>
|
|
322
|
+
</a>
|
|
323
|
+
<p style="color: var(--gray-400); margin-top: var(--space-4); font-size: var(--font-sm);">
|
|
324
|
+
npm install snow-flow@latest • 5 minute setup • Enterprise ready
|
|
325
|
+
</p>
|
|
326
|
+
</div>
|
|
327
|
+
</div>
|
|
328
|
+
</section>
|
|
329
|
+
|
|
176
330
|
<!-- Features Grid Section -->
|
|
177
331
|
<section id="features" class="section" style="padding-top: var(--space-32); background: var(--white); position: relative; z-index: 10;">
|
|
178
332
|
<div class="container">
|
|
@@ -235,7 +389,7 @@ and historical patterns. Deploy as real-time API" \
|
|
|
235
389
|
<!-- REAL MCP Servers List with ALL 200+ Tools from Codebase -->
|
|
236
390
|
<section id="servers" class="section" style="background: var(--gray-950); padding: var(--space-20) 0;">
|
|
237
391
|
<div class="container">
|
|
238
|
-
<h2 class="text-center font-black" style="font-size: var(--font-5xl); color: var(--white); margin-bottom: var(--space-4);">
|
|
392
|
+
<h2 class="text-center font-black" style="font-size: var(--font-5xl); color: var(--white); margin-bottom: var(--space-4);">23 MCP Servers × 355+ Enterprise Tools</h2>
|
|
239
393
|
<p class="text-center" style="color: var(--gray-400); margin-bottom: var(--space-16); font-size: var(--font-lg);">Complete ServiceNow Automation Arsenal - Actual Tools from Snow-Flow Codebase</p>
|
|
240
394
|
|
|
241
395
|
<!-- MCP Servers Grid with Expandable Tools -->
|
|
@@ -503,21 +657,92 @@ and historical patterns. Deploy as real-time API" \
|
|
|
503
657
|
|
|
504
658
|
<!-- Summary Stats -->
|
|
505
659
|
<div class="text-center" style="margin-top: var(--space-16); padding: var(--space-8); background: var(--gradient-glass); border-radius: var(--radius-2xl); border: 1px solid var(--gray-800);">
|
|
506
|
-
<p style="font-size: var(--font-2xl); color: var(--white); font-weight: 700; margin-bottom: var(--space-2);">
|
|
507
|
-
<p style="color: var(--gray-400); font-size: var(--font-lg);">Every tool listed above is extracted directly from Snow-Flow
|
|
508
|
-
<p style="color: var(--gray-500); font-size: var(--font-sm); margin-top: var(--space-4);">✅ Deployment (10 tools) • Operations (12 tools) • Automation (27 tools
|
|
660
|
+
<p style="font-size: var(--font-2xl); color: var(--white); font-weight: 700; margin-bottom: var(--space-2);">23 MCP Servers × 355+ ENTERPRISE Tools = Complete ServiceNow Platform</p>
|
|
661
|
+
<p style="color: var(--gray-400); font-size: var(--font-lg);">Every tool listed above is extracted directly from Snow-Flow v4.2.0 codebase - 100% real enterprise implementation.</p>
|
|
662
|
+
<p style="color: var(--gray-500); font-size: var(--font-sm); margin-top: var(--space-4);">✅ Deployment (10 tools) • Operations (12 tools) • Automation (27 tools) • ITAM (6 tools) • SecOps (6 tools) • Notifications (6 tools) • Platform (9 tools) • Integration (10 tools) • Properties (12 tools) • And 14 more servers...</p>
|
|
663
|
+
|
|
664
|
+
<!-- Link to Complete Reference -->
|
|
665
|
+
<div style="margin-top: var(--space-12); text-align: center;">
|
|
666
|
+
<a href="complete-mcp-reference.html" class="btn btn-hero-secondary" style="font-size: var(--font-lg); padding: var(--space-4) var(--space-8);">
|
|
667
|
+
📚 View Complete Reference
|
|
668
|
+
<span style="margin-left: var(--space-2);">→</span>
|
|
669
|
+
</a>
|
|
670
|
+
<p style="color: var(--gray-400); font-size: var(--font-sm); margin-top: var(--space-3);">
|
|
671
|
+
Detailed documentation • All APIs • Usage guidelines • Interactive search
|
|
672
|
+
</p>
|
|
673
|
+
</div>
|
|
509
674
|
</div>
|
|
510
675
|
</div>
|
|
511
676
|
</section>
|
|
512
677
|
|
|
513
|
-
<!-- New in
|
|
678
|
+
<!-- New in v4.2.0 ENTERPRISE Section -->
|
|
514
679
|
<section id="new-features" class="section" style="background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); padding: var(--space-20) 0;">
|
|
515
680
|
<div class="container">
|
|
516
|
-
<h2 class="text-center font-black" style="font-size: var(--font-4xl); color: var(--white); margin-bottom: var(--space-4);"
|
|
517
|
-
<p class="text-center" style="color: rgba(255,255,255,0.9); margin-bottom: var(--space-12); font-size: var(--font-lg);">
|
|
681
|
+
<h2 class="text-center font-black" style="font-size: var(--font-4xl); color: var(--white); margin-bottom: var(--space-4);">🚀 New in v4.2.0 ENTERPRISE</h2>
|
|
682
|
+
<p class="text-center" style="color: rgba(255,255,255,0.9); margin-bottom: var(--space-12); font-size: var(--font-lg);">Revolutionary enterprise features, memory optimizations, and massive performance improvements</p>
|
|
518
683
|
|
|
519
684
|
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3" style="gap: var(--space-6);">
|
|
520
|
-
<!--
|
|
685
|
+
<!-- ITAM Enterprise Module -->
|
|
686
|
+
<div class="card" style="background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2);">
|
|
687
|
+
<div style="padding: var(--space-6);">
|
|
688
|
+
<div style="font-size: var(--font-3xl); margin-bottom: var(--space-3);">🏢</div>
|
|
689
|
+
<h3 style="color: var(--white); font-size: var(--font-xl); font-weight: 700; margin-bottom: var(--space-3);">IT Asset Management</h3>
|
|
690
|
+
<p style="color: rgba(255,255,255,0.8); margin-bottom: var(--space-4);">Complete enterprise asset lifecycle management with license optimization and compliance reporting.</p>
|
|
691
|
+
<div style="background: rgba(16, 185, 129, 0.2); padding: var(--space-2); border-radius: var(--radius-md); margin-bottom: var(--space-3);">
|
|
692
|
+
<strong style="color: #10b981;">6 New Enterprise Tools</strong>
|
|
693
|
+
</div>
|
|
694
|
+
<ul style="color: rgba(255,255,255,0.7); font-size: var(--font-sm); list-style: none; padding: 0;">
|
|
695
|
+
<li>✅ snow_create_asset</li>
|
|
696
|
+
<li>✅ snow_manage_software_license</li>
|
|
697
|
+
<li>✅ snow_track_asset_lifecycle</li>
|
|
698
|
+
<li>✅ snow_asset_compliance_report</li>
|
|
699
|
+
<li>✅ snow_optimize_licenses</li>
|
|
700
|
+
<li>✅ snow_asset_discovery</li>
|
|
701
|
+
</ul>
|
|
702
|
+
</div>
|
|
703
|
+
</div>
|
|
704
|
+
|
|
705
|
+
<!-- SecOps Security Module -->
|
|
706
|
+
<div class="card" style="background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2);">
|
|
707
|
+
<div style="padding: var(--space-6);">
|
|
708
|
+
<div style="font-size: var(--font-3xl); margin-bottom: var(--space-3);">🛡️</div>
|
|
709
|
+
<h3 style="color: var(--white); font-size: var(--font-xl); font-weight: 700; margin-bottom: var(--space-3);">Security Operations</h3>
|
|
710
|
+
<p style="color: rgba(255,255,255,0.8); margin-bottom: var(--space-4);">Advanced security incident response with threat intelligence and automated SOAR capabilities.</p>
|
|
711
|
+
<div style="background: rgba(239, 68, 68, 0.2); padding: var(--space-2); border-radius: var(--radius-md); margin-bottom: var(--space-3);">
|
|
712
|
+
<strong style="color: #ef4444;">6 Security Tools</strong>
|
|
713
|
+
</div>
|
|
714
|
+
<ul style="color: rgba(255,255,255,0.7); font-size: var(--font-sm); list-style: none; padding: 0;">
|
|
715
|
+
<li>✅ snow_create_security_incident</li>
|
|
716
|
+
<li>✅ snow_analyze_threat_intelligence</li>
|
|
717
|
+
<li>✅ snow_execute_security_playbook</li>
|
|
718
|
+
<li>✅ snow_vulnerability_risk_assessment</li>
|
|
719
|
+
<li>✅ snow_security_dashboard</li>
|
|
720
|
+
<li>✅ snow_automate_threat_response</li>
|
|
721
|
+
</ul>
|
|
722
|
+
</div>
|
|
723
|
+
</div>
|
|
724
|
+
|
|
725
|
+
<!-- Notifications Framework -->
|
|
726
|
+
<div class="card" style="background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2);">
|
|
727
|
+
<div style="padding: var(--space-6);">
|
|
728
|
+
<div style="font-size: var(--font-3xl); margin-bottom: var(--space-3);">📨</div>
|
|
729
|
+
<h3 style="color: var(--white); font-size: var(--font-xl); font-weight: 700; margin-bottom: var(--space-3);">Notification Framework</h3>
|
|
730
|
+
<p style="color: rgba(255,255,255,0.8); margin-bottom: var(--space-4);">Enterprise multi-channel notification system with templates, analytics, and preference management.</p>
|
|
731
|
+
<div style="background: rgba(59, 130, 246, 0.2); padding: var(--space-2); border-radius: var(--radius-md); margin-bottom: var(--space-3);">
|
|
732
|
+
<strong style="color: #3b82f6;">6 Communication Tools</strong>
|
|
733
|
+
</div>
|
|
734
|
+
<ul style="color: rgba(255,255,255,0.7); font-size: var(--font-sm); list-style: none; padding: 0;">
|
|
735
|
+
<li>✅ snow_send_notification</li>
|
|
736
|
+
<li>✅ snow_create_notification_template</li>
|
|
737
|
+
<li>✅ snow_notification_preferences</li>
|
|
738
|
+
<li>✅ snow_emergency_broadcast</li>
|
|
739
|
+
<li>✅ snow_notification_analytics</li>
|
|
740
|
+
<li>✅ snow_schedule_notification</li>
|
|
741
|
+
</ul>
|
|
742
|
+
</div>
|
|
743
|
+
</div>
|
|
744
|
+
|
|
745
|
+
<!-- Memory Optimization -->
|
|
521
746
|
<div class="card" style="background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2);">
|
|
522
747
|
<div class="card-icon" style="font-size: 2rem;">🎯</div>
|
|
523
748
|
<h3 style="color: var(--white); margin-bottom: var(--space-2);">Catalog UI Policy Deployment</h3>
|
|
@@ -599,7 +824,7 @@ and historical patterns. Deploy as real-time API" \
|
|
|
599
824
|
</div>
|
|
600
825
|
|
|
601
826
|
<div class="text-center" style="margin-top: var(--space-10);">
|
|
602
|
-
<a href="https://github.com/groeimetai/snow-flow/releases/tag/
|
|
827
|
+
<a href="https://github.com/groeimetai/snow-flow/releases/tag/v4.2.0" class="btn btn-glass" style="background: rgba(255,255,255,0.2); color: white; padding: var(--space-3) var(--space-6);">
|
|
603
828
|
<span>View Full Changelog</span>
|
|
604
829
|
<span style="margin-left: var(--space-2);">→</span>
|
|
605
830
|
</a>
|
|
@@ -774,8 +999,8 @@ claude --mcp-config .claude/claude_desktop_config.json</code>
|
|
|
774
999
|
<div>
|
|
775
1000
|
<h4 style="font-weight: 600; margin-bottom: var(--space-4);">What Gets Configured</h4>
|
|
776
1001
|
<ul style="list-style: disc; margin-left: var(--space-6); margin-bottom: var(--space-6);">
|
|
777
|
-
<li><strong>
|
|
778
|
-
<li><strong>
|
|
1002
|
+
<li><strong>23 MCP Servers</strong> - Complete enterprise automation</li>
|
|
1003
|
+
<li><strong>355+ Tools</strong> - Every function documented</li>
|
|
779
1004
|
<li><strong>Auto-Approval</strong> - No manual permission steps</li>
|
|
780
1005
|
<li><strong>Error Recovery</strong> - Automatic timeout handling</li>
|
|
781
1006
|
<li><strong>ES5 Validation</strong> - Rhino engine compatibility</li>
|
|
@@ -783,7 +1008,7 @@ claude --mcp-config .claude/claude_desktop_config.json</code>
|
|
|
783
1008
|
|
|
784
1009
|
<div style="background: var(--green-100); border: 1px solid var(--green-400); padding: var(--space-4); border-radius: var(--radius-md);">
|
|
785
1010
|
<strong>✅ Success Indicators:</strong><br>
|
|
786
|
-
• Claude Code shows
|
|
1011
|
+
• Claude Code shows 23 enterprise MCP servers<br>
|
|
787
1012
|
• Tools like snow_deploy available<br>
|
|
788
1013
|
• No permission error messages
|
|
789
1014
|
</div>
|
|
@@ -793,7 +1018,7 @@ claude --mcp-config .claude/claude_desktop_config.json</code>
|
|
|
793
1018
|
|
|
794
1019
|
<!-- MCP Tools Tab -->
|
|
795
1020
|
<div id="mcp-tools" class="tab-content">
|
|
796
|
-
<h3 style="font-size: var(--font-2xl); font-weight: 700; margin-bottom: var(--space-6);">🛠️
|
|
1021
|
+
<h3 style="font-size: var(--font-2xl); font-weight: 700; margin-bottom: var(--space-6);">🛠️ 355+ Enterprise MCP Tools Reference</h3>
|
|
797
1022
|
|
|
798
1023
|
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3" style="gap: var(--space-6); margin-bottom: var(--space-8);">
|
|
799
1024
|
<div class="tool-category" style="background: var(--gray-50); padding: var(--space-4); border-radius: var(--radius-lg);">
|
|
@@ -1011,11 +1236,11 @@ export DEBUG=snow-flow:*</code>
|
|
|
1011
1236
|
<div class="container">
|
|
1012
1237
|
<div class="grid grid-cols-2 md:grid-cols-4" style="gap: var(--space-8);">
|
|
1013
1238
|
<div class="text-center animate-fade-in-up stagger-1">
|
|
1014
|
-
<h3 style="font-size: var(--font-6xl); font-weight: 900; background: var(--gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent;">
|
|
1015
|
-
<p style="color: var(--gray-400); text-transform: uppercase; letter-spacing: var(--tracking-widest);">MCP Servers</p>
|
|
1239
|
+
<h3 style="font-size: var(--font-6xl); font-weight: 900; background: var(--gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent;">23</h3>
|
|
1240
|
+
<p style="color: var(--gray-400); text-transform: uppercase; letter-spacing: var(--tracking-widest);">Enterprise MCP Servers</p>
|
|
1016
1241
|
</div>
|
|
1017
1242
|
<div class="text-center animate-fade-in-up stagger-2">
|
|
1018
|
-
<h3 style="font-size: var(--font-6xl); font-weight: 900; background: var(--gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent;">
|
|
1243
|
+
<h3 style="font-size: var(--font-6xl); font-weight: 900; background: var(--gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent;">355+</h3>
|
|
1019
1244
|
<p style="color: var(--gray-400); text-transform: uppercase; letter-spacing: var(--tracking-widest);">Tools</p>
|
|
1020
1245
|
</div>
|
|
1021
1246
|
<div class="text-center animate-fade-in-up stagger-3">
|
|
@@ -1049,7 +1274,7 @@ export DEBUG=snow-flow:*</code>
|
|
|
1049
1274
|
<div class="flex justify-between items-center">
|
|
1050
1275
|
<div>
|
|
1051
1276
|
<h3 class="navbar-logo" style="font-size: var(--font-2xl);"><span class="logo-mountain">🏔️</span> SNOW-FLOW</h3>
|
|
1052
|
-
<p style="color: var(--gray-500); margin-top: var(--space-2);">©
|
|
1277
|
+
<p style="color: var(--gray-500); margin-top: var(--space-2);">© 2025 Snow-Flow v4.2.0 ENTERPRISE | MIT License</p>
|
|
1053
1278
|
</div>
|
|
1054
1279
|
<div class="flex gap-8">
|
|
1055
1280
|
<a href="https://github.com/groeimetai/snow-flow" class="link-animated" style="color: var(--gray-400);">GitHub</a>
|
package/website/js/animations.js
CHANGED
|
@@ -134,32 +134,29 @@ class SnowFlowAnimations {
|
|
|
134
134
|
* PARALLAX EFFECTS
|
|
135
135
|
*/
|
|
136
136
|
setupParallaxEffects() {
|
|
137
|
+
// PARALLAX COMPLETELY DISABLED to prevent section overlap
|
|
137
138
|
const parallaxElements = document.querySelectorAll('.hero-parallax, .gradient-mesh, .particles');
|
|
138
139
|
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
};
|
|
151
|
-
|
|
152
|
-
//
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
if (!parallaxTicking) {
|
|
156
|
-
requestAnimationFrame(() => {
|
|
157
|
-
updateParallax();
|
|
158
|
-
parallaxTicking = false;
|
|
159
|
-
});
|
|
160
|
-
parallaxTicking = true;
|
|
161
|
-
}
|
|
140
|
+
// DISABLED: All parallax transforms that cause section overlap
|
|
141
|
+
// const updateParallax = () => {
|
|
142
|
+
// const scrolled = window.pageYOffset;
|
|
143
|
+
// const rate = scrolled * -0.5;
|
|
144
|
+
// parallaxElements.forEach(element => {
|
|
145
|
+
// if (this.isInViewport(element)) {
|
|
146
|
+
// const speed = element.dataset.speed || 0.5;
|
|
147
|
+
// const yPos = -(scrolled * speed);
|
|
148
|
+
// element.style.transform = `translate3d(0, ${yPos}px, 0)`;
|
|
149
|
+
// }
|
|
150
|
+
// });
|
|
151
|
+
// };
|
|
152
|
+
|
|
153
|
+
// Keep all parallax elements static - no translateY
|
|
154
|
+
parallaxElements.forEach(element => {
|
|
155
|
+
element.style.transform = 'translate3d(0, 0px, 0)'; // Static positioning
|
|
162
156
|
});
|
|
157
|
+
|
|
158
|
+
// NO scroll listener for parallax to prevent transforms
|
|
159
|
+
console.log('🚫 All parallax effects disabled - no translateY transforms');
|
|
163
160
|
}
|
|
164
161
|
|
|
165
162
|
/**
|
package/website/js/main.js
CHANGED
|
@@ -88,13 +88,17 @@ document.addEventListener('DOMContentLoaded', function() {
|
|
|
88
88
|
const heroTitle = document.querySelector('.hero-title');
|
|
89
89
|
const heroSubtitle = document.querySelector('.hero-subtitle');
|
|
90
90
|
|
|
91
|
-
// Parallax effect
|
|
91
|
+
// Parallax effect DISABLED - was causing section overlap
|
|
92
92
|
if (hero) {
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
})
|
|
93
|
+
// DISABLED: This was the source of translateY(290.5px) during scroll
|
|
94
|
+
// window.addEventListener('scroll', function() {
|
|
95
|
+
// const scrolled = window.pageYOffset;
|
|
96
|
+
// const parallaxSpeed = 0.5;
|
|
97
|
+
// hero.style.transform = `translateY(${scrolled * parallaxSpeed}px)`;
|
|
98
|
+
// });
|
|
99
|
+
|
|
100
|
+
// Keep hero static - no transform during scroll
|
|
101
|
+
hero.style.transform = 'translateY(0px)';
|
|
98
102
|
}
|
|
99
103
|
|
|
100
104
|
// Typewriter effect for hero subtitle
|
|
@@ -353,7 +357,69 @@ document.addEventListener('DOMContentLoaded', function() {
|
|
|
353
357
|
========================================= */
|
|
354
358
|
console.log('%c🏔️ Snow-Flow', 'font-size: 50px; font-weight: bold; background: linear-gradient(135deg, #000 0%, #fff 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent;');
|
|
355
359
|
console.log('%cWelcome to Snow-Flow - The ServiceNow Development Revolution', 'font-size: 14px; color: #666;');
|
|
356
|
-
console.log('%
|
|
360
|
+
console.log('%c23 Enterprise MCP Servers | 355+ Tools | Unlimited Possibilities', 'font-size: 12px; color: #999;');
|
|
361
|
+
|
|
362
|
+
/* =========================================
|
|
363
|
+
COUNTER ANIMATION (MISSING!)
|
|
364
|
+
========================================= */
|
|
365
|
+
function animateCounter(element, target, duration = 2000) {
|
|
366
|
+
const start = 0;
|
|
367
|
+
let numericTarget;
|
|
368
|
+
|
|
369
|
+
// Parse target value (handle numbers, percentages, plus signs)
|
|
370
|
+
if (typeof target === 'string') {
|
|
371
|
+
if (target.includes('%')) {
|
|
372
|
+
numericTarget = parseInt(target.replace('%', ''));
|
|
373
|
+
} else if (target.includes('+')) {
|
|
374
|
+
numericTarget = parseInt(target.replace('+', ''));
|
|
375
|
+
} else {
|
|
376
|
+
numericTarget = parseInt(target);
|
|
377
|
+
}
|
|
378
|
+
} else {
|
|
379
|
+
numericTarget = parseInt(target);
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
const increment = numericTarget / (duration / 16); // 60fps
|
|
383
|
+
let current = start;
|
|
384
|
+
|
|
385
|
+
const timer = setInterval(() => {
|
|
386
|
+
current += increment;
|
|
387
|
+
if (current >= numericTarget) {
|
|
388
|
+
element.textContent = target; // Use original target with symbols
|
|
389
|
+
clearInterval(timer);
|
|
390
|
+
} else {
|
|
391
|
+
// Display current value with appropriate symbols
|
|
392
|
+
if (typeof target === 'string' && target.includes('+')) {
|
|
393
|
+
element.textContent = Math.floor(current) + '+';
|
|
394
|
+
} else if (typeof target === 'string' && target.includes('%')) {
|
|
395
|
+
element.textContent = Math.floor(current) + '%';
|
|
396
|
+
} else {
|
|
397
|
+
element.textContent = Math.floor(current);
|
|
398
|
+
}
|
|
399
|
+
}
|
|
400
|
+
}, 16);
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
// Initialize counters when they come into view
|
|
404
|
+
const counters = document.querySelectorAll('.counter');
|
|
405
|
+
const counterObserver = new IntersectionObserver((entries) => {
|
|
406
|
+
entries.forEach(entry => {
|
|
407
|
+
if (entry.isIntersecting) {
|
|
408
|
+
const counter = entry.target;
|
|
409
|
+
const target = counter.getAttribute('data-target');
|
|
410
|
+
|
|
411
|
+
// Start animation
|
|
412
|
+
animateCounter(counter, target, 2000);
|
|
413
|
+
|
|
414
|
+
// Only animate once
|
|
415
|
+
counterObserver.unobserve(counter);
|
|
416
|
+
}
|
|
417
|
+
});
|
|
418
|
+
}, { threshold: 0.5 });
|
|
419
|
+
|
|
420
|
+
counters.forEach(counter => {
|
|
421
|
+
counterObserver.observe(counter);
|
|
422
|
+
});
|
|
357
423
|
console.log('%cJoin us: https://github.com/groeimetai/snow-flow', 'font-size: 12px; color: #666; text-decoration: underline;');
|
|
358
424
|
|
|
359
425
|
/* =========================================
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<!-- Quick Reference Navigation Box for Main Website -->
|
|
2
|
+
<div class="hero-inspired-card" style="margin: var(--space-8) 0; text-align: center;">
|
|
3
|
+
<h3 style="color: white; font-size: var(--font-2xl); margin-bottom: var(--space-4);">
|
|
4
|
+
📚 Complete MCP Reference Available
|
|
5
|
+
</h3>
|
|
6
|
+
<p style="color: var(--gray-200); margin-bottom: var(--space-6);">
|
|
7
|
+
Detailed documentation for all 23 MCP servers and 355+ tools with ServiceNow API mappings and Claude Code usage guidelines.
|
|
8
|
+
</p>
|
|
9
|
+
<a href="complete-mcp-reference.html" class="btn btn-hero-primary">
|
|
10
|
+
View Complete Reference
|
|
11
|
+
<span style="margin-left: var(--space-2);">📚</span>
|
|
12
|
+
</a>
|
|
13
|
+
<div style="margin-top: var(--space-4); font-size: var(--font-sm); color: var(--gray-400);">
|
|
14
|
+
Interactive search • All APIs documented • Usage examples • Enterprise features
|
|
15
|
+
</div>
|
|
16
|
+
</div>
|
package/website/mcp-servers.html
CHANGED
|
@@ -304,7 +304,7 @@
|
|
|
304
304
|
|
|
305
305
|
<!-- Summary Stats -->
|
|
306
306
|
<div class="text-center" style="margin-top: var(--space-16); padding: var(--space-8); background: var(--gradient-glass); border-radius: var(--radius-2xl); border: 1px solid var(--gray-800);">
|
|
307
|
-
<p style="font-size: var(--font-2xl); color: var(--white); font-weight: 700; margin-bottom: var(--space-2);">
|
|
307
|
+
<p style="font-size: var(--font-2xl); color: var(--white); font-weight: 700; margin-bottom: var(--space-2);">23 Enterprise MCP Servers × 355+ Real Tools</p>
|
|
308
308
|
<p style="color: var(--gray-400); font-size: var(--font-lg);">Every ServiceNow operation automated. Every workflow optimized. Every deployment validated.</p>
|
|
309
|
-
<p style="color: var(--gray-500); font-size: var(--font-sm); margin-top: var(--space-4);">All tools extracted directly from Snow-Flow
|
|
309
|
+
<p style="color: var(--gray-500); font-size: var(--font-sm); margin-top: var(--space-4);">All tools extracted directly from Snow-Flow v4.2.0 ENTERPRISE codebase - 100% real implementation with ITAM, SecOps, and Notifications!</p>
|
|
310
310
|
</div>
|