snow-flow 1.2.1 โ 1.2.2
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/agents/flow-builder-agent.js +131 -469
- package/dist/mcp/servicenow-flow-composer-mcp.js +661 -63
- package/dist/version.js +12 -1
- package/package.json +1 -1
package/dist/version.js
CHANGED
|
@@ -7,12 +7,23 @@ exports.VERSION_INFO = exports.VERSION = void 0;
|
|
|
7
7
|
exports.getVersionString = getVersionString;
|
|
8
8
|
exports.getLatestFeatures = getLatestFeatures;
|
|
9
9
|
exports.isLatestVersion = isLatestVersion;
|
|
10
|
-
exports.VERSION = '1.2.
|
|
10
|
+
exports.VERSION = '1.2.2';
|
|
11
11
|
exports.VERSION_INFO = {
|
|
12
12
|
version: exports.VERSION,
|
|
13
13
|
name: 'Snow-Flow',
|
|
14
14
|
description: 'ServiceNow Queen Agent - Hive-Mind Intelligence for ServiceNow Development',
|
|
15
15
|
features: {
|
|
16
|
+
'1.2.2': [
|
|
17
|
+
'๐ฏ CRITICAL FIX: Resolved empty flows issue - Complete MCP integration achieved',
|
|
18
|
+
'๐ง FLOW-BUILDER AGENT: Now uses MCPExecutionBridge for real ServiceNow deployment',
|
|
19
|
+
'โก INTELLIGENT DEPLOYMENT: Calls snow_create_flow MCP tool with template matching and natural language parsing',
|
|
20
|
+
'๐งช LIVE TESTING: Implements snow_test_flow_with_mock for comprehensive flow validation',
|
|
21
|
+
'๐ SMART DISCOVERY: Uses snow_discover_existing_flows to prevent flow duplication',
|
|
22
|
+
'๐ REAL SERVICENOW DATA: Stores artifacts with actual sys_ids from ServiceNow instead of mock data',
|
|
23
|
+
'โจ ENHANCED FLOW COMPOSER: 5 professional templates (Approval, Incident, Request, Data Processing, User Management)',
|
|
24
|
+
'๐ง NATURAL LANGUAGE PROCESSING: Intelligent flow requirement analysis and automatic artifact creation',
|
|
25
|
+
'๐ช WORKFLOW OPTIMIZATION: Complete elimination of 500+ lines of redundant hardcoded flow logic'
|
|
26
|
+
],
|
|
16
27
|
'1.2.1': [
|
|
17
28
|
'๐ง NEO4J SMART INTEGRATION: Auto-detects Neo4j during init and offers optional graph memory setup',
|
|
18
29
|
'โก GRACEFUL FALLBACK: Graph memory server now starts without Neo4j, provides helpful fallback responses',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "snow-flow",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.2",
|
|
4
4
|
"description": "ServiceNow Queen Agent - Hive-Mind Intelligence for ServiceNow Development inspired by claude-flow. Transform complex workflows into elegant one-command orchestration.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "commonjs",
|