snow-flow 3.2.2 → 3.2.3

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 CHANGED
@@ -10,6 +10,31 @@
10
10
 
11
11
  Snow-Flow is an AI-powered development platform for ServiceNow that provides 180+ MCP tools and multi-agent coordination. It enables developers and administrators to interact with ServiceNow through natural language commands and automated workflows.
12
12
 
13
+ ## Quick Start - One Command to Rule Them All
14
+
15
+ ### 🚀 The Swarm Command
16
+ The simplest way to use Snow-Flow is with the swarm command. Just describe what you want in natural language:
17
+
18
+ ```bash
19
+ # Basic usage - no flags needed!
20
+ snow-flow swarm "Create an incident dashboard with real-time updates"
21
+ ```
22
+
23
+ This single command automatically:
24
+ - Spawns multiple specialized AI agents
25
+ - Discovers existing ServiceNow artifacts
26
+ - Creates complete working solutions
27
+ - Deploys directly to your instance
28
+ - Handles all technical complexity
29
+
30
+ More examples:
31
+ ```bash
32
+ snow-flow swarm "Build employee onboarding workflow"
33
+ snow-flow swarm "Create knowledge base for IT support"
34
+ snow-flow swarm "Set up change management process"
35
+ snow-flow swarm "Analyze last month's incident patterns"
36
+ ```
37
+
13
38
  ## Core Functionality
14
39
 
15
40
  Snow-Flow connects directly to ServiceNow instances through OAuth 2.0 authentication and provides:
@@ -369,8 +394,43 @@ snow-flow auth login
369
394
  snow-flow auth test
370
395
  ```
371
396
 
397
+ ### Troubleshooting: Claude Code stdio Error
398
+
399
+ If you encounter a stdio/permissions error when using Snow-Flow with Claude Code:
400
+
401
+ ```bash
402
+ # 1. Fix Claude permissions
403
+ claude --dangerously-skip-permissions
404
+
405
+ # 2. Activate Claude Code
406
+ # Open Claude Code and ensure it's activated with your account
407
+
408
+ # 3. Login to Claude
409
+ # Sign in with your Claude account in the Claude Code interface
410
+
411
+ # 4. Close Claude Code completely
412
+ # Make sure Claude Code is fully closed before proceeding
413
+
414
+ # 5. Now run Snow-Flow swarm
415
+ snow-flow swarm "Your ServiceNow task here"
416
+ ```
417
+
418
+ This resolves the common "stdio" error that occurs when Claude Code doesn't have proper permissions to communicate with MCP servers.
419
+
372
420
  ## Usage Examples
373
421
 
422
+ ### Swarm Command (Recommended)
423
+ ```bash
424
+ # The simplest way - just describe what you want!
425
+ snow-flow swarm "Create incident management dashboard"
426
+
427
+ # No flags needed for basic usage
428
+ snow-flow swarm "Build service catalog for laptop requests"
429
+
430
+ # Advanced usage with optional flags
431
+ snow-flow swarm "Optimize incident resolution process" --monitor --parallel
432
+ ```
433
+
374
434
  ### Natural Language Commands
375
435
  ```bash
376
436
  # Create an incident dashboard
@@ -395,19 +455,24 @@ snow-flow deploy widget --name "SLA Dashboard" --template dashboard
395
455
  snow-flow generate docs --scope "incident_management"
396
456
  ```
397
457
 
398
- ### Swarm Coordination
458
+ ### Advanced Swarm Options
399
459
  ```bash
400
- # Multi-agent development
460
+ # With specific strategy
401
461
  snow-flow swarm "Build complete HR service portal" \
402
462
  --strategy development \
403
463
  --mode hierarchical \
404
464
  --max-agents 8
405
465
 
406
- # Analysis swarm
466
+ # Parallel analysis
407
467
  snow-flow swarm "Analyze system performance bottlenecks" \
408
468
  --strategy analysis \
409
469
  --mode mesh \
410
470
  --parallel
471
+
472
+ # With monitoring
473
+ snow-flow swarm "Deploy production changes" \
474
+ --monitor \
475
+ --auto-rollback
411
476
  ```
412
477
 
413
478
  ## Configuration
@@ -36,7 +36,7 @@ function getDynamicVersion() {
36
36
  console.warn('Warning: Could not read version from package.json:', error);
37
37
  }
38
38
  // Fallback to hardcoded version
39
- return '3.2.2';
39
+ return '3.2.3';
40
40
  }
41
41
  // Export a constant that uses the dynamic version
42
42
  exports.VERSION = getDynamicVersion();
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "snow-flow",
3
- "version": "3.2.2",
4
- "description": "Snow-Flow v3.2.2: ServiceNow development platform with 180+ MCP tools. Includes ATF Testing, Knowledge Management, Service Catalog, Change Management, Virtual Agent, Performance Analytics, Flow Designer, Agent Workspace, Mobile, CMDB/Discovery, Event Management, HR Service Delivery, Customer Service Management, and DevOps integration. All tools use official ServiceNow REST APIs across 17 specialized MCP servers.",
3
+ "version": "3.2.3",
4
+ "description": "Snow-Flow v3.2.3: ServiceNow development platform with 180+ MCP tools. One command to rule them all: 'snow-flow swarm'. Includes ATF Testing, Knowledge Management, Service Catalog, Change Management, Virtual Agent, Performance Analytics, Flow Designer, Agent Workspace, Mobile, CMDB/Discovery, Event Management, HR Service Delivery, Customer Service Management, and DevOps integration. All tools use official ServiceNow REST APIs across 17 specialized MCP servers.",
5
5
  "main": "dist/index.js",
6
6
  "type": "commonjs",
7
7
  "bin": {