snow-flow 4.3.9 → 4.3.10
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.
|
@@ -798,7 +798,7 @@ ${args.recurring_price && args.recurring_price !== '0' ? `🔄 Recurring: $${arg
|
|
|
798
798
|
this.logger.error('❌ Variable creation failed:', {
|
|
799
799
|
error: response.error,
|
|
800
800
|
payload: variableData,
|
|
801
|
-
|
|
801
|
+
success: response.success
|
|
802
802
|
});
|
|
803
803
|
throw new Error(`Failed to create catalog variable: ${response.error}`);
|
|
804
804
|
}
|
|
@@ -1252,8 +1252,8 @@ ${args.help_text ? `❓ Help: ${args.help_text}` : ''}
|
|
|
1252
1252
|
this.logger.error(errorMsg);
|
|
1253
1253
|
this.logger.error('❌ Action data was:', actionData);
|
|
1254
1254
|
this.logger.error('❌ Response details:', {
|
|
1255
|
-
|
|
1256
|
-
|
|
1255
|
+
success: actionResponse.success,
|
|
1256
|
+
error: actionResponse.error,
|
|
1257
1257
|
data: actionResponse.data
|
|
1258
1258
|
});
|
|
1259
1259
|
// BELANGRIJK: Gooi een error zodat de gebruiker weet dat het faalt!
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "snow-flow",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.10",
|
|
4
4
|
"description": "Conversational ServiceNow development platform using Claude Code. Multi-agent orchestration with 20+ MCP servers providing 200+ ServiceNow tools for comprehensive platform development.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "commonjs",
|
package/website/index.html
CHANGED
|
@@ -760,54 +760,83 @@ and historical patterns. Deploy as real-time API" \
|
|
|
760
760
|
</div>
|
|
761
761
|
</div>
|
|
762
762
|
|
|
763
|
-
<!-- Knowledge
|
|
763
|
+
<!-- Knowledge Management -->
|
|
764
764
|
<div class="card" style="background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2);">
|
|
765
|
-
<div
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
<
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
765
|
+
<div style="padding: var(--space-6);">
|
|
766
|
+
<div style="font-size: var(--font-3xl); margin-bottom: var(--space-3);">📚</div>
|
|
767
|
+
<h3 style="color: var(--white); font-size: var(--font-xl); font-weight: 700; margin-bottom: var(--space-3);">Knowledge Management</h3>
|
|
768
|
+
<p style="color: rgba(255,255,255,0.8); margin-bottom: var(--space-4);">Complete knowledge base and article management with MCP tools for creation, search, and lifecycle management.</p>
|
|
769
|
+
<div style="background: rgba(16, 185, 129, 0.2); padding: var(--space-2); border-radius: var(--radius-md); margin-bottom: var(--space-3);">
|
|
770
|
+
<strong style="color: #10b981;">6 Knowledge Tools</strong>
|
|
771
|
+
</div>
|
|
772
|
+
<ul style="color: rgba(255,255,255,0.7); font-size: var(--font-sm); list-style: none; padding: 0;">
|
|
773
|
+
<li>✅ snow_create_knowledge_article</li>
|
|
774
|
+
<li>✅ snow_search_knowledge</li>
|
|
775
|
+
<li>✅ snow_create_knowledge_base</li>
|
|
776
|
+
<li>✅ snow_discover_knowledge_bases</li>
|
|
777
|
+
<li>✅ Knowledge base validation</li>
|
|
778
|
+
<li>✅ Article lifecycle management</li>
|
|
779
|
+
</ul>
|
|
780
|
+
</div>
|
|
773
781
|
</div>
|
|
774
782
|
|
|
775
783
|
<!-- Catalog Variable Fix -->
|
|
776
784
|
<div class="card" style="background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2);">
|
|
777
|
-
<div
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
<
|
|
785
|
+
<div style="padding: var(--space-6);">
|
|
786
|
+
<div style="font-size: var(--font-3xl); margin-bottom: var(--space-3);">🛍️</div>
|
|
787
|
+
<h3 style="color: var(--white); font-size: var(--font-xl); font-weight: 700; margin-bottom: var(--space-3);">Service Catalog</h3>
|
|
788
|
+
<p style="color: rgba(255,255,255,0.8); margin-bottom: var(--space-4);">Full service catalog management with 9 MCP tools for items, variables, UI policies, and ordering workflows.</p>
|
|
789
|
+
<div style="background: rgba(16, 185, 129, 0.2); padding: var(--space-2); border-radius: var(--radius-md); margin-bottom: var(--space-3);">
|
|
790
|
+
<strong style="color: #10b981;">9 Catalog Tools</strong>
|
|
791
|
+
</div>
|
|
792
|
+
<ul style="color: rgba(255,255,255,0.7); font-size: var(--font-sm); list-style: none; padding: 0;">
|
|
793
|
+
<li>✅ snow_create_catalog_item</li>
|
|
794
|
+
<li>✅ snow_create_catalog_variable</li>
|
|
795
|
+
<li>✅ snow_create_catalog_ui_policy</li>
|
|
796
|
+
<li>✅ snow_order_catalog_item</li>
|
|
797
|
+
<li>✅ Variable table validation</li>
|
|
798
|
+
<li>✅ Comprehensive debugging</li>
|
|
799
|
+
</ul>
|
|
782
800
|
</div>
|
|
783
801
|
</div>
|
|
784
802
|
|
|
785
803
|
<!-- Enhanced UI Policy Debugging -->
|
|
786
804
|
<div class="card" style="background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2);">
|
|
787
|
-
<div
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
<
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
805
|
+
<div style="padding: var(--space-6);">
|
|
806
|
+
<div style="font-size: var(--font-3xl); margin-bottom: var(--space-3);">🧠</div>
|
|
807
|
+
<h3 style="color: var(--white); font-size: var(--font-xl); font-weight: 700; margin-bottom: var(--space-3);">Machine Learning</h3>
|
|
808
|
+
<p style="color: rgba(255,255,255,0.8); margin-bottom: var(--space-4);">Real TensorFlow.js neural networks for ServiceNow data analysis including incident classification and anomaly detection.</p>
|
|
809
|
+
<div style="background: rgba(16, 185, 129, 0.2); padding: var(--space-2); border-radius: var(--radius-md); margin-bottom: var(--space-3);">
|
|
810
|
+
<strong style="color: #10b981;">Real Neural Networks</strong>
|
|
811
|
+
</div>
|
|
812
|
+
<ul style="color: rgba(255,255,255,0.7); font-size: var(--font-sm); list-style: none; padding: 0;">
|
|
813
|
+
<li>✅ ml_train_incident_classifier</li>
|
|
814
|
+
<li>✅ ml_predict_change_risk</li>
|
|
815
|
+
<li>✅ ml_detect_anomalies</li>
|
|
816
|
+
<li>✅ LSTM neural networks</li>
|
|
817
|
+
<li>✅ TensorFlow.js integration</li>
|
|
818
|
+
<li>✅ Hybrid ML recommendations</li>
|
|
819
|
+
</ul>
|
|
820
|
+
</div>
|
|
795
821
|
</div>
|
|
796
822
|
|
|
797
823
|
<!-- Performance Improvements -->
|
|
798
824
|
<div class="card" style="background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2);">
|
|
799
|
-
<div
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
<div style="
|
|
804
|
-
<
|
|
805
|
-
<div style="color: rgba(255,255,255,0.6); font-size: var(--font-xs);">Faster</div>
|
|
806
|
-
</div>
|
|
807
|
-
<div style="text-align: center;">
|
|
808
|
-
<div style="color: var(--white); font-size: var(--font-xl); font-weight: 700;">80%</div>
|
|
809
|
-
<div style="color: rgba(255,255,255,0.6); font-size: var(--font-xs);">Less API</div>
|
|
825
|
+
<div style="padding: var(--space-6);">
|
|
826
|
+
<div style="font-size: var(--font-3xl); margin-bottom: var(--space-3);">⚡</div>
|
|
827
|
+
<h3 style="color: var(--white); font-size: var(--font-xl); font-weight: 700; margin-bottom: var(--space-3);">Advanced Features</h3>
|
|
828
|
+
<p style="color: rgba(255,255,255,0.8); margin-bottom: var(--space-4);">14 AI-powered tools for process mining, batch operations, and automated documentation generation.</p>
|
|
829
|
+
<div style="background: rgba(16, 185, 129, 0.2); padding: var(--space-2); border-radius: var(--radius-md); margin-bottom: var(--space-3);">
|
|
830
|
+
<strong style="color: #10b981;">14 Advanced Tools</strong>
|
|
810
831
|
</div>
|
|
832
|
+
<ul style="color: rgba(255,255,255,0.7); font-size: var(--font-sm); list-style: none; padding: 0;">
|
|
833
|
+
<li>✅ snow_batch_api (80% API reduction)</li>
|
|
834
|
+
<li>✅ snow_discover_process</li>
|
|
835
|
+
<li>✅ snow_analyze_query</li>
|
|
836
|
+
<li>✅ snow_generate_documentation</li>
|
|
837
|
+
<li>✅ Process mining capabilities</li>
|
|
838
|
+
<li>✅ Real-time analytics</li>
|
|
839
|
+
</ul>
|
|
811
840
|
</div>
|
|
812
841
|
</div>
|
|
813
842
|
|