ruflo 3.6.27 → 3.6.29

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.
Files changed (31) hide show
  1. package/package.json +1 -1
  2. package/src/ruvocal/.claude-flow/daemon-state.json +135 -0
  3. package/src/ruvocal/.claude-flow/data/pending-insights.jsonl +0 -25
  4. package/src/ruvocal/.claude-flow/data/ranked-context.json +5 -0
  5. package/src/ruvocal/.claude-flow/logs/daemon.log +31 -0
  6. package/src/ruvocal/.claude-flow/logs/headless/audit_1777949411822_juxau0_prompt.log +989 -0
  7. package/src/ruvocal/.claude-flow/logs/headless/audit_1777949411822_juxau0_result.log +67 -0
  8. package/src/ruvocal/.claude-flow/logs/headless/audit_1777950042278_jvj5xq_prompt.log +989 -0
  9. package/src/ruvocal/.claude-flow/logs/headless/audit_1777950042278_jvj5xq_result.log +93 -0
  10. package/src/ruvocal/.claude-flow/logs/headless/optimize_1777949531823_yt5yc2_prompt.log +1498 -0
  11. package/src/ruvocal/.claude-flow/logs/headless/optimize_1777949531823_yt5yc2_result.log +93 -0
  12. package/src/ruvocal/.claude-flow/logs/headless/testgaps_1777949771821_elw1j4_prompt.log +1498 -0
  13. package/src/ruvocal/.claude-flow/logs/headless/testgaps_1777949771821_elw1j4_result.log +100 -0
  14. package/src/ruvocal/.claude-flow/metrics/codebase-map.json +11 -0
  15. package/src/ruvocal/.claude-flow/metrics/consolidation.json +6 -0
  16. package/src/ruvocal/.claude-flow/sessions/current.json +13 -0
  17. package/src/ruvocal/.swarm/attestation.db +0 -0
  18. package/src/ruvocal/.swarm/hnsw.index +0 -0
  19. package/src/ruvocal/.swarm/hnsw.metadata.json +1 -0
  20. package/src/ruvocal/.swarm/memory.db +0 -0
  21. package/src/ruvocal/.swarm/schema.sql +305 -0
  22. package/src/ruvocal/src/lib/components/chat/ChatWindow.svelte +8 -8
  23. package/src/ruvocal/src/lib/server/mcp/clientPool.spec.ts +175 -0
  24. package/src/ruvocal/src/lib/server/mcp/clientPool.ts +0 -0
  25. package/src/ruvocal/src/lib/server/textGeneration/index.ts +1 -0
  26. package/src/ruvocal/src/lib/server/textGeneration/mcp/runMcpFlow.ts +10 -1
  27. package/src/ruvocal/src/lib/server/textGeneration/types.ts +3 -1
  28. package/src/ruvocal/src/routes/api/v2/user/settings/+server.ts +7 -0
  29. package/src/ruvocal/src/routes/conversation/[id]/+page.svelte +4 -0
  30. package/src/ruvocal/src/routes/conversation/[id]/+server.ts +4 -0
  31. package/src/ruvocal/src/routes/settings/(nav)/+server.ts +6 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ruflo",
3
- "version": "3.6.27",
3
+ "version": "3.6.29",
4
4
  "description": "Ruflo - Enterprise AI agent orchestration platform. Deploy 60+ specialized agents in coordinated swarms with self-learning, fault-tolerant consensus, vector memory, and MCP integration",
5
5
  "main": "bin/ruflo.js",
6
6
  "type": "module",
@@ -0,0 +1,135 @@
1
+ {
2
+ "running": true,
3
+ "startedAt": "2026-05-05T02:48:11.836Z",
4
+ "workers": {
5
+ "map": {
6
+ "runCount": 1,
7
+ "successCount": 1,
8
+ "failureCount": 0,
9
+ "averageDurationMs": 0,
10
+ "isRunning": false,
11
+ "nextRun": "2026-05-05T03:03:11.838Z",
12
+ "lastRun": "2026-05-05T02:48:11.838Z"
13
+ },
14
+ "audit": {
15
+ "runCount": 2,
16
+ "successCount": 2,
17
+ "failureCount": 0,
18
+ "averageDurationMs": 43209,
19
+ "isRunning": false,
20
+ "nextRun": "2026-05-05T03:00:42.275Z",
21
+ "lastRun": "2026-05-05T03:01:38.242Z"
22
+ },
23
+ "optimize": {
24
+ "runCount": 1,
25
+ "successCount": 1,
26
+ "failureCount": 0,
27
+ "averageDurationMs": 74039,
28
+ "isRunning": false,
29
+ "nextRun": "2026-05-05T03:08:25.861Z",
30
+ "lastRun": "2026-05-05T02:53:25.860Z"
31
+ },
32
+ "consolidate": {
33
+ "runCount": 1,
34
+ "successCount": 1,
35
+ "failureCount": 0,
36
+ "averageDurationMs": 0,
37
+ "isRunning": false,
38
+ "nextRun": "2026-05-05T03:24:11.821Z",
39
+ "lastRun": "2026-05-05T02:54:11.820Z"
40
+ },
41
+ "testgaps": {
42
+ "runCount": 1,
43
+ "successCount": 1,
44
+ "failureCount": 0,
45
+ "averageDurationMs": 141408,
46
+ "isRunning": false,
47
+ "nextRun": "2026-05-05T03:18:33.228Z",
48
+ "lastRun": "2026-05-05T02:58:33.228Z"
49
+ },
50
+ "predict": {
51
+ "runCount": 0,
52
+ "successCount": 0,
53
+ "failureCount": 0,
54
+ "averageDurationMs": 0,
55
+ "isRunning": false
56
+ },
57
+ "document": {
58
+ "runCount": 0,
59
+ "successCount": 0,
60
+ "failureCount": 0,
61
+ "averageDurationMs": 0,
62
+ "isRunning": false
63
+ }
64
+ },
65
+ "config": {
66
+ "autoStart": false,
67
+ "logDir": "/Users/cohen/Projects/ruflo/ruflo/src/ruvocal/.claude-flow/logs",
68
+ "stateFile": "/Users/cohen/Projects/ruflo/ruflo/src/ruvocal/.claude-flow/daemon-state.json",
69
+ "maxConcurrent": 2,
70
+ "workerTimeoutMs": 960000,
71
+ "resourceThresholds": {
72
+ "maxCpuLoad": 9.600000000000001,
73
+ "minFreeMemoryPercent": 5
74
+ },
75
+ "workers": [
76
+ {
77
+ "type": "map",
78
+ "intervalMs": 900000,
79
+ "offsetMs": 0,
80
+ "priority": "normal",
81
+ "description": "Codebase mapping",
82
+ "enabled": true
83
+ },
84
+ {
85
+ "type": "audit",
86
+ "intervalMs": 600000,
87
+ "offsetMs": 120000,
88
+ "priority": "critical",
89
+ "description": "Security analysis",
90
+ "enabled": true
91
+ },
92
+ {
93
+ "type": "optimize",
94
+ "intervalMs": 900000,
95
+ "offsetMs": 240000,
96
+ "priority": "high",
97
+ "description": "Performance optimization",
98
+ "enabled": true
99
+ },
100
+ {
101
+ "type": "consolidate",
102
+ "intervalMs": 1800000,
103
+ "offsetMs": 360000,
104
+ "priority": "low",
105
+ "description": "Memory consolidation",
106
+ "enabled": true
107
+ },
108
+ {
109
+ "type": "testgaps",
110
+ "intervalMs": 1200000,
111
+ "offsetMs": 480000,
112
+ "priority": "normal",
113
+ "description": "Test coverage analysis",
114
+ "enabled": true
115
+ },
116
+ {
117
+ "type": "predict",
118
+ "intervalMs": 600000,
119
+ "offsetMs": 0,
120
+ "priority": "low",
121
+ "description": "Predictive preloading",
122
+ "enabled": false
123
+ },
124
+ {
125
+ "type": "document",
126
+ "intervalMs": 3600000,
127
+ "offsetMs": 0,
128
+ "priority": "low",
129
+ "description": "Auto-documentation",
130
+ "enabled": false
131
+ }
132
+ ]
133
+ },
134
+ "savedAt": "2026-05-05T03:01:38.242Z"
135
+ }
@@ -1,25 +0,0 @@
1
- {"type":"edit","file":"/Users/cohen/Projects/ruflo/ruflo/src/ruvocal/cloudbuild.yaml","timestamp":1777643997390}
2
- {"type":"edit","file":"/tmp/ruvocal-env.yaml","timestamp":1777647325711}
3
- {"type":"edit","file":"/Users/cohen/Projects/ruflo/ruflo/src/ruvocal/mcp-bridge/index.js","timestamp":1777647484755}
4
- {"type":"edit","file":"/tmp/ruvocal-env.yaml","timestamp":1777648109715}
5
- {"type":"edit","file":"/Users/cohen/Projects/ruflo/ruflo/src/ruvocal/src/lib/constants/mcpExamples.ts","timestamp":1777648302383}
6
- {"type":"edit","file":"/tmp/ruvocal-env.yaml","timestamp":1777648333969}
7
- {"type":"edit","file":"/tmp/ruvocal-env.yaml","timestamp":1777648385544}
8
- {"type":"edit","file":"/Users/cohen/Projects/ruflo/ruflo/src/ruvocal/src/lib/components/RufloHelpModal.svelte","timestamp":1777648491648}
9
- {"type":"edit","file":"/Users/cohen/Projects/ruflo/ruflo/src/ruvocal/src/lib/components/NavMenu.svelte","timestamp":1777648496824}
10
- {"type":"edit","file":"/Users/cohen/Projects/ruflo/ruflo/src/ruvocal/src/lib/components/NavMenu.svelte","timestamp":1777648507341}
11
- {"type":"edit","file":"/Users/cohen/Projects/ruflo/ruflo/src/ruvocal/src/lib/components/NavMenu.svelte","timestamp":1777648513732}
12
- {"type":"edit","file":"/Users/cohen/Projects/ruflo/ruflo/src/ruvocal/src/lib/components/NavMenu.svelte","timestamp":1777648515534}
13
- {"type":"edit","file":"/Users/cohen/Projects/ruflo/ruflo/src/ruvocal/src/lib/constants/routerExamples.ts","timestamp":1777648661926}
14
- {"type":"edit","file":"/Users/cohen/Projects/ruflo/ruflo/src/ruvocal/mcp-bridge/index.js","timestamp":1777648734846}
15
- {"type":"edit","file":"/tmp/ruvocal-env.yaml","timestamp":1777648943539}
16
- {"type":"edit","file":"/tmp/ruvocal-env.yaml","timestamp":1777649358188}
17
- {"type":"edit","file":"/tmp/ruvocal-env.yaml","timestamp":1777649495186}
18
- {"type":"edit","file":"/Users/cohen/Projects/ruflo/README.md","timestamp":1777649945240}
19
- {"type":"edit","file":"/Users/cohen/Projects/ruflo/ruflo/src/ruvocal/src/lib/wasm/wasm.worker.ts","timestamp":1777651016480}
20
- {"type":"edit","file":"/Users/cohen/Projects/ruflo/ruflo/docs/adr/ADR-033-RUVOCAL-WASM-MCP-INTEGRATION.md","timestamp":1777656145721}
21
- {"type":"edit","file":"/Users/cohen/Projects/ruflo/ruflo/docs/adr/ADR-033-RUVOCAL-WASM-MCP-INTEGRATION.md","timestamp":1777656159040}
22
- {"type":"edit","file":"/tmp/ruvocal-env.yaml","timestamp":1777670170817}
23
- {"type":"edit","file":"/Users/cohen/Projects/ruflo/v3/goal_ui/src/pages/NotFound.tsx","timestamp":1777698043248}
24
- {"type":"edit","file":"/Users/cohen/Projects/ruflo/v3/goal_ui/.optimization-plan.md","timestamp":1777698076855}
25
- {"type":"edit","file":"/Users/cohen/Projects/ruflo/v3/goal_ui/.optimization-plan.md","timestamp":1777698095555}
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": 1,
3
+ "computedAt": 1777949290620,
4
+ "entries": []
5
+ }
@@ -0,0 +1,31 @@
1
+ [2026-05-05T02:48:11.836Z] [INFO] Scheduled map (interval: 900s, first run in 0s)
2
+ [2026-05-05T02:48:11.837Z] [INFO] Scheduled audit (interval: 600s, first run in 120s)
3
+ [2026-05-05T02:48:11.837Z] [INFO] Scheduled optimize (interval: 900s, first run in 240s)
4
+ [2026-05-05T02:48:11.837Z] [INFO] Scheduled consolidate (interval: 1800s, first run in 360s)
5
+ [2026-05-05T02:48:11.837Z] [INFO] Scheduled testgaps (interval: 1200s, first run in 480s)
6
+ [2026-05-05T02:48:11.837Z] [INFO] Daemon started (PID: 78051, CPUs: 12, workers: 5, maxCpuLoad: 9.600000000000001, minFreeMemoryPercent: 5%)
7
+ [2026-05-05T02:48:11.837Z] [INFO] Claude Code headless mode available - AI workers enabled
8
+ [2026-05-05T02:48:11.838Z] [INFO] Starting worker: map (1/2 concurrent)
9
+ [2026-05-05T02:48:11.838Z] [INFO] Worker map completed in 0ms
10
+ [2026-05-05T02:50:11.821Z] [INFO] Starting worker: audit (1/2 concurrent)
11
+ [2026-05-05T02:50:11.822Z] [INFO] Running audit in headless mode (Claude Code AI)
12
+ [2026-05-05T02:50:14.769Z] [INFO] Daemon already running (PID: 78051), skipping start
13
+ [2026-05-05T02:50:14.769Z] [INFO] Claude Code headless mode available - AI workers enabled
14
+ [2026-05-05T02:50:42.274Z] [INFO] Worker audit completed in 30453ms
15
+ [2026-05-05T02:52:11.821Z] [INFO] Starting worker: optimize (1/2 concurrent)
16
+ [2026-05-05T02:52:11.822Z] [INFO] Running optimize in headless mode (Claude Code AI)
17
+ [2026-05-05T02:52:13.244Z] [INFO] Daemon already running (PID: 78051), skipping start
18
+ [2026-05-05T02:52:13.244Z] [INFO] Claude Code headless mode available - AI workers enabled
19
+ [2026-05-05T02:53:25.860Z] [INFO] Worker optimize completed in 74039ms
20
+ [2026-05-05T02:54:11.820Z] [INFO] Starting worker: consolidate (1/2 concurrent)
21
+ [2026-05-05T02:54:11.820Z] [INFO] Worker consolidate completed in 0ms
22
+ [2026-05-05T02:56:11.820Z] [INFO] Starting worker: testgaps (1/2 concurrent)
23
+ [2026-05-05T02:56:11.821Z] [INFO] Running testgaps in headless mode (Claude Code AI)
24
+ [2026-05-05T02:56:13.270Z] [INFO] Daemon already running (PID: 78051), skipping start
25
+ [2026-05-05T02:56:13.270Z] [INFO] Claude Code headless mode available - AI workers enabled
26
+ [2026-05-05T02:58:33.228Z] [INFO] Worker testgaps completed in 141408ms
27
+ [2026-05-05T03:00:42.277Z] [INFO] Starting worker: audit (1/2 concurrent)
28
+ [2026-05-05T03:00:42.278Z] [INFO] Running audit in headless mode (Claude Code AI)
29
+ [2026-05-05T03:00:44.862Z] [INFO] Daemon already running (PID: 78051), skipping start
30
+ [2026-05-05T03:00:44.862Z] [INFO] Claude Code headless mode available - AI workers enabled
31
+ [2026-05-05T03:01:38.242Z] [INFO] Worker audit completed in 55965ms