snow-flow 2.0.3 → 2.0.4
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 +42 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -22,10 +22,51 @@ Every interaction with Snow-Flow provides insights into ServiceNow best practice
|
|
|
22
22
|
### **Real Integration, Real Results**
|
|
23
23
|
Unlike mock tools or simulations, Snow-Flow connects directly to your ServiceNow instance through secure OAuth authentication. Every operation is real, every deployment is functional, and every result is production-ready.
|
|
24
24
|
|
|
25
|
+
## 🔐 ServiceNow API Integration & Security
|
|
26
|
+
|
|
27
|
+
### **Direct ServiceNow API Connection**
|
|
28
|
+
All 100+ MCP tools use **official ServiceNow REST APIs** exclusively:
|
|
29
|
+
- **No third-party services** - Your data stays between you and ServiceNow
|
|
30
|
+
- **Standard OAuth 2.0** - Industry-standard authentication protocol
|
|
31
|
+
- **ServiceNow ACLs respected** - Only access what your ServiceNow user can access
|
|
32
|
+
- **Real-time operations** - Direct API calls, no data caching or storage
|
|
33
|
+
|
|
34
|
+
### **How OAuth Authentication Works**
|
|
35
|
+
```bash
|
|
36
|
+
snow-flow auth login
|
|
37
|
+
# 1. Opens ServiceNow OAuth consent screen in your browser
|
|
38
|
+
# 2. You authenticate with YOUR ServiceNow credentials
|
|
39
|
+
# 3. ServiceNow returns OAuth token directly to Snow-Flow
|
|
40
|
+
# 4. Token stored locally in ~/.snow-flow/auth.json (encrypted)
|
|
41
|
+
# 5. All API calls use this token with proper ServiceNow permissions
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
### **Data Privacy & Security**
|
|
45
|
+
- ✅ **Zero data collection** - Snow-Flow doesn't collect or store your ServiceNow data
|
|
46
|
+
- ✅ **Local processing** - All operations happen on your machine
|
|
47
|
+
- ✅ **No external servers** - Direct ServiceNow ↔ Snow-Flow communication only
|
|
48
|
+
- ✅ **Audit compliance** - All actions logged in ServiceNow audit trails
|
|
49
|
+
- ✅ **Role-based access** - Respects your ServiceNow user permissions exactly
|
|
50
|
+
|
|
51
|
+
### **Network Architecture**
|
|
52
|
+
```
|
|
53
|
+
┌─────────────┐ OAuth 2.0 + REST APIs ┌─────────────────┐
|
|
54
|
+
│ Snow-Flow │ ◄─────────────────────────► │ Your ServiceNow │
|
|
55
|
+
│ (Local) │ HTTPS Only │ Instance │
|
|
56
|
+
└─────────────┘ └─────────────────┘
|
|
57
|
+
▲
|
|
58
|
+
│ No external connections
|
|
59
|
+
▼
|
|
60
|
+
┌─────────────┐
|
|
61
|
+
│ Claude Code │ ◄── Local AI processing only
|
|
62
|
+
│ (Local) │
|
|
63
|
+
└─────────────┘
|
|
64
|
+
```
|
|
65
|
+
|
|
25
66
|
## ✨ Core Capabilities
|
|
26
67
|
|
|
27
68
|
### 🤖 **Intelligent Multi-Agent System**
|
|
28
|
-
- **
|
|
69
|
+
- **38 Specialized Agents**: From architects to testers, each agent brings specific expertise
|
|
29
70
|
- **Swarm Coordination**: Agents work together using hierarchical, mesh, or adaptive topologies
|
|
30
71
|
- **Shared Memory**: Persistent knowledge base ensures consistency across all operations
|
|
31
72
|
- **Neural Learning**: Pattern recognition improves suggestions and automation over time
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "snow-flow",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.4",
|
|
4
4
|
"description": "Snow-Flow: ServiceNow Advanced Intelligence Platform - 100+ real MCP tools with AI-powered swarm orchestration. Zero Mock Data, 100% Real API Integration. Natural language interface for ServiceNow operations.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "commonjs",
|