snow-flow 2.8.0 → 2.8.1

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 (2) hide show
  1. package/README.md +33 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -71,6 +71,37 @@ snow-flow auth login
71
71
  - **Neural Learning**: Pattern recognition improves suggestions and automation over time
72
72
 
73
73
  ### 🔧 **100+ ServiceNow MCP Tools**
74
+
75
+ #### 🎯 **Universal Query Tool** - One Tool for ALL Tables
76
+ The revolutionary `snow_query_table` replaces all table-specific query tools with intelligent performance optimization:
77
+
78
+ ```javascript
79
+ // Smart Performance Modes - LLM chooses the best approach:
80
+
81
+ // 1. Count-only (default) - 99.9% memory savings for ML training
82
+ snow_query_table({ table: "incident", query: "state!=7", limit: 2000 })
83
+ // Returns: {total_results: 2000} - Only 13 bytes!
84
+
85
+ // 2. Specific fields - Get exactly what you need
86
+ snow_query_table({
87
+ table: "sc_request",
88
+ fields: ["number", "short_description", "requested_for"],
89
+ include_display_values: true // Names instead of sys_ids
90
+ })
91
+
92
+ // 3. Group by aggregation - Analytics and statistics
93
+ snow_query_table({
94
+ table: "problem",
95
+ group_by: "category",
96
+ order_by: "-priority" // - means descending (highest first)
97
+ })
98
+
99
+ // 4. Full content - When complete data is needed
100
+ snow_query_table({ table: "change_request", include_content: true })
101
+ ```
102
+
103
+ Works with ANY table: `incident`, `sc_request`, `problem`, `cmdb_ci`, even `u_custom_table`!
104
+
74
105
  - **Operations**: Incident, Request, Problem, and Change management with AI analysis
75
106
  - **Development**: Create widgets, flows, scripts, and business rules with natural language
76
107
  - **Integration**: REST/SOAP endpoints, data transformation, and external system connectivity
@@ -85,8 +116,8 @@ Simply describe what you want to achieve:
85
116
 
86
117
  Snow-Flow understands your intent and orchestrates the entire implementation.
87
118
 
88
- ### 🤖 **Machine Learning & Neural Networks (NEW!)**
89
- Snow-Flow now includes real neural network capabilities powered by TensorFlow.js:
119
+ ### 🤖 **Machine Learning & Neural Networks**
120
+ Snow-Flow includes real neural network capabilities powered by TensorFlow.js:
90
121
 
91
122
  #### **Incident Classification & Prediction**
92
123
  Train LSTM neural networks on your historical incident data to:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "snow-flow",
3
- "version": "2.8.0",
3
+ "version": "2.8.1",
4
4
  "description": "Snow-Flow: ServiceNow Advanced Intelligence Platform - 100+ real MCP tools with AI-powered swarm orchestration and neural networks. Dynamic task categorization using AI. Machine learning for incident classification, change risk prediction, and anomaly detection. Zero Mock Data, 100% Real API Integration.",
5
5
  "main": "dist/index.js",
6
6
  "type": "commonjs",