snow-flow 1.1.97 → 1.1.99

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 CHANGED
@@ -282,13 +282,13 @@ function startMonitoringDashboard(claudeProcess) {
282
282
  let iterations = 0;
283
283
  const startTime = Date.now();
284
284
  // Show initial dashboard only once
285
- console.log('┌─────────────────────────────────────────────────────────────┐');
286
- console.log(`│ 🚀 Snow-Flow Dashboard v${version_js_1.VERSION} │`);
287
- console.log('├─────────────────────────────────────────────────────────────┤');
288
- console.log(`│ 🤖 Claude Code Status: ✅ Starting │`);
289
- console.log(`│ 📊 Process ID: ${claudeProcess.pid || 'N/A'} │`);
290
- console.log(`│ ⏱️ Session Time: 00:00 │`);
291
- console.log(`│ 🔄 Monitoring Cycles: 0 │`);
285
+ console.log(`┌─────────────────────────────────────────────────────────────┐`);
286
+ console.log(`│ 🚀 Snow-Flow Dashboard v${version_js_1.VERSION} │`);
287
+ console.log(`├─────────────────────────────────────────────────────────────┤`);
288
+ console.log(`│ 🤖 Claude Code Status: ✅ Starting │`);
289
+ console.log(`│ 📊 Process ID: ${claudeProcess.pid || 'N/A'} │`);
290
+ console.log(`│ ⏱️ Session Time: 00:00 │`);
291
+ console.log(`│ 🔄 Monitoring Cycles: 0 │`);
292
292
  console.log('└─────────────────────────────────────────────────────────────┘');
293
293
  // Silent monitoring - only log to file or memory, don't interfere with Claude Code UI
294
294
  const monitoringInterval = setInterval(() => {
@@ -4202,12 +4202,12 @@ program
4202
4202
  },
4203
4203
  "snow-flow": {
4204
4204
  command: "npx",
4205
- args: ["snow-flow@alpha", "mcp"],
4205
+ args: ["claude-flow@alpha", "mcp"],
4206
4206
  env: {}
4207
4207
  },
4208
4208
  "ruv-swarm": {
4209
4209
  command: "npx",
4210
- args: ["snow-flow@alpha", "swarm", "--mode", "mcp"],
4210
+ args: ["claude-flow@alpha", "swarm", "--mode", "mcp"],
4211
4211
  env: {}
4212
4212
  }
4213
4213
  }
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env node
1
2
  "use strict";
2
3
  /**
3
4
  * ServiceNow Memory MCP Server
@@ -66,7 +67,6 @@ class ServiceNowMemoryMCP extends base_mcp_server_1.BaseMCPServer {
66
67
  }
67
68
  }
68
69
  async initialize() {
69
- await super.initialize();
70
70
  // Initialize memory system
71
71
  this.memorySystem = new memory_system_1.MemorySystem({
72
72
  dbPath: path.join(this.memoryPath, 'snow-flow-memory.db')
@@ -386,15 +386,16 @@ class ServiceNowMemoryMCP extends base_mcp_server_1.BaseMCPServer {
386
386
  if (this.memorySystem) {
387
387
  await this.memorySystem.close();
388
388
  }
389
- await super.shutdown();
389
+ // No need to call super.shutdown() - BaseMCPServer doesn't have this method
390
390
  }
391
391
  }
392
392
  exports.ServiceNowMemoryMCP = ServiceNowMemoryMCP;
393
- // Create and start the server
394
- if (require.main === module) {
395
- const server = new ServiceNowMemoryMCP();
396
- server.start().catch(error => {
397
- console.error('Failed to start Memory MCP server:', error);
398
- process.exit(1);
399
- });
400
- }
393
+ // Start the server
394
+ const server = new ServiceNowMemoryMCP();
395
+ // Initialize memory system before starting
396
+ server.initialize()
397
+ .then(() => server.start())
398
+ .catch(error => {
399
+ console.error('Failed to start Memory MCP server:', error);
400
+ process.exit(1);
401
+ });
package/dist/version.js CHANGED
@@ -7,7 +7,7 @@ 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.1.97';
10
+ exports.VERSION = '1.1.99';
11
11
  exports.VERSION_INFO = {
12
12
  version: exports.VERSION,
13
13
  name: 'Snow-Flow',
@@ -1378,8 +1378,6 @@ exports.VERSION_INFO = {
1378
1378
  '1.1.29': {
1379
1379
  date: '2025-01-19',
1380
1380
  changes: [
1381
- 'Added snow-flow MCP server using npx snow-flow@alpha mcp',
1382
- 'Added ruv-swarm MCP server using npx snow-flow@alpha swarm --mode mcp',
1383
1381
  'Both servers integrate with Claude Code for enhanced orchestration',
1384
1382
  'Updated enabledMcpjsonServers to include snow-flow and ruv-swarm',
1385
1383
  'Total of 13 MCP servers now available'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "snow-flow",
3
- "version": "1.1.97",
3
+ "version": "1.1.99",
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",