snow-flow 3.6.23 → 3.6.25
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 +481 -364
- package/dist/dynamic-version.js +1 -1
- package/dist/mcp/servicenow-deployment-mcp.js +173 -1
- package/dist/mcp/servicenow-knowledge-catalog-mcp.js +46 -6
- package/package.json +2 -2
- package/website/css/style.css +645 -6
- package/website/index.html +250 -18
- package/website/tools.js +261 -475
package/website/index.html
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
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 | Revolutionary ServiceNow Development</title>
|
|
7
|
-
<meta name="description" content="Snow-Flow: AI-powered ServiceNow development framework with
|
|
6
|
+
<title>Snow-Flow v3.6.25 | Revolutionary ServiceNow Development</title>
|
|
7
|
+
<meta name="description" content="Snow-Flow v3.6.25: AI-powered ServiceNow development framework with 18 MCP servers, 200+ tools, and intelligent automation. Now with catalog UI policy deployment and knowledge base verification.">
|
|
8
8
|
|
|
9
9
|
<!-- Modern CSS -->
|
|
10
10
|
<link rel="stylesheet" href="css/style.css">
|
|
@@ -37,19 +37,140 @@
|
|
|
37
37
|
</div>
|
|
38
38
|
</nav>
|
|
39
39
|
|
|
40
|
-
<!-- Hero Section with Animated
|
|
40
|
+
<!-- Hero Section with Advanced Animated Effects -->
|
|
41
41
|
<section id="home" class="hero">
|
|
42
|
+
<!-- Animated Background Elements -->
|
|
43
|
+
<div class="hero-bg-animation">
|
|
44
|
+
<div class="floating-orb orb-1"></div>
|
|
45
|
+
<div class="floating-orb orb-2"></div>
|
|
46
|
+
<div class="floating-orb orb-3"></div>
|
|
47
|
+
<div class="floating-orb orb-4"></div>
|
|
48
|
+
<div class="floating-orb orb-5"></div>
|
|
49
|
+
<div class="grid-overlay"></div>
|
|
50
|
+
<div class="code-rain">
|
|
51
|
+
<span class="code-drop" style="left: 10%; animation-delay: 0s;">snow_deploy</span>
|
|
52
|
+
<span class="code-drop" style="left: 20%; animation-delay: 0.5s;">catalog_ui_policy</span>
|
|
53
|
+
<span class="code-drop" style="left: 30%; animation-delay: 1s;">ES5</span>
|
|
54
|
+
<span class="code-drop" style="left: 40%; animation-delay: 1.5s;">widget_coherence</span>
|
|
55
|
+
<span class="code-drop" style="left: 50%; animation-delay: 2s;">snow_pull_artifact</span>
|
|
56
|
+
<span class="code-drop" style="left: 60%; animation-delay: 2.5s;">item_option_new</span>
|
|
57
|
+
<span class="code-drop" style="left: 70%; animation-delay: 3s;">knowledge_base</span>
|
|
58
|
+
<span class="code-drop" style="left: 80%; animation-delay: 3.5s;">MCP</span>
|
|
59
|
+
<span class="code-drop" style="left: 90%; animation-delay: 4s;">TensorFlow.js</span>
|
|
60
|
+
</div>
|
|
61
|
+
</div>
|
|
62
|
+
|
|
42
63
|
<div class="hero-content animate-fade-in-up">
|
|
43
|
-
|
|
44
|
-
|
|
64
|
+
<!-- Animated Logo with Enhanced Glow Effect -->
|
|
65
|
+
<div class="hero-logo-container">
|
|
66
|
+
<div class="logo-glow-container">
|
|
67
|
+
<div class="logo-orbit">
|
|
68
|
+
<div class="orbit-ring"></div>
|
|
69
|
+
<div class="orbit-ring orbit-ring-2"></div>
|
|
70
|
+
<div class="orbit-ring orbit-ring-3"></div>
|
|
71
|
+
</div>
|
|
72
|
+
<span class="hero-mountain pulse-glow">🏔️</span>
|
|
73
|
+
<div class="logo-particles">
|
|
74
|
+
<span class="particle"></span>
|
|
75
|
+
<span class="particle"></span>
|
|
76
|
+
<span class="particle"></span>
|
|
77
|
+
<span class="particle"></span>
|
|
78
|
+
<span class="particle"></span>
|
|
79
|
+
</div>
|
|
80
|
+
</div>
|
|
81
|
+
</div>
|
|
82
|
+
|
|
83
|
+
<!-- Enhanced Title with Gradient Text and Animation -->
|
|
84
|
+
<h1 class="hero-title gradient-text glitch" data-text="SNOW-FLOW">
|
|
85
|
+
<span class="title-letter" style="animation-delay: 0.1s">S</span>
|
|
86
|
+
<span class="title-letter" style="animation-delay: 0.2s">N</span>
|
|
87
|
+
<span class="title-letter" style="animation-delay: 0.3s">O</span>
|
|
88
|
+
<span class="title-letter" style="animation-delay: 0.4s">W</span>
|
|
89
|
+
<span class="title-letter" style="animation-delay: 0.5s">-</span>
|
|
90
|
+
<span class="title-letter" style="animation-delay: 0.6s">F</span>
|
|
91
|
+
<span class="title-letter" style="animation-delay: 0.7s">L</span>
|
|
92
|
+
<span class="title-letter" style="animation-delay: 0.8s">O</span>
|
|
93
|
+
<span class="title-letter" style="animation-delay: 0.9s">W</span>
|
|
94
|
+
<span class="version-badge animated-badge">v3.6.25 🆕</span>
|
|
95
|
+
</h1>
|
|
96
|
+
|
|
97
|
+
<!-- Animated Subtitle with Enhanced Effect -->
|
|
98
|
+
<p class="hero-subtitle">
|
|
99
|
+
<span class="subtitle-line fade-in-word">
|
|
100
|
+
<span style="animation-delay: 1s">Revolutionary</span>
|
|
101
|
+
<span style="animation-delay: 1.2s">ServiceNow</span>
|
|
102
|
+
<span style="animation-delay: 1.4s">Development</span>
|
|
103
|
+
</span>
|
|
104
|
+
<span class="subtitle-line-2 fade-in-word">
|
|
105
|
+
<span class="highlight-text" style="animation-delay: 1.6s">Powered</span>
|
|
106
|
+
<span class="highlight-text" style="animation-delay: 1.8s">by</span>
|
|
107
|
+
<span class="ai-text" style="animation-delay: 2s">Claude AI</span>
|
|
108
|
+
</span>
|
|
109
|
+
</p>
|
|
110
|
+
|
|
111
|
+
<!-- Enhanced Feature Pills with Animation -->
|
|
112
|
+
<div class="feature-pills">
|
|
113
|
+
<span class="pill pill-glow" style="animation-delay: 2.2s">
|
|
114
|
+
<span class="pill-icon">🤖</span>
|
|
115
|
+
<span class="pill-text">Claude AI Powered</span>
|
|
116
|
+
</span>
|
|
117
|
+
<span class="pill pill-pulse" style="animation-delay: 2.4s">
|
|
118
|
+
<span class="pill-icon">⚡</span>
|
|
119
|
+
<span class="pill-text">200+ Tools</span>
|
|
120
|
+
</span>
|
|
121
|
+
<span class="pill pill-float" style="animation-delay: 2.6s">
|
|
122
|
+
<span class="pill-icon">🚀</span>
|
|
123
|
+
<span class="pill-text">18 MCP Servers</span>
|
|
124
|
+
</span>
|
|
125
|
+
<span class="pill pill-shine" style="animation-delay: 2.8s">
|
|
126
|
+
<span class="pill-icon">✨</span>
|
|
127
|
+
<span class="pill-text">100% Real</span>
|
|
128
|
+
</span>
|
|
129
|
+
</div>
|
|
130
|
+
|
|
131
|
+
<!-- Enhanced CTA Buttons with Better Effects -->
|
|
132
|
+
<div class="hero-actions" style="animation-delay: 3s">
|
|
133
|
+
<a href="#install" class="btn btn-primary btn-glow magnetic-btn">
|
|
134
|
+
<span class="btn-inner">
|
|
135
|
+
<span class="btn-text">Start Building</span>
|
|
136
|
+
<span class="btn-icon">🚀</span>
|
|
137
|
+
</span>
|
|
138
|
+
<div class="btn-particles"></div>
|
|
139
|
+
</a>
|
|
140
|
+
<a href="https://github.com/groeimetai/snow-flow" target="_blank" class="btn btn-glass magnetic-btn">
|
|
141
|
+
<span class="btn-inner">
|
|
142
|
+
<span class="btn-text">View on GitHub</span>
|
|
143
|
+
<span class="btn-icon">⭐</span>
|
|
144
|
+
</span>
|
|
145
|
+
<span class="btn-badge pulse">v3.6.25</span>
|
|
146
|
+
</a>
|
|
45
147
|
</div>
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
<div class="
|
|
49
|
-
<
|
|
50
|
-
|
|
148
|
+
|
|
149
|
+
<!-- Enhanced Stats Bar with Animation -->
|
|
150
|
+
<div class="hero-stats floating" style="animation-delay: 3.5s">
|
|
151
|
+
<div class="stat-item">
|
|
152
|
+
<span class="stat-icon">🖥️</span>
|
|
153
|
+
<span class="stat-number counter" data-target="18">0</span>
|
|
154
|
+
<span class="stat-label">MCP Servers</span>
|
|
155
|
+
</div>
|
|
156
|
+
<div class="stat-divider"></div>
|
|
157
|
+
<div class="stat-item">
|
|
158
|
+
<span class="stat-number counter" data-target="200">0</span>+
|
|
159
|
+
<span class="stat-label">Tools</span>
|
|
160
|
+
</div>
|
|
161
|
+
<div class="stat-divider"></div>
|
|
162
|
+
<div class="stat-item">
|
|
163
|
+
<span class="stat-number counter" data-target="95">0</span>%
|
|
164
|
+
<span class="stat-label">Automation</span>
|
|
165
|
+
</div>
|
|
51
166
|
</div>
|
|
52
167
|
</div>
|
|
168
|
+
|
|
169
|
+
<!-- Scroll Indicator -->
|
|
170
|
+
<div class="scroll-indicator">
|
|
171
|
+
<span class="scroll-text">Explore</span>
|
|
172
|
+
<div class="scroll-arrow"></div>
|
|
173
|
+
</div>
|
|
53
174
|
</section>
|
|
54
175
|
|
|
55
176
|
<!-- Features Grid Section -->
|
|
@@ -69,7 +190,7 @@
|
|
|
69
190
|
</div>
|
|
70
191
|
<div class="card animate-scale-in stagger-3">
|
|
71
192
|
<div class="card-icon"><span class="logo-mountain">🏔️</span></div>
|
|
72
|
-
<h3 class="card-title">
|
|
193
|
+
<h3 class="card-title">18 MCP Servers</h3>
|
|
73
194
|
<p class="card-description">Specialized servers for every ServiceNow development need.</p>
|
|
74
195
|
</div>
|
|
75
196
|
<div class="card animate-scale-in stagger-4">
|
|
@@ -114,7 +235,7 @@ and historical patterns. Deploy as real-time API" \
|
|
|
114
235
|
<!-- REAL MCP Servers List with ALL 200+ Tools from Codebase -->
|
|
115
236
|
<section id="servers" class="section" style="background: var(--gray-950); padding: var(--space-20) 0;">
|
|
116
237
|
<div class="container">
|
|
117
|
-
<h2 class="text-center font-black" style="font-size: var(--font-5xl); color: var(--white); margin-bottom: var(--space-4);">
|
|
238
|
+
<h2 class="text-center font-black" style="font-size: var(--font-5xl); color: var(--white); margin-bottom: var(--space-4);">18 MCP Servers × 200+ Real Tools</h2>
|
|
118
239
|
<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>
|
|
119
240
|
|
|
120
241
|
<!-- MCP Servers Grid with Expandable Tools -->
|
|
@@ -364,17 +485,128 @@ and historical patterns. Deploy as real-time API" \
|
|
|
364
485
|
</ul>
|
|
365
486
|
</div>
|
|
366
487
|
|
|
488
|
+
<!-- 18. Local Development Server -->
|
|
489
|
+
<div class="card" style="background: var(--gray-900); border: 1px solid var(--gray-700);">
|
|
490
|
+
<h3 style="color: var(--white); margin-bottom: var(--space-3); font-size: var(--font-xl);">🔄 Local Dev Server</h3>
|
|
491
|
+
<p style="color: var(--gray-400); margin-bottom: var(--space-4); font-size: var(--font-sm);">Bridge between ServiceNow & Claude Code</p>
|
|
492
|
+
<ul style="list-style: none; padding: 0;">
|
|
493
|
+
<li style="color: var(--gray-500); font-size: var(--font-xs); margin-bottom: var(--space-1);">• snow_pull_artifact</li>
|
|
494
|
+
<li style="color: var(--gray-500); font-size: var(--font-xs); margin-bottom: var(--space-1);">• snow_push_artifact</li>
|
|
495
|
+
<li style="color: var(--gray-500); font-size: var(--font-xs); margin-bottom: var(--space-1);">• snow_validate_artifact_coherence</li>
|
|
496
|
+
<li style="color: var(--gray-500); font-size: var(--font-xs); margin-bottom: var(--space-1);">• snow_list_supported_artifacts</li>
|
|
497
|
+
<li style="color: var(--gray-500); font-size: var(--font-xs); margin-bottom: var(--space-1);">• snow_sync_status</li>
|
|
498
|
+
<li style="color: var(--gray-500); font-size: var(--font-xs);">• snow_convert_to_es5</li>
|
|
499
|
+
</ul>
|
|
500
|
+
</div>
|
|
501
|
+
|
|
367
502
|
</div>
|
|
368
503
|
|
|
369
504
|
<!-- Summary Stats -->
|
|
370
505
|
<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);">
|
|
371
|
-
<p style="font-size: var(--font-2xl); color: var(--white); font-weight: 700; margin-bottom: var(--space-2);">
|
|
372
|
-
<p style="color: var(--gray-400); font-size: var(--font-lg);">Every tool listed above is extracted directly from Snow-Flow v3.
|
|
506
|
+
<p style="font-size: var(--font-2xl); color: var(--white); font-weight: 700; margin-bottom: var(--space-2);">18 MCP Servers × 200+ REAL Tools = Complete ServiceNow Automation</p>
|
|
507
|
+
<p style="color: var(--gray-400); font-size: var(--font-lg);">Every tool listed above is extracted directly from Snow-Flow v3.6.25 codebase - 100% real implementation.</p>
|
|
373
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!) • Platform (9 tools) • Integration (10 tools) • Properties (12 tools) • And 11 more servers...</p>
|
|
374
509
|
</div>
|
|
375
510
|
</div>
|
|
376
511
|
</section>
|
|
377
512
|
|
|
513
|
+
<!-- New in v3.6.25 Section -->
|
|
514
|
+
<section id="new-features" class="section" style="background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); padding: var(--space-20) 0;">
|
|
515
|
+
<div class="container">
|
|
516
|
+
<h2 class="text-center font-black" style="font-size: var(--font-4xl); color: var(--white); margin-bottom: var(--space-4);">🎆 New in v3.6.25</h2>
|
|
517
|
+
<p class="text-center" style="color: rgba(255,255,255,0.9); margin-bottom: var(--space-12); font-size: var(--font-lg);">Latest enhancements and critical fixes</p>
|
|
518
|
+
|
|
519
|
+
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3" style="gap: var(--space-6);">
|
|
520
|
+
<!-- Catalog UI Policy Deployment -->
|
|
521
|
+
<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
|
+
<div class="card-icon" style="font-size: 2rem;">🎯</div>
|
|
523
|
+
<h3 style="color: var(--white); margin-bottom: var(--space-2);">Catalog UI Policy Deployment</h3>
|
|
524
|
+
<p style="color: rgba(255,255,255,0.8); font-size: var(--font-sm); margin-bottom: var(--space-3);">Deploy catalog UI policies via unified snow_deploy tool</p>
|
|
525
|
+
<div class="code-block" style="background: rgba(0,0,0,0.2); padding: var(--space-3);">
|
|
526
|
+
<code style="font-size: var(--font-xs); color: var(--white);">snow_deploy({
|
|
527
|
+
type: "catalog_ui_policy",
|
|
528
|
+
config: {
|
|
529
|
+
catalog_item: "id",
|
|
530
|
+
conditions: [...],
|
|
531
|
+
actions: [...]
|
|
532
|
+
}
|
|
533
|
+
})</code>
|
|
534
|
+
</div>
|
|
535
|
+
</div>
|
|
536
|
+
|
|
537
|
+
<!-- Knowledge Base Verification -->
|
|
538
|
+
<div class="card" style="background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2);">
|
|
539
|
+
<div class="card-icon" style="font-size: 2rem;">📚</div>
|
|
540
|
+
<h3 style="color: var(--white); margin-bottom: var(--space-2);">Knowledge Base Verification</h3>
|
|
541
|
+
<p style="color: rgba(255,255,255,0.8); font-size: var(--font-sm); margin-bottom: var(--space-3);">Prevents orphaned articles with strict KB validation</p>
|
|
542
|
+
<ul style="list-style: none; padding: 0;">
|
|
543
|
+
<li style="color: rgba(255,255,255,0.7); font-size: var(--font-xs); margin-bottom: var(--space-1);">✅ Verifies KB existence</li>
|
|
544
|
+
<li style="color: rgba(255,255,255,0.7); font-size: var(--font-xs); margin-bottom: var(--space-1);">✅ Lists available KBs</li>
|
|
545
|
+
<li style="color: rgba(255,255,255,0.7); font-size: var(--font-xs);">✅ Suggests solutions</li>
|
|
546
|
+
</ul>
|
|
547
|
+
</div>
|
|
548
|
+
|
|
549
|
+
<!-- Catalog Variable Fix -->
|
|
550
|
+
<div class="card" style="background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2);">
|
|
551
|
+
<div class="card-icon" style="font-size: 2rem;">🔧</div>
|
|
552
|
+
<h3 style="color: var(--white); margin-bottom: var(--space-2);">Catalog Variable Table Fix</h3>
|
|
553
|
+
<p style="color: rgba(255,255,255,0.8); font-size: var(--font-sm); margin-bottom: var(--space-3);">Variables now created in correct item_option_new table</p>
|
|
554
|
+
<div style="background: rgba(0,255,0,0.2); padding: var(--space-2); border-radius: var(--radius-md);">
|
|
555
|
+
<span style="color: var(--white); font-size: var(--font-xs);">✅ Variables now visible in catalog items</span>
|
|
556
|
+
</div>
|
|
557
|
+
</div>
|
|
558
|
+
|
|
559
|
+
<!-- Enhanced UI Policy Debugging -->
|
|
560
|
+
<div class="card" style="background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2);">
|
|
561
|
+
<div class="card-icon" style="font-size: 2rem;">🔍</div>
|
|
562
|
+
<h3 style="color: var(--white); margin-bottom: var(--space-2);">Enhanced UI Policy Debugging</h3>
|
|
563
|
+
<p style="color: rgba(255,255,255,0.8); font-size: var(--font-sm); margin-bottom: var(--space-3);">Comprehensive debugging for reference field issues</p>
|
|
564
|
+
<ul style="list-style: none; padding: 0;">
|
|
565
|
+
<li style="color: rgba(255,255,255,0.7); font-size: var(--font-xs); margin-bottom: var(--space-1);">• Policy existence verification</li>
|
|
566
|
+
<li style="color: rgba(255,255,255,0.7); font-size: var(--font-xs); margin-bottom: var(--space-1);">• Timing issue detection</li>
|
|
567
|
+
<li style="color: rgba(255,255,255,0.7); font-size: var(--font-xs);">• Detailed error diagnostics</li>
|
|
568
|
+
</ul>
|
|
569
|
+
</div>
|
|
570
|
+
|
|
571
|
+
<!-- Performance Improvements -->
|
|
572
|
+
<div class="card" style="background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2);">
|
|
573
|
+
<div class="card-icon" style="font-size: 2rem;">⚡</div>
|
|
574
|
+
<h3 style="color: var(--white); margin-bottom: var(--space-2);">Performance Boost</h3>
|
|
575
|
+
<p style="color: rgba(255,255,255,0.8); font-size: var(--font-sm); margin-bottom: var(--space-3);">Optimized MCP transport layer for faster operations</p>
|
|
576
|
+
<div style="display: flex; justify-content: space-around; margin-top: var(--space-3);">
|
|
577
|
+
<div style="text-align: center;">
|
|
578
|
+
<div style="color: var(--white); font-size: var(--font-xl); font-weight: 700;">3x</div>
|
|
579
|
+
<div style="color: rgba(255,255,255,0.6); font-size: var(--font-xs);">Faster</div>
|
|
580
|
+
</div>
|
|
581
|
+
<div style="text-align: center;">
|
|
582
|
+
<div style="color: var(--white); font-size: var(--font-xl); font-weight: 700;">80%</div>
|
|
583
|
+
<div style="color: rgba(255,255,255,0.6); font-size: var(--font-xs);">Less API</div>
|
|
584
|
+
</div>
|
|
585
|
+
</div>
|
|
586
|
+
</div>
|
|
587
|
+
|
|
588
|
+
<!-- 18th MCP Server -->
|
|
589
|
+
<div class="card" style="background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2);">
|
|
590
|
+
<div class="card-icon" style="font-size: 2rem;">🆕</div>
|
|
591
|
+
<h3 style="color: var(--white); margin-bottom: var(--space-2);">18th MCP Server Added</h3>
|
|
592
|
+
<p style="color: rgba(255,255,255,0.8); font-size: var(--font-sm); margin-bottom: var(--space-3);">Local Development Server for artifact syncing</p>
|
|
593
|
+
<ul style="list-style: none; padding: 0;">
|
|
594
|
+
<li style="color: rgba(255,255,255,0.7); font-size: var(--font-xs); margin-bottom: var(--space-1);">• snow_pull_artifact</li>
|
|
595
|
+
<li style="color: rgba(255,255,255,0.7); font-size: var(--font-xs); margin-bottom: var(--space-1);">• snow_push_artifact</li>
|
|
596
|
+
<li style="color: rgba(255,255,255,0.7); font-size: var(--font-xs);">• snow_validate_coherence</li>
|
|
597
|
+
</ul>
|
|
598
|
+
</div>
|
|
599
|
+
</div>
|
|
600
|
+
|
|
601
|
+
<div class="text-center" style="margin-top: var(--space-10);">
|
|
602
|
+
<a href="https://github.com/groeimetai/snow-flow/releases/tag/v3.6.25" class="btn btn-glass" style="background: rgba(255,255,255,0.2); color: white; padding: var(--space-3) var(--space-6);">
|
|
603
|
+
<span>View Full Changelog</span>
|
|
604
|
+
<span style="margin-left: var(--space-2);">→</span>
|
|
605
|
+
</a>
|
|
606
|
+
</div>
|
|
607
|
+
</div>
|
|
608
|
+
</section>
|
|
609
|
+
|
|
378
610
|
<!-- Installation Section -->
|
|
379
611
|
<section id="install" class="section" style="background: var(--black);">
|
|
380
612
|
<div class="container">
|
|
@@ -486,7 +718,7 @@ npm install -g snow-flow
|
|
|
486
718
|
|
|
487
719
|
# Verify installation
|
|
488
720
|
snow-flow --version
|
|
489
|
-
# Expected: 3.
|
|
721
|
+
# Expected: 3.6.25
|
|
490
722
|
|
|
491
723
|
# Check available commands
|
|
492
724
|
snow-flow --help</code>
|
|
@@ -542,7 +774,7 @@ claude --mcp-config .claude/claude_desktop_config.json</code>
|
|
|
542
774
|
<div>
|
|
543
775
|
<h4 style="font-weight: 600; margin-bottom: var(--space-4);">What Gets Configured</h4>
|
|
544
776
|
<ul style="list-style: disc; margin-left: var(--space-6); margin-bottom: var(--space-6);">
|
|
545
|
-
<li><strong>
|
|
777
|
+
<li><strong>18 MCP Servers</strong> - All ServiceNow automation tools</li>
|
|
546
778
|
<li><strong>200+ Tools</strong> - Every function documented</li>
|
|
547
779
|
<li><strong>Auto-Approval</strong> - No manual permission steps</li>
|
|
548
780
|
<li><strong>Error Recovery</strong> - Automatic timeout handling</li>
|
|
@@ -551,7 +783,7 @@ claude --mcp-config .claude/claude_desktop_config.json</code>
|
|
|
551
783
|
|
|
552
784
|
<div style="background: var(--green-100); border: 1px solid var(--green-400); padding: var(--space-4); border-radius: var(--radius-md);">
|
|
553
785
|
<strong>✅ Success Indicators:</strong><br>
|
|
554
|
-
• Claude Code shows
|
|
786
|
+
• Claude Code shows 18 MCP servers<br>
|
|
555
787
|
• Tools like snow_deploy available<br>
|
|
556
788
|
• No permission error messages
|
|
557
789
|
</div>
|
|
@@ -779,7 +1011,7 @@ export DEBUG=snow-flow:*</code>
|
|
|
779
1011
|
<div class="container">
|
|
780
1012
|
<div class="grid grid-cols-2 md:grid-cols-4" style="gap: var(--space-8);">
|
|
781
1013
|
<div class="text-center animate-fade-in-up stagger-1">
|
|
782
|
-
<h3 style="font-size: var(--font-6xl); font-weight: 900; background: var(--gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent;">
|
|
1014
|
+
<h3 style="font-size: var(--font-6xl); font-weight: 900; background: var(--gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent;">18</h3>
|
|
783
1015
|
<p style="color: var(--gray-400); text-transform: uppercase; letter-spacing: var(--tracking-widest);">MCP Servers</p>
|
|
784
1016
|
</div>
|
|
785
1017
|
<div class="text-center animate-fade-in-up stagger-2">
|