 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>
		
			
				
	
	
		
			153 lines
		
	
	
		
			4.8 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			153 lines
		
	
	
		
			4.8 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /**
 | |
|  * @license React
 | |
|  *
 | |
|  * Copyright (c) Facebook, Inc. and its affiliates.
 | |
|  *
 | |
|  * This source code is licensed under the MIT license found in the
 | |
|  * LICENSE file in the root directory of this source tree.
 | |
|  */
 | |
| 
 | |
| /* eslint-disable max-len */
 | |
| 
 | |
| 'use strict';
 | |
| 
 | |
| (function(global, factory) {
 | |
|   // eslint-disable-next-line no-unused-expressions
 | |
|   typeof exports === 'object' && typeof module !== 'undefined'
 | |
|     ? (module.exports = factory(require('react')))
 | |
|     : typeof define === 'function' && define.amd // eslint-disable-line no-undef
 | |
|     ? define(['react'], factory) // eslint-disable-line no-undef
 | |
|     : (global.Scheduler = factory(global));
 | |
| })(this, function(global) {
 | |
|   function unstable_now() {
 | |
|     return global.React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.Scheduler.unstable_now.apply(
 | |
|       this,
 | |
|       arguments
 | |
|     );
 | |
|   }
 | |
| 
 | |
|   function unstable_scheduleCallback() {
 | |
|     return global.React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.Scheduler.unstable_scheduleCallback.apply(
 | |
|       this,
 | |
|       arguments
 | |
|     );
 | |
|   }
 | |
| 
 | |
|   function unstable_cancelCallback() {
 | |
|     return global.React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.Scheduler.unstable_cancelCallback.apply(
 | |
|       this,
 | |
|       arguments
 | |
|     );
 | |
|   }
 | |
| 
 | |
|   function unstable_shouldYield() {
 | |
|     return global.React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.Scheduler.unstable_shouldYield.apply(
 | |
|       this,
 | |
|       arguments
 | |
|     );
 | |
|   }
 | |
| 
 | |
|   function unstable_requestPaint() {
 | |
|     return global.React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.Scheduler.unstable_requestPaint.apply(
 | |
|       this,
 | |
|       arguments
 | |
|     );
 | |
|   }
 | |
| 
 | |
|   function unstable_runWithPriority() {
 | |
|     return global.React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.Scheduler.unstable_runWithPriority.apply(
 | |
|       this,
 | |
|       arguments
 | |
|     );
 | |
|   }
 | |
| 
 | |
|   function unstable_next() {
 | |
|     return global.React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.Scheduler.unstable_next.apply(
 | |
|       this,
 | |
|       arguments
 | |
|     );
 | |
|   }
 | |
| 
 | |
|   function unstable_wrapCallback() {
 | |
|     return global.React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.Scheduler.unstable_wrapCallback.apply(
 | |
|       this,
 | |
|       arguments
 | |
|     );
 | |
|   }
 | |
| 
 | |
|   function unstable_getCurrentPriorityLevel() {
 | |
|     return global.React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.Scheduler.unstable_getCurrentPriorityLevel.apply(
 | |
|       this,
 | |
|       arguments
 | |
|     );
 | |
|   }
 | |
| 
 | |
|   function unstable_getFirstCallbackNode() {
 | |
|     return global.React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.Scheduler.unstable_getFirstCallbackNode.apply(
 | |
|       this,
 | |
|       arguments
 | |
|     );
 | |
|   }
 | |
| 
 | |
|   function unstable_pauseExecution() {
 | |
|     return global.React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.Scheduler.unstable_pauseExecution.apply(
 | |
|       this,
 | |
|       arguments
 | |
|     );
 | |
|   }
 | |
| 
 | |
|   function unstable_continueExecution() {
 | |
|     return global.React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.Scheduler.unstable_continueExecution.apply(
 | |
|       this,
 | |
|       arguments
 | |
|     );
 | |
|   }
 | |
| 
 | |
|   function unstable_forceFrameRate() {
 | |
|     return global.React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.Scheduler.unstable_forceFrameRate.apply(
 | |
|       this,
 | |
|       arguments
 | |
|     );
 | |
|   }
 | |
| 
 | |
|   return Object.freeze({
 | |
|     unstable_now: unstable_now,
 | |
|     unstable_scheduleCallback: unstable_scheduleCallback,
 | |
|     unstable_cancelCallback: unstable_cancelCallback,
 | |
|     unstable_shouldYield: unstable_shouldYield,
 | |
|     unstable_requestPaint: unstable_requestPaint,
 | |
|     unstable_runWithPriority: unstable_runWithPriority,
 | |
|     unstable_next: unstable_next,
 | |
|     unstable_wrapCallback: unstable_wrapCallback,
 | |
|     unstable_getCurrentPriorityLevel: unstable_getCurrentPriorityLevel,
 | |
|     unstable_continueExecution: unstable_continueExecution,
 | |
|     unstable_pauseExecution: unstable_pauseExecution,
 | |
|     unstable_getFirstCallbackNode: unstable_getFirstCallbackNode,
 | |
|     unstable_forceFrameRate: unstable_forceFrameRate,
 | |
|     get unstable_IdlePriority() {
 | |
|       return global.React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED
 | |
|         .Scheduler.unstable_IdlePriority;
 | |
|     },
 | |
|     get unstable_ImmediatePriority() {
 | |
|       return global.React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED
 | |
|         .Scheduler.unstable_ImmediatePriority;
 | |
|     },
 | |
|     get unstable_LowPriority() {
 | |
|       return global.React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED
 | |
|         .Scheduler.unstable_LowPriority;
 | |
|     },
 | |
|     get unstable_NormalPriority() {
 | |
|       return global.React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED
 | |
|         .Scheduler.unstable_NormalPriority;
 | |
|     },
 | |
|     get unstable_UserBlockingPriority() {
 | |
|       return global.React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED
 | |
|         .Scheduler.unstable_UserBlockingPriority;
 | |
|     },
 | |
|     get unstable_Profiling() {
 | |
|       return global.React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED
 | |
|         .Scheduler.unstable_Profiling;
 | |
|     },
 | |
|   });
 | |
| });
 |