snow-flow 1.1.98 → 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 +9 -9
- package/dist/version.js +1 -3
- package/package.json +1 -1
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: ["
|
|
4205
|
+
args: ["claude-flow@alpha", "mcp"],
|
|
4206
4206
|
env: {}
|
|
4207
4207
|
},
|
|
4208
4208
|
"ruv-swarm": {
|
|
4209
4209
|
command: "npx",
|
|
4210
|
-
args: ["
|
|
4210
|
+
args: ["claude-flow@alpha", "swarm", "--mode", "mcp"],
|
|
4211
4211
|
env: {}
|
|
4212
4212
|
}
|
|
4213
4213
|
}
|
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.
|
|
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.
|
|
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",
|