 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>
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 'use strict';
 | |
| 
 | |
| // do not edit .js files directly - edit src/index.jst
 | |
| 
 | |
| 
 | |
| 
 | |
| module.exports = function equal(a, b) {
 | |
|   if (a === b) return true;
 | |
| 
 | |
|   if (a && b && typeof a == 'object' && typeof b == 'object') {
 | |
|     if (a.constructor !== b.constructor) return false;
 | |
| 
 | |
|     var length, i, keys;
 | |
|     if (Array.isArray(a)) {
 | |
|       length = a.length;
 | |
|       if (length != b.length) return false;
 | |
|       for (i = length; i-- !== 0;)
 | |
|         if (!equal(a[i], b[i])) return false;
 | |
|       return true;
 | |
|     }
 | |
| 
 | |
| 
 | |
| 
 | |
|     if (a.constructor === RegExp) return a.source === b.source && a.flags === b.flags;
 | |
|     if (a.valueOf !== Object.prototype.valueOf) return a.valueOf() === b.valueOf();
 | |
|     if (a.toString !== Object.prototype.toString) return a.toString() === b.toString();
 | |
| 
 | |
|     keys = Object.keys(a);
 | |
|     length = keys.length;
 | |
|     if (length !== Object.keys(b).length) return false;
 | |
| 
 | |
|     for (i = length; i-- !== 0;)
 | |
|       if (!Object.prototype.hasOwnProperty.call(b, keys[i])) return false;
 | |
| 
 | |
|     for (i = length; i-- !== 0;) {
 | |
|       var key = keys[i];
 | |
| 
 | |
|       if (!equal(a[key], b[key])) return false;
 | |
|     }
 | |
| 
 | |
|     return true;
 | |
|   }
 | |
| 
 | |
|   // true if both NaN, false otherwise
 | |
|   return a!==a && b!==b;
 | |
| };
 |