snow-flow 2.0.10 → 2.0.11
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
|
@@ -2186,7 +2186,7 @@ async function createDirectoryStructure(targetDir, force = false) {
|
|
|
2186
2186
|
const directories = [
|
|
2187
2187
|
'.claude', '.claude/commands', '.claude/commands/sparc', '.claude/configs',
|
|
2188
2188
|
'.swarm', '.swarm/sessions', '.swarm/agents',
|
|
2189
|
-
'.snow-flow', '.snow-flow/queen', '.snow-flow/memory', '.snow-flow/queen-test', '.snow-flow/queen-advanced',
|
|
2189
|
+
'.snow-flow', '.snow-flow/queen', '.snow-flow/memory', '.snow-flow/data', '.snow-flow/queen-test', '.snow-flow/queen-advanced',
|
|
2190
2190
|
'memory', 'memory/agents', 'memory/sessions',
|
|
2191
2191
|
'coordination', 'coordination/memory_bank', 'coordination/subtasks',
|
|
2192
2192
|
'servicenow', 'servicenow/widgets', 'servicenow/workflows', 'servicenow/scripts',
|
|
@@ -42,7 +42,7 @@ class ServiceNowIntelligentMCP {
|
|
|
42
42
|
try {
|
|
43
43
|
// Initialize systems synchronously during server startup
|
|
44
44
|
this.memorySystem = new memory_system_js_1.MemorySystem({
|
|
45
|
-
dbPath: '
|
|
45
|
+
dbPath: './.snow-flow/data/intelligent-mcp.db',
|
|
46
46
|
cache: { enabled: true, maxSize: 100, ttl: 3600 },
|
|
47
47
|
ttl: { default: 3600, session: 7200, artifact: 86400, metric: 604800 }
|
|
48
48
|
});
|
|
@@ -57,7 +57,7 @@ class ServiceNowIntelligentMCP {
|
|
|
57
57
|
catch (error) {
|
|
58
58
|
this.logger.error('Failed to initialize systems:', error);
|
|
59
59
|
// Initialize minimal fallback systems
|
|
60
|
-
this.memorySystem = new memory_system_js_1.MemorySystem({ dbPath: '
|
|
60
|
+
this.memorySystem = new memory_system_js_1.MemorySystem({ dbPath: './.snow-flow/data/intelligent-mcp.db' });
|
|
61
61
|
await this.memorySystem.initialize();
|
|
62
62
|
}
|
|
63
63
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "snow-flow",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.11",
|
|
4
4
|
"description": "Snow-Flow: ServiceNow Advanced Intelligence Platform - 100+ real MCP tools with AI-powered swarm orchestration. Zero Mock Data, 100% Real API Integration. Natural language interface for ServiceNow operations.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "commonjs",
|