 85bf1341f3
			
		
	
	85bf1341f3
	
	
	
		
			
			Frontend Enhancements: - Complete React TypeScript frontend with modern UI components - Distributed workflows management interface with real-time updates - Socket.IO integration for live agent status monitoring - Agent management dashboard with cluster visualization - Project management interface with metrics and task tracking - Responsive design with proper error handling and loading states Backend Infrastructure: - Distributed coordinator for multi-agent workflow orchestration - Cluster management API with comprehensive agent operations - Enhanced database models for agents and projects - Project service for filesystem-based project discovery - Performance monitoring and metrics collection - Comprehensive API documentation and error handling Documentation: - Complete distributed development guide (README_DISTRIBUTED.md) - Comprehensive development report with architecture insights - System configuration templates and deployment guides The platform now provides a complete web interface for managing the distributed AI cluster with real-time monitoring, workflow orchestration, and agent coordination capabilities. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
		
			
				
	
	
		
			60 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 'use strict';
 | |
| 
 | |
| module.exports = function (data, opts) {
 | |
|     if (!opts) opts = {};
 | |
|     if (typeof opts === 'function') opts = { cmp: opts };
 | |
|     var cycles = (typeof opts.cycles === 'boolean') ? opts.cycles : false;
 | |
| 
 | |
|     var cmp = opts.cmp && (function (f) {
 | |
|         return function (node) {
 | |
|             return function (a, b) {
 | |
|                 var aobj = { key: a, value: node[a] };
 | |
|                 var bobj = { key: b, value: node[b] };
 | |
|                 return f(aobj, bobj);
 | |
|             };
 | |
|         };
 | |
|     })(opts.cmp);
 | |
| 
 | |
|     var seen = [];
 | |
|     return (function stringify (node) {
 | |
|         if (node && node.toJSON && typeof node.toJSON === 'function') {
 | |
|             node = node.toJSON();
 | |
|         }
 | |
| 
 | |
|         if (node === undefined) return;
 | |
|         if (typeof node == 'number') return isFinite(node) ? '' + node : 'null';
 | |
|         if (typeof node !== 'object') return JSON.stringify(node);
 | |
| 
 | |
|         var i, out;
 | |
|         if (Array.isArray(node)) {
 | |
|             out = '[';
 | |
|             for (i = 0; i < node.length; i++) {
 | |
|                 if (i) out += ',';
 | |
|                 out += stringify(node[i]) || 'null';
 | |
|             }
 | |
|             return out + ']';
 | |
|         }
 | |
| 
 | |
|         if (node === null) return 'null';
 | |
| 
 | |
|         if (seen.indexOf(node) !== -1) {
 | |
|             if (cycles) return JSON.stringify('__cycle__');
 | |
|             throw new TypeError('Converting circular structure to JSON');
 | |
|         }
 | |
| 
 | |
|         var seenIndex = seen.push(node) - 1;
 | |
|         var keys = Object.keys(node).sort(cmp && cmp(node));
 | |
|         out = '';
 | |
|         for (i = 0; i < keys.length; i++) {
 | |
|             var key = keys[i];
 | |
|             var value = stringify(node[key]);
 | |
| 
 | |
|             if (!value) continue;
 | |
|             if (out) out += ',';
 | |
|             out += JSON.stringify(key) + ':' + value;
 | |
|         }
 | |
|         seen.splice(seenIndex, 1);
 | |
|         return '{' + out + '}';
 | |
|     })(data);
 | |
| };
 |