 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>
		
			
				
	
	
		
			155 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			155 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| "use strict";
 | |
| 
 | |
| Object.defineProperty(exports, "__esModule", {
 | |
|   value: true
 | |
| });
 | |
| exports.memoize = exports.reverse = exports.compose = exports.map = exports.range = exports.curry = exports.PLACE_HOLDER = void 0;
 | |
| 
 | |
| function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }
 | |
| 
 | |
| function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
 | |
| 
 | |
| function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
 | |
| 
 | |
| function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && Symbol.iterator in Object(iter)) return Array.from(iter); }
 | |
| 
 | |
| function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
 | |
| 
 | |
| function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
 | |
| 
 | |
| var identity = function identity(i) {
 | |
|   return i;
 | |
| };
 | |
| 
 | |
| var PLACE_HOLDER = {
 | |
|   '@@functional/placeholder': true
 | |
| };
 | |
| exports.PLACE_HOLDER = PLACE_HOLDER;
 | |
| 
 | |
| var isPlaceHolder = function isPlaceHolder(val) {
 | |
|   return val === PLACE_HOLDER;
 | |
| };
 | |
| 
 | |
| var curry0 = function curry0(fn) {
 | |
|   return function _curried() {
 | |
|     if (arguments.length === 0 || arguments.length === 1 && isPlaceHolder(arguments.length <= 0 ? undefined : arguments[0])) {
 | |
|       return _curried;
 | |
|     }
 | |
| 
 | |
|     return fn.apply(void 0, arguments);
 | |
|   };
 | |
| };
 | |
| 
 | |
| var curryN = function curryN(n, fn) {
 | |
|   if (n === 1) {
 | |
|     return fn;
 | |
|   }
 | |
| 
 | |
|   return curry0(function () {
 | |
|     for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
 | |
|       args[_key] = arguments[_key];
 | |
|     }
 | |
| 
 | |
|     var argsLength = args.filter(function (arg) {
 | |
|       return arg !== PLACE_HOLDER;
 | |
|     }).length;
 | |
| 
 | |
|     if (argsLength >= n) {
 | |
|       return fn.apply(void 0, args);
 | |
|     }
 | |
| 
 | |
|     return curryN(n - argsLength, curry0(function () {
 | |
|       for (var _len2 = arguments.length, restArgs = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {
 | |
|         restArgs[_key2] = arguments[_key2];
 | |
|       }
 | |
| 
 | |
|       var newArgs = args.map(function (arg) {
 | |
|         return isPlaceHolder(arg) ? restArgs.shift() : arg;
 | |
|       });
 | |
|       return fn.apply(void 0, _toConsumableArray(newArgs).concat(restArgs));
 | |
|     }));
 | |
|   });
 | |
| };
 | |
| 
 | |
| var curry = function curry(fn) {
 | |
|   return curryN(fn.length, fn);
 | |
| };
 | |
| 
 | |
| exports.curry = curry;
 | |
| 
 | |
| var range = function range(begin, end) {
 | |
|   var arr = [];
 | |
| 
 | |
|   for (var i = begin; i < end; ++i) {
 | |
|     arr[i - begin] = i;
 | |
|   }
 | |
| 
 | |
|   return arr;
 | |
| };
 | |
| 
 | |
| exports.range = range;
 | |
| var map = curry(function (fn, arr) {
 | |
|   if (Array.isArray(arr)) {
 | |
|     return arr.map(fn);
 | |
|   }
 | |
| 
 | |
|   return Object.keys(arr).map(function (key) {
 | |
|     return arr[key];
 | |
|   }).map(fn);
 | |
| });
 | |
| exports.map = map;
 | |
| 
 | |
| var compose = function compose() {
 | |
|   for (var _len3 = arguments.length, args = new Array(_len3), _key3 = 0; _key3 < _len3; _key3++) {
 | |
|     args[_key3] = arguments[_key3];
 | |
|   }
 | |
| 
 | |
|   if (!args.length) {
 | |
|     return identity;
 | |
|   }
 | |
| 
 | |
|   var fns = args.reverse(); // first function can receive multiply arguments
 | |
| 
 | |
|   var firstFn = fns[0];
 | |
|   var tailsFn = fns.slice(1);
 | |
|   return function () {
 | |
|     return tailsFn.reduce(function (res, fn) {
 | |
|       return fn(res);
 | |
|     }, firstFn.apply(void 0, arguments));
 | |
|   };
 | |
| };
 | |
| 
 | |
| exports.compose = compose;
 | |
| 
 | |
| var reverse = function reverse(arr) {
 | |
|   if (Array.isArray(arr)) {
 | |
|     return arr.reverse();
 | |
|   } // can be string
 | |
| 
 | |
| 
 | |
|   return arr.split('').reverse.join('');
 | |
| };
 | |
| 
 | |
| exports.reverse = reverse;
 | |
| 
 | |
| var memoize = function memoize(fn) {
 | |
|   var lastArgs = null;
 | |
|   var lastResult = null;
 | |
|   return function () {
 | |
|     for (var _len4 = arguments.length, args = new Array(_len4), _key4 = 0; _key4 < _len4; _key4++) {
 | |
|       args[_key4] = arguments[_key4];
 | |
|     }
 | |
| 
 | |
|     if (lastArgs && args.every(function (val, i) {
 | |
|       return val === lastArgs[i];
 | |
|     })) {
 | |
|       return lastResult;
 | |
|     }
 | |
| 
 | |
|     lastArgs = args;
 | |
|     lastResult = fn.apply(void 0, args);
 | |
|     return lastResult;
 | |
|   };
 | |
| };
 | |
| 
 | |
| exports.memoize = memoize; |