snow-flow 4.5.12 ā 4.5.13
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/dist/cli.js +14 -15
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -1073,7 +1073,7 @@ Remember: You are the Queen Agent - the master coordinator. Your role is to ensu
|
|
|
1073
1073
|
|
|
1074
1074
|
## š Session Information
|
|
1075
1075
|
- **Session ID**: ${sessionId}
|
|
1076
|
-
- **Snow-Flow Version**:
|
|
1076
|
+
- **Snow-Flow Version**: v${version_js_1.VERSION}
|
|
1077
1077
|
- **Authentication**: ${isAuthenticated ? 'Active' : 'Required'}
|
|
1078
1078
|
- **Deployment Mode**: ${options.autoDeploy ? 'Live deployment enabled' : 'Planning mode'}
|
|
1079
1079
|
- **Estimated Agents**: ${taskAnalysis.estimatedAgentCount}
|
|
@@ -1550,7 +1550,7 @@ program
|
|
|
1550
1550
|
.option('--skip-mcp', 'Skip MCP server activation prompt')
|
|
1551
1551
|
.option('--force', 'Overwrite existing files without prompting')
|
|
1552
1552
|
.action(async (options) => {
|
|
1553
|
-
console.log(chalk_1.default.blue.bold(`\n
|
|
1553
|
+
console.log(chalk_1.default.blue.bold(`\nšļø Snow-Flow v${version_js_1.VERSION} - Conversational ServiceNow Development`));
|
|
1554
1554
|
console.log('='.repeat(60));
|
|
1555
1555
|
const targetDir = process.cwd();
|
|
1556
1556
|
try {
|
|
@@ -1575,15 +1575,12 @@ program
|
|
|
1575
1575
|
// Create README files
|
|
1576
1576
|
await createReadmeFiles(targetDir, options.force);
|
|
1577
1577
|
console.log(chalk_1.default.green.bold('\nā
Snow-Flow project initialized successfully!'));
|
|
1578
|
-
console.log('\nš Created
|
|
1579
|
-
console.log(' ā .claude/ - Claude Code configuration');
|
|
1580
|
-
console.log(' ā .
|
|
1581
|
-
console.log(' ā .
|
|
1582
|
-
console.log(' ā
|
|
1583
|
-
console.log(' ā .
|
|
1584
|
-
console.log(' ā .mcp.json - MCP server configuration');
|
|
1585
|
-
console.log(' ā CLAUDE.md - Development documentation');
|
|
1586
|
-
console.log(' ā README.md - Project documentation');
|
|
1578
|
+
console.log('\nš Created Snow-Flow configuration:');
|
|
1579
|
+
console.log(' ā .claude/ - Claude Code MCP configuration');
|
|
1580
|
+
console.log(' ā .mcp.json - 20+ ServiceNow MCP servers (235+ tools)');
|
|
1581
|
+
console.log(' ā CLAUDE.md - Complete development guide');
|
|
1582
|
+
console.log(' ā README.md - Current capabilities documentation');
|
|
1583
|
+
console.log(' ā .snow-flow/ - Project workspace and memory');
|
|
1587
1584
|
if (!options.skipMcp) {
|
|
1588
1585
|
// Start MCP servers automatically
|
|
1589
1586
|
console.log(chalk_1.default.yellow.bold('\nš Starting MCP servers in the background...'));
|
|
@@ -1606,10 +1603,12 @@ program
|
|
|
1606
1603
|
}
|
|
1607
1604
|
}
|
|
1608
1605
|
console.log(chalk_1.default.blue.bold('\nšÆ Next steps:'));
|
|
1609
|
-
console.log('
|
|
1610
|
-
console.log('
|
|
1611
|
-
console.log('
|
|
1612
|
-
console.log('
|
|
1606
|
+
console.log(chalk_1.default.red.bold('ā ļø IMPORTANT: Ensure Claude Code is running first!'));
|
|
1607
|
+
console.log('1. Start Claude Code: ' + chalk_1.default.cyan('claude --dangerously-skip-permissions'));
|
|
1608
|
+
console.log('2. Authenticate Snow-Flow: ' + chalk_1.default.cyan('snow-flow auth login'));
|
|
1609
|
+
console.log('3. Start developing: ' + chalk_1.default.cyan('snow-flow swarm "create incident dashboard"'));
|
|
1610
|
+
console.log('\nš Complete documentation: ' + chalk_1.default.blue('https://snow-flow.dev'));
|
|
1611
|
+
console.log('š” UI Builder, Agent Workspaces, and 235+ tools now available');
|
|
1613
1612
|
// Force exit to prevent hanging
|
|
1614
1613
|
process.exit(0);
|
|
1615
1614
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "snow-flow",
|
|
3
|
-
"version": "4.5.
|
|
3
|
+
"version": "4.5.13",
|
|
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",
|